| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #multicolumn | 5 #multicolumn |
| 6 { | 6 { |
| 7 display: block; | 7 display: block; |
| 8 -moz-column-width: 0; | 8 -moz-column-width: 0; |
| 9 -o-column-width: 0; | 9 -o-column-width: 0; |
| 10 -webkit-column-width: 0; | 10 -webkit-column-width: 0; |
| 11 column-width: 0; | 11 column-width: 0; |
| 12 } | 12 } |
| 13 </style> | 13 </style> |
| 14 <script src="../../resources/js-test.js"></script> | 14 <script src="../../../resources/js-test.js"></script> |
| 15 <script> | 15 <script> |
| 16 if (window.testRunner) | 16 if (window.testRunner) |
| 17 testRunner.dumpAsText(); | 17 testRunner.dumpAsText(); |
| 18 </script> | 18 </script> |
| 19 </head> | 19 </head> |
| 20 <body> | 20 <body> |
| 21 <div id="multicolumn"></div> | 21 <div id="multicolumn"></div> |
| 22 </body> | 22 </body> |
| 23 <script> | 23 <script> |
| 24 description("Test for column-width property with zero value"); | 24 description("Test for column-width property with zero value"); |
| 25 var divElement = document.getElementById("multicolumn"); | 25 var divElement = document.getElementById("multicolumn"); |
| 26 shouldBe('getComputedStyle(divElement).webkitColumnWidth', '"auto"'); | 26 shouldBe('getComputedStyle(divElement).webkitColumnWidth', '"auto"'); |
| 27 </script> | 27 </script> |
| 28 </html> | 28 </html> |
| OLD | NEW |