OLD | NEW |
1 This test makes sure that CSSStyleDeclaration enumerates JavaScript properties f
or defined and non-defined CSS properties, indexed properties, and properties de
fined on the prototype. See Bug 23946. | 1 This test makes sure that CSSStyleDeclaration enumerates JavaScript properties f
or defined and non-defined CSS properties, indexed properties, and properties de
fined on the prototype. See Bug 23946. |
2 PASS document.body.style.length is 4 | 2 PASS document.body.style.length is 2 |
3 PASS '0' in document.body.style is true | 3 PASS '0' in document.body.style is true |
4 PASS '1' in document.body.style is true | 4 PASS '1' in document.body.style is true |
5 PASS 'textDecoration' in document.body.style is true | 5 PASS 'textDecoration' in document.body.style is true |
6 PASS 'textDecorationLine' in document.body.style is true | |
7 PASS 'textDecorationStyle' in document.body.style is true | |
8 PASS 'textDecorationColor' in document.body.style is true | |
9 PASS 'borderTopColor' in document.body.style is true | 6 PASS 'borderTopColor' in document.body.style is true |
10 PASS 'border' in document.body.style is true | 7 PASS 'border' in document.body.style is true |
11 PASS 'font' in document.body.style is true | 8 PASS 'font' in document.body.style is true |
12 PASS 'webkitTransform' in document.body.style is true | 9 PASS 'webkitTransform' in document.body.style is true |
13 PASS 'WebkitTransform' in document.body.style is true | 10 PASS 'WebkitTransform' in document.body.style is true |
14 PASS 'bogus-random-String' in document.body.style is false | 11 PASS 'bogus-random-String' in document.body.style is false |
15 PASS 'cssText' in document.body.style is true | 12 PASS 'cssText' in document.body.style is true |
16 PASS 'getPropertyCSSValue' in document.body.style is true | 13 PASS 'getPropertyCSSValue' in document.body.style is true |
17 PASS The CSS property order is correct | 14 PASS The CSS property order is correct |
18 PASS successfullyParsed is true | 15 PASS successfullyParsed is true |
19 | 16 |
20 TEST COMPLETE | 17 TEST COMPLETE |
21 | 18 |
OLD | NEW |