OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <body> | 2 <body> |
3 <style> | 3 <style> |
4 body { | 4 body { |
5 -webkit-column-count: 2; | 5 -webkit-column-count: 2; |
6 -webkit-column-count: 0; | 6 -webkit-column-count: 0; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <script src="../../resources/js-test.js"></script> | 9 <script src="../../../resources/js-test.js"></script> |
10 <script> | 10 <script> |
11 description("Test that column-count:0 is parsed as invalid syntax and thrown awa
y."); | 11 description("Test that column-count:0 is parsed as invalid syntax and thrown awa
y."); |
12 shouldBe("getComputedStyle(document.body).webkitColumnCount", "'2'"); | 12 shouldBe("getComputedStyle(document.body).webkitColumnCount", "'2'"); |
13 if (window.testRunner) | 13 if (window.testRunner) |
14 testRunner.dumpAsText(); | 14 testRunner.dumpAsText(); |
15 </script> | 15 </script> |
OLD | NEW |