OLD | NEW |
1 PASS element.width = 0px, returns offsetWidth, rect.width and computed width as
expected. | 1 PASS element.width = 0px, returns offsetWidth, rect.width and computed width as
expected. |
2 PASS element.width = 1px, returns offsetWidth, rect.width and computed width as
expected. | 2 PASS element.width = 1px, returns offsetWidth, rect.width and computed width as
expected. |
3 PASS element.width = 10px, returns offsetWidth, rect.width and computed width as
expected. | 3 PASS element.width = 10px, returns offsetWidth, rect.width and computed width as
expected. |
4 PASS element.width = 100px, returns offsetWidth, rect.width and computed width a
s expected. | 4 PASS element.width = 100px, returns offsetWidth, rect.width and computed width a
s expected. |
5 PASS element.width = 10000px, returns offsetWidth, rect.width and computed width
as expected. | 5 PASS element.width = 10000px, returns offsetWidth, rect.width and computed width
as expected. |
6 PASS element.width = 100000px, returns offsetWidth, rect.width and computed widt
h as expected. | 6 PASS element.width = 100000px, returns offsetWidth, rect.width and computed widt
h as expected. |
7 PASS element.width = 1000000px, returns offsetWidth, rect.width and computed wid
th as expected. | 7 PASS element.width = 1000000px, returns offsetWidth, rect.width and computed wid
th as expected. |
8 PASS element.width = 10000000px, returns offsetWidth, rect.width and computed wi
dth as expected. | 8 PASS element.width = 10000000px, returns offsetWidth, rect.width and computed wi
dth as expected. |
9 PASS element.width = 100000000px, returns offsetWidth, rect.width and computed w
idth as expected. | 9 PASS element.width = 100000000px, returns offsetWidth, rect.width and computed w
idth as expected. |
10 PASS element.width = 1000000000px, returns offsetWidth, rect.width and computed
width as expected. | 10 PASS element.width = 1000000000px, returns offsetWidth, rect.width and computed
width as expected. |
(...skipping 30 matching lines...) Expand all Loading... |
41 PASS element.left = -100px, returns offsetLeft, rect.left and computed left as e
xpected. | 41 PASS element.left = -100px, returns offsetLeft, rect.left and computed left as e
xpected. |
42 PASS element.left = -10000px, returns offsetLeft, rect.left and computed left as
expected. | 42 PASS element.left = -10000px, returns offsetLeft, rect.left and computed left as
expected. |
43 PASS element.left = -100000px, returns offsetLeft, rect.left and computed left a
s expected. | 43 PASS element.left = -100000px, returns offsetLeft, rect.left and computed left a
s expected. |
44 PASS element.left = -1000000px, returns offsetLeft, rect.left and computed left
as expected. | 44 PASS element.left = -1000000px, returns offsetLeft, rect.left and computed left
as expected. |
45 PASS element.left = -10000000px, returns offsetLeft, rect.left and computed left
as expected. | 45 PASS element.left = -10000000px, returns offsetLeft, rect.left and computed left
as expected. |
46 PASS element.left = -100000000px, returns offsetLeft, rect.left and computed lef
t as expected. | 46 PASS element.left = -100000000px, returns offsetLeft, rect.left and computed lef
t as expected. |
47 PASS element.left = -1000000000px, returns offsetLeft, rect.left and computed le
ft as expected. | 47 PASS element.left = -1000000000px, returns offsetLeft, rect.left and computed le
ft as expected. |
48 PASS element.left = -10000000000px, returns offsetLeft, rect.left and computed l
eft as expected. | 48 PASS element.left = -10000000000px, returns offsetLeft, rect.left and computed l
eft as expected. |
49 PASS element.left = -100000000000px, returns offsetLeft, rect.left and computed
left as expected. | 49 PASS element.left = -100000000000px, returns offsetLeft, rect.left and computed
left as expected. |
50 PASS element.left = -1000000000000px, returns offsetLeft, rect.left and computed
left as expected. | 50 PASS element.left = -1000000000000px, returns offsetLeft, rect.left and computed
left as expected. |
| 51 PASS successfullyParsed is true |
| 52 |
| 53 TEST COMPLETE |
51 Test handling of numbers outside of the supported range. | 54 Test handling of numbers outside of the supported range. |
52 | 55 |
53 Properties may restrict numeric values to some range. If the value is outside th
e allowed range, the declaration is invalid and must be ignored. As per the CSS3
specification. | 56 Properties may restrict numeric values to some range. If the value is outside th
e allowed range, the declaration is invalid and must be ignored. As per the CSS3
specification. |
OLD | NEW |