| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 body { -webkit-column-width: 0; } | 2 body { -webkit-column-width: 0; } |
| 3 #container { position: relative; } | 3 #container { position: relative; } |
| 4 .hardware:last-of-type { -webkit-column-span: all; } | 4 .hardware:last-of-type { -webkit-column-span: all; } |
| 5 </style> | 5 </style> |
| 6 | 6 |
| 7 <body> | 7 <body> |
| 8 <script> | 8 <script> |
| 9 if (window.internals) |
| 10 internals.settings.setRegionBasedColumnsEnabled(true); |
| 9 function clear() { | 11 function clear() { |
| 10 document.documentElement.removeChild(document.body); | 12 document.documentElement.removeChild(document.body); |
| 11 document.documentElement.innerHTML='PASS, if no exception or crash'; | 13 document.documentElement.innerHTML='PASS, if no exception or crash'; |
| 12 if (window.testRunner) { | 14 if (window.testRunner) { |
| 13 testRunner.notifyDone(); | 15 testRunner.notifyDone(); |
| 14 } | 16 } |
| 15 } | 17 } |
| 16 setTimeout("clear();", 0); | 18 setTimeout("clear();", 0); |
| 17 if (window.testRunner) { | 19 if (window.testRunner) { |
| 18 testRunner.waitUntilDone(); | 20 testRunner.waitUntilDone(); |
| 19 testRunner.dumpAsText(); | 21 testRunner.dumpAsText(); |
| 20 } | 22 } |
| 21 </script> | 23 </script> |
| 22 <div id="container"> | 24 <div id="container"> |
| 23 <div class="hardware box"> | 25 <div class="hardware box"> |
| 24 </body> | 26 </body> |
| OLD | NEW |