mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
9 lines
191 B
HTML
9 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>
|