servo/tests/html/parent.html
2018-02-22 21:34:53 +05:30

8 lines
191 B
HTML

<body>
<script>
var iframe = document.createElement('iframe');
iframe.src = "child.html";
iframe.onload = function() { iframe.remove(); }
document.body.appendChild(iframe);
</script>
</body>