mirror of
https://github.com/servo/servo.git
synced 2025-07-01 12:33:40 +01:00
8 lines
191 B
HTML
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>
|