| 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="../../resources/js-test.js"></script> |   5     <script src="../../../resources/js-test.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  | 
|  11       function runTests() { |  11       function runTests() { | 
|  12           var tests = [["-webkit-columns:auto 3;", "auto", "3", "auto 3"], |  12           var tests = [["-webkit-columns:auto 3;", "auto", "3", "auto 3"], | 
|  13                        ["-webkit-columns:auto 10em;", "10em", "auto", "10em auto
    "], |  13                        ["-webkit-columns:auto 10em;", "10em", "auto", "10em auto
    "], | 
|  14                        ["-webkit-columns:3 auto;", "auto", "3", "auto 3"], |  14                        ["-webkit-columns:3 auto;", "auto", "3", "auto 3"], | 
|  15                        ["-webkit-columns:10em auto;", "10em", "auto", "10em auto
    "], |  15                        ["-webkit-columns:10em auto;", "10em", "auto", "10em auto
    "], | 
| (...skipping 17 matching lines...) Expand all  Loading... | 
|  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   </body> |  41   </body> | 
|  42 </html> |  42 </html> | 
| OLD | NEW |