Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<title>window.reportError() 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.reportError("an error");
</script>