1
0
Fork 0
firefox/docshell/test/navigation/frame_recursive_dynamic.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

8 lines
316 B
HTML

<script>
addEventListener("load", () => {
let e = document.createElement("iframe");
e.id = "dynamic";
document.body.appendChild(e); // append before setting source, forcing load of about:blank
e.src = window.location.href; // set src to ourselves to start recursing
}, { once: true });
</script>