OLD | NEW |
1 <html> | 1 <html> |
2 <style> | 2 <style> |
3 div { -webkit-column-count:2; } | 3 div { -webkit-column-count:2; } |
4 h1 { -webkit-column-span: all; } | 4 h1 { -webkit-column-span: all; } |
5 </style> | 5 </style> |
6 <body> | 6 <body> |
7 <summary> | 7 <summary> |
8 <div id="div1"> | 8 <div id="div1"> |
9 BeforeText<span id="span1">SpanText</span>AfterText | 9 BeforeText<span id="span1">SpanText</span>AfterText |
10 <p>ParaText</p> | 10 <p>ParaText</p> |
11 </div> | 11 </div> |
12 <script> | 12 <script> |
13 if (window.layoutTestController) | 13 if (window.layoutTestController) |
14 layoutTestController.dumpAsText(); | 14 layoutTestController.dumpAsText(); |
15 | 15 |
16 document.body.offsetTop; | 16 document.body.offsetTop; |
17 var h1 = document.createElement('h1'); | 17 var h1 = document.createElement('h1'); |
18 h1.appendChild(document.createTextNode('heading')); | 18 h1.appendChild(document.createTextNode('heading')); |
19 div1.insertBefore(h1, span1); | 19 div1.insertBefore(h1, span1); |
20 </script> | 20 </script> |
21 </summary> | 21 </summary> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
OLD | NEW |