aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/parent.html
blob: 6516089766a28c195f4ba79145db236f753f9ce0 (plain) (blame)
1
2
3
4
5
6
7
8
<body>
<script>
var iframe = document.createElement('iframe');
iframe.src = "child.html";
iframe.onload = function() { iframe.remove(); }
document.body.appendChild(iframe);
</script>
</body>