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