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