summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/682463.html
blob: 735979e9fbbc776e451d0d35ce41a38941a631f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var j = document.createTextNode("j");
  var r = document.createRange();
  r.setEnd(j, 1);
  j.splitText(0);
  r.setEnd(j, 0);
}

</script>
</head>

<body onload="boom();"></body>

</html>