Backed out 2 changesets (bug 1943998) for causing wd failures @ phases.py CLOSED...
[gecko.git] / editor / libeditor / crashtests / 776323.html
blob9fc2776c3710c5abf9957353528d351868fd7a1b
1 <!DOCTYPE html>
2 <html contenteditable="true">
3 <head>
4 <script>
6 function boom()
8 document.execCommand("inserthtml", false, "b");
9 var myrange = document.createRange();
10 myrange.selectNodeContents(document.getElementsByTagName("img")[0]);
11 window.getSelection().addRange(myrange);
12 document.execCommand("strikethrough", false, null);
15 </script>
16 </head>
17 <body onload="boom();"><img></body>
18 </html>