| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <body></body> | 2 <body></body> |
| 3 <script> | 3 <script> |
| 4 if (window.layoutTestController) { | 4 if (window.layoutTestController) { |
| 5 layoutTestController.waitUntilDone(); | 5 layoutTestController.waitUntilDone(); |
| 6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
| 7 } | 7 } |
| 8 | 8 |
| 9 function crash() { | 9 function crash() { |
| 10 document.designMode = "on"; | 10 document.designMode = "on"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 }, true); | 22 }, true); |
| 23 try { | 23 try { |
| 24 range.insertNode(document.createTextNode("")); | 24 range.insertNode(document.createTextNode("")); |
| 25 } catch(e) { } | 25 } catch(e) { } |
| 26 } | 26 } |
| 27 | 27 |
| 28 window.onload = crash; | 28 window.onload = crash; |
| 29 </script> | 29 </script> |
| 30 </html> | 30 </html> |
| OLD | NEW |