OLD | NEW |
1 <head> | 1 <head> |
2 <script src="../js/resources/js-test-pre.js"></script> | 2 <script src="../js/resources/js-test-pre.js"></script> |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 | 7 |
8 </script> | 8 </script> |
9 </head> | 9 </head> |
10 <body style="text-decoration: underline; border-top-color: green"> | 10 <body style="text-decoration: underline; border-top-color: green"> |
11 <div id="description">This test makes sure that CSSStyleDeclaration enumerat
es JavaScript properties for defined and non-defined CSS properties, indexed pro
perties, and properties defined on the prototype. See <a href="https://bugs.webk
it.org/show_bug.cgi?id=23946">Bug 23946</a>.</div> | 11 <div id="description">This test makes sure that CSSStyleDeclaration enumerat
es JavaScript properties for defined and non-defined CSS properties, indexed pro
perties, and properties defined on the prototype. See <a href="https://bugs.webk
it.org/show_bug.cgi?id=23946">Bug 23946</a>.</div> |
12 <div id="console"></div> | 12 <div id="console"></div> |
13 <script> | 13 <script> |
14 shouldBe("document.body.style.length", "4"); | 14 shouldBe("document.body.style.length", "2"); |
15 shouldBeTrue("'0' in document.body.style"); | 15 shouldBeTrue("'0' in document.body.style"); |
16 shouldBeTrue("'1' in document.body.style"); | 16 shouldBeTrue("'1' in document.body.style"); |
17 shouldBeTrue("'textDecoration' in document.body.style"); | 17 shouldBeTrue("'textDecoration' in document.body.style"); |
18 shouldBeTrue("'textDecorationLine' in document.body.style"); | |
19 shouldBeTrue("'textDecorationStyle' in document.body.style"); | |
20 shouldBeTrue("'textDecorationColor' in document.body.style"); | |
21 shouldBeTrue("'borderTopColor' in document.body.style"); | 18 shouldBeTrue("'borderTopColor' in document.body.style"); |
22 shouldBeTrue("'border' in document.body.style"); | 19 shouldBeTrue("'border' in document.body.style"); |
23 shouldBeTrue("'font' in document.body.style"); | 20 shouldBeTrue("'font' in document.body.style"); |
24 shouldBeTrue("'webkitTransform' in document.body.style"); | 21 shouldBeTrue("'webkitTransform' in document.body.style"); |
25 shouldBeTrue("'WebkitTransform' in document.body.style"); | 22 shouldBeTrue("'WebkitTransform' in document.body.style"); |
26 shouldBeFalse("'bogus-random-String' in document.body.style"); | 23 shouldBeFalse("'bogus-random-String' in document.body.style"); |
27 shouldBeTrue("'cssText' in document.body.style"); | 24 shouldBeTrue("'cssText' in document.body.style"); |
28 shouldBeTrue("'getPropertyCSSValue' in document.body.style"); | 25 shouldBeTrue("'getPropertyCSSValue' in document.body.style"); |
29 | 26 |
30 // Test CSS property order. | 27 // Test CSS property order. |
(...skipping 18 matching lines...) Expand all Loading... |
49 if (seenFilter) | 46 if (seenFilter) |
50 testPassed("The CSS property order is correct"); | 47 testPassed("The CSS property order is correct"); |
51 else | 48 else |
52 testFailed("The 'filter' property was not enumerated"); | 49 testFailed("The 'filter' property was not enumerated"); |
53 break; | 50 break; |
54 } | 51 } |
55 } | 52 } |
56 </script> | 53 </script> |
57 <script src="../js/resources/js-test-post.js"></script> | 54 <script src="../js/resources/js-test-post.js"></script> |
58 </body> | 55 </body> |
OLD | NEW |