| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body style='-webkit-columns: 1'> | 3 <body style='-webkit-columns: 1'> |
| 4 A | 4 A |
| 5 <style> | 5 <style> |
| 6 .class1 { -webkit-column-span: all; } | 6 .class1 { -webkit-column-span: all; } |
| 7 </style><script> | 7 </style><script> |
| 8 if (window.testRunner) | 8 if (window.testRunner) |
| 9 testRunner.dumpAsText(); | 9 testRunner.dumpAsText(); |
| 10 function crash() { | 10 function crash() { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 document.execCommand("InsertHTML", false, "There should be an empty line between
these two paragraphs.<span><div></div></span><div>This paragraph and the empty
line should have be in their own divs with a red border.") | 23 document.execCommand("InsertHTML", false, "There should be an empty line between
these two paragraphs.<span><div></div></span><div>This paragraph and the empty
line should have be in their own divs with a red border.") |
| 24 document.execCommand("SelectAll", false) | 24 document.execCommand("SelectAll", false) |
| 25 document.execCommand("InsertHTML", false, "There should be an empty line between
these two paragraphs.<span><div></div></span><div>This paragraph and the empty
line should have be in their own divs with a red border.") | 25 document.execCommand("InsertHTML", false, "There should be an empty line between
these two paragraphs.<span><div></div></span><div>This paragraph and the empty
line should have be in their own divs with a red border.") |
| 26 document.body.offsetTop; | 26 document.body.offsetTop; |
| 27 document.body.innerHTML = "PASS. WebKit didn't crash."; | 27 document.body.innerHTML = "PASS. WebKit didn't crash."; |
| 28 } | 28 } |
| 29 document.addEventListener("DOMContentLoaded", crash, false); | 29 document.addEventListener("DOMContentLoaded", crash, false); |
| 30 </script> | 30 </script> |
| 31 </body> | 31 </body> |
| 32 </html> | 32 </html> |
| OLD | NEW |