OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>'columns' property with 'auto' and something else</title> | 4 <title>'columns' property with 'auto' and something else</title> |
5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
6 <script> | 6 <script> |
7 description("Test the behavior when 'auto' is part of the 'columns' proper
ty value. See http://www.w3.org/TR/css3-multicol/#columns"); | 7 description("Test the behavior when 'auto' is part of the 'columns' proper
ty value. See http://www.w3.org/TR/css3-multicol/#columns"); |
8 if (window.testRunner) | 8 if (window.testRunner) |
9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 shouldBeEqualToString("element.style.WebkitColumns", test[3]); | 31 shouldBeEqualToString("element.style.WebkitColumns", test[3]); |
32 }); | 32 }); |
33 } | 33 } |
34 </script> | 34 </script> |
35 </head> | 35 </head> |
36 <body> | 36 <body> |
37 <div id="element"></div> | 37 <div id="element"></div> |
38 <script> | 38 <script> |
39 runTests(); | 39 runTests(); |
40 </script> | 40 </script> |
41 <script src="../js/resources/js-test-post.js"></script> | |
42 </body> | 41 </body> |
43 </html> | 42 </html> |
OLD | NEW |