Fix css parser integer test
Use margin-top instead of a made-up property.
This commit is contained in:
@ -1,42 +1,42 @@
|
||||
a {
|
||||
int-property: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
b {
|
||||
int-property: 1;
|
||||
margin-top: 1;
|
||||
}
|
||||
c {
|
||||
int-property: -1;
|
||||
margin-top: -1;
|
||||
}
|
||||
d {
|
||||
int-property: 2147483647;
|
||||
margin-top: 2147483647;
|
||||
}
|
||||
e {
|
||||
int-property: -2147483648;
|
||||
margin-top: -2147483648;
|
||||
}
|
||||
f {
|
||||
int-property: 1.0;
|
||||
margin-top: 1.0;
|
||||
}
|
||||
g {
|
||||
int-property: 3px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
h {
|
||||
int-property: 0xFF;
|
||||
margin-top: 0xFF;
|
||||
}
|
||||
i {
|
||||
int-property: 0377;
|
||||
margin-top: 0377;
|
||||
}
|
||||
j {
|
||||
int-property: nonumber;
|
||||
margin-top: nonumber;
|
||||
}
|
||||
k {
|
||||
int-property: "42";
|
||||
margin-top: "42";
|
||||
}
|
||||
l {
|
||||
int-property: +3;
|
||||
margin-top: +3;
|
||||
}
|
||||
m {
|
||||
int-property: --5;
|
||||
margin-top: --5;
|
||||
}
|
||||
n {
|
||||
int-property: - 10;
|
||||
margin-top: - 10;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user