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