editor/libeditor/base/crashtests/766360.html

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:a7e1132d9660
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5
6 function boom()
7 {
8 var r = document.createRange();
9 r.setEnd(document.createTextNode("x"), 0);
10 window.getSelection().addRange(r);
11 document.execCommand("inserthtml", false, "y");
12 }
13
14 </script>
15 </head>
16
17 <body contenteditable="true" onload="boom();"></body>
18 </html>

mercurial