summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/400349-1.html
blob: 48846c8c9b4012c7fbaa7c1d531eba2409926547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>

<script>

function init() {
  window.removeEventListener("load", init);

  var fr = document.getElementsByTagName("iframe")[0];
  var b = fr.contentDocument.body;

  fr.remove();
  b.parentNode;
}

window.addEventListener("load", init);

</script>

</head><body><iframe></iframe></body></html>