Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<title>window.structuredClone() doesn't crash when window is detached</title>
<body>
<script>
let i = document.createElement("iframe");
document.body.appendChild(i);
let i_win = i.contentWindow;
i.remove();
i_win.structuredClone("some data");
</script>