Bug 1686495 [wpt PR 27132] - Add tests for proposed WebDriver Shadow DOM support...
[gecko.git] / editor / libeditor / crashtests / 407256-1.html
blob36c146f4c5d2d321250a0cc779d7c3a2d376f263
1 <html>
2 <head>
3 <script type="text/javascript">
5 function boom()
7 document.addEventListener("DOMNodeInserted", x);
9 function x()
11 document.removeEventListener("DOMNodeInserted", x);
12 document.execCommand("insertParagraph", false, "");
15 document.execCommand("insertorderedlist", false, "");
18 </script>
19 </head>
21 <body contenteditable="true" onload="boom()"></body>
23 </html>