OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .test { | 5 .test { |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 display: inline-block; | 8 display: inline-block; |
9 } | 9 } |
10 </style> | 10 </style> |
11 <script src="../js/resources/js-test-pre.js"></script> | 11 <script src="../../resources/js-test.js"></script> |
12 <script> | 12 <script> |
13 if (window.testRunner) | 13 if (window.testRunner) |
14 testRunner.dumpAsText(); | 14 testRunner.dumpAsText(); |
15 </script> | 15 </script> |
16 </head> | 16 </head> |
17 <body> | 17 <body> |
18 <div id="-webkit-column-rule1" class="test" style="-webkit-column-rule: 10px
solid black;"></div> | 18 <div id="-webkit-column-rule1" class="test" style="-webkit-column-rule: 10px
solid black;"></div> |
19 <div id="-webkit-column-rule2" class="test" style="-webkit-column-rule: 10px
solid;"></div> | 19 <div id="-webkit-column-rule2" class="test" style="-webkit-column-rule: 10px
solid;"></div> |
20 <div id="-webkit-column-rule3" class="test" style="-webkit-column-rule: 20px
red;"></div> | 20 <div id="-webkit-column-rule3" class="test" style="-webkit-column-rule: 20px
red;"></div> |
21 <div id="-webkit-column-rule4" class="test" style="-webkit-column-rule: 10px
;"></div> | 21 <div id="-webkit-column-rule4" class="test" style="-webkit-column-rule: 10px
;"></div> |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null"); | 64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null"); |
65 | 65 |
66 var div11 = document.getElementById("-webkit-column-rule11"); | 66 var div11 = document.getElementById("-webkit-column-rule11"); |
67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null"); | 67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null"); |
68 | 68 |
69 var div12 = document.getElementById("-webkit-column-rule12"); | 69 var div12 = document.getElementById("-webkit-column-rule12"); |
70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null"); | 70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null"); |
71 </script> | 71 </script> |
72 </body> | 72 </body> |
73 </html> | 73 </html> |
OLD | NEW |