trisquel-icecat/icecat/docshell/test/navigation/frame_recursive_dynamic.html
2025-10-06 02:35:48 -06: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>