summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/713417-2.html
blob: 840b5d71acdb5875d9d7ae7b9f8643c544834eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var f = document.getElementById("f");
  var w = f.contentWindow;
  var d = w.document;
  var range = d.createRange();
  w.getSelection().removeAllRanges();
  w.getSelection().addRange(range);
  var r = d.documentElement;
  d.removeChild(r);
  w.getSelection().collapse(r,0);
  document.adoptNode(r);
  f.parentNode.removeChild(f);
}

</script>
</head>
<body onload="boom();">
<iframe src="data:text/html,1" id="f"></iframe>
</body>
</html>