mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02:00
12 lines
304 B
HTML
12 lines
304 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<script>
|
|
const iframe = document.createElement("iframe");
|
|
document.body.appendChild(iframe);
|
|
iframe.contentDocument.open();
|
|
iframe.contentDocument.write("<!DOCTYPE html><p>hello</p>");
|
|
iframe.contentDocument.close();
|
|
iframe.contentWindow.navigation.currentEntry;
|
|
</script>
|
|
</body>
|