summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/713417-2.html
blob: 8bf33b6b119c88f636de326d721b41607941763a (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.remove();
}

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