editor/libeditor/base/crashtests/407256-1.html

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:8b755995e413
1 <html>
2 <head>
3 <script type="text/javascript">
4
5 function boom()
6 {
7 document.addEventListener("DOMNodeInserted", x, false);
8
9 function x()
10 {
11 document.removeEventListener("DOMNodeInserted", x, false);
12 document.execCommand("insertParagraph", false, "");
13 }
14
15 document.execCommand("insertorderedlist", false, "");
16 }
17
18 </script>
19 </head>
20
21 <body contenteditable="true" onload="boom()"></body>
22
23 </html>

mercurial