| OLD | NEW | 
|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <html> | 2 <html> | 
| 3 <body> | 3 <body> | 
| 4 <style> | 4 <style> | 
| 5 #el0 { -webkit-columns: 1; } | 5 #el0 { -webkit-columns: 1; } | 
| 6 #el2:first-of-type { } | 6 #el2:first-of-type { } | 
| 7 #el2:first-letter { content: counter(c); } | 7 #el2:first-letter { content: counter(c); } | 
| 8 #el3 { -webkit-column-span: all; content: counter(c) attr(A); } | 8 #el3 { -webkit-column-span: all; content: counter(c) attr(A); } | 
| 9 </style> | 9 </style> | 
| 10 <script> | 10 <script> | 
| (...skipping 18 matching lines...) Expand all  Loading... | 
| 29 el2.appendChild(document.createTextNode('AA')); | 29 el2.appendChild(document.createTextNode('AA')); | 
| 30 document.designMode = 'on'; | 30 document.designMode = 'on'; | 
| 31 document.execCommand('selectall'); | 31 document.execCommand('selectall'); | 
| 32 document.execCommand('removeFormat'); | 32 document.execCommand('removeFormat'); | 
| 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 | 
|---|