summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/400349-1.html
blob: 33fc58ccfd8f6dd06377f858e86dd1265d50b54b (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, false);

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

  fr.parentNode.removeChild(fr);
  b.parentNode;
}

window.addEventListener("load", init, false);

</script>

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