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 function clear() { | 9 function clear() { |
10 document.documentElement.removeChild(document.body); | 10 document.documentElement.removeChild(document.body); |
11 document.documentElement.innerHTML='PASS, if no exception or crash'; | 11 document.documentElement.innerHTML='PASS, if no exception or crash'; |
12 if (window.testRunner) { | 12 if (window.testRunner) { |
13 testRunner.notifyDone(); | 13 testRunner.notifyDone(); |
14 } | 14 } |
15 } | 15 } |
16 setTimeout("clear();", 0); | 16 setTimeout("clear();", 0); |
17 if (window.testRunner) { | 17 if (window.testRunner) { |
18 testRunner.waitUntilDone(); | 18 testRunner.waitUntilDone(); |
19 testRunner.dumpAsText(); | 19 testRunner.dumpAsText(); |
20 } | 20 } |
21 </script> | 21 </script> |
22 <div id="container"> | 22 <div id="container"> |
23 <div class="hardware box"> | 23 <div class="hardware box"> |
24 </body> | 24 </body> |
OLD | NEW |