Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / editor / libeditor / crashtests / 513375-1.xhtml
blob4db5a42159fcd407b0bddc2865b705566f07f0b9
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head contenteditable="true">
3 <script type="text/javascript">
4 <![CDATA[
5 function onLoad() {
6 getSelection().collapse(document.body, document.body.childNodes.length);
7 const r = document.createRange();
8 r.selectNode(document.body);
9 r.deleteContents();
10 try {
11 document.execCommand("selectAll");
12 } catch(e) {}
14 ]]>
15 </script>
16 </head>
18 <body onload="onLoad();" contenteditable="true"></body>
19 </html>