Bug 1686495 [wpt PR 27132] - Add tests for proposed WebDriver Shadow DOM support...
[gecko.git] / editor / libeditor / crashtests / 766360.html
blob76c30456d69af33a487f84ff43176826fa42ee55
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var r = document.createRange();
9 r.setEnd(document.createTextNode("x"), 0);
10 window.getSelection().addRange(r);
11 document.execCommand("inserthtml", false, "y");
14 </script>
15 </head>
17 <body contenteditable="true" onload="boom();"></body>
18 </html>