Bug 1686495 [wpt PR 27132] - Add tests for proposed WebDriver Shadow DOM support...
[gecko.git] / editor / libeditor / crashtests / 771749.html
blob9237364f2d2edd6a5a040dea9df53e55a2b32ad7
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var root = document.documentElement;
9 root.contentEditable = "true";
10 document.removeChild(root);
11 document.appendChild(root);
12 document.execCommand("insertunorderedlist", false, null);
13 document.execCommand("inserthtml", false, "<span></span>");
14 document.execCommand("outdent", false, null);
17 </script>
18 </head>
20 <body onload="boom();"></body>
21 </html>