OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
| 3 <script> |
| 4 if (window.internals) |
| 5 internals.settings.setRegionBasedColumnsEnabled(true); |
| 6 </script> |
3 <body> | 7 <body> |
4 <style> | 8 <style> |
5 #columnContainer { -webkit-column-count: 600; } | 9 #columnContainer { -webkit-column-count: 600; } |
6 #divBlock::after { display: block; content: ''; } | 10 #divBlock::after { display: block; content: ''; } |
7 #columnSpanBlock:nth-last-child(even) { -webkit-column-span: all; } | 11 #columnSpanBlock:nth-last-child(even) { -webkit-column-span: all; } |
8 #table { float: right; } | 12 #table { float: right; } |
9 </style> | 13 </style> |
10 <script> | 14 <script> |
11 if (window.testRunner) | 15 if (window.testRunner) |
12 testRunner.dumpAsText(); | 16 testRunner.dumpAsText(); |
(...skipping 16 matching lines...) Expand all Loading... |
29 divBlock.appendChild(table); | 33 divBlock.appendChild(table); |
30 document.designMode = 'on'; | 34 document.designMode = 'on'; |
31 document.execCommand('selectall'); | 35 document.execCommand('selectall'); |
32 document.execCommand('inserttext', ''); | 36 document.execCommand('inserttext', ''); |
33 document.body.offsetTop; | 37 document.body.offsetTop; |
34 document.body.innerHTML = "PASS. WebKit didn't crash."; | 38 document.body.innerHTML = "PASS. WebKit didn't crash."; |
35 } | 39 } |
36 </script> | 40 </script> |
37 </body> | 41 </body> |
38 </html> | 42 </html> |
OLD | NEW |