Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / editor / composer / crashtests / 461049-1.html
blobfea188e646409a610b1d023d5c8afd46c63ce6b3
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
6 function uu()
8 document.removeEventListener("DOMSubtreeModified", uu);
9 document.execCommand("undo", false, null);
12 function boom()
14 document.execCommand("selectAll", false, null);
15 document.execCommand("strikethrough", false, null);
16 document.addEventListener("DOMSubtreeModified", uu);
17 document.execCommand("undo", false, null);
20 </script>
21 </head>
23 <body contenteditable="true" onload="boom();"><div></div></body>
25 </html>