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.testRunner) { | 4 if (window.testRunner) { |
5 testRunner.waitUntilDone(); | 5 testRunner.waitUntilDone(); |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 } | 7 } |
8 | 8 |
9 function crash() { | 9 function crash() { |
10 document.designMode = "on"; | 10 document.designMode = "on"; |
(...skipping 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 }, true); | 23 }, true); |
24 try { | 24 try { |
25 range.insertNode(document.createTextNode("")); | 25 range.insertNode(document.createTextNode("")); |
26 } catch(e) { } | 26 } catch(e) { } |
27 } | 27 } |
28 | 28 |
29 window.onload = crash; | 29 window.onload = crash; |
30 </script> | 30 </script> |
31 </html> | 31 </html> |
OLD | NEW |