content/base/crashtests/682463.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:4f488cb49ad7
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5
6 function boom()
7 {
8 var j = document.createTextNode("j");
9 var r = document.createRange();
10 r.setEnd(j, 1);
11 j.splitText(0);
12 r.setEnd(j, 0);
13 }
14
15 </script>
16 </head>
17
18 <body onload="boom();"></body>
19
20 </html>

mercurial