Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/replace-document-root-and-refocus-window.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
document.designMode = "on";
let win;
try {
win = top.open("data:text/html,This is new window");
} catch (e) {
}
document.designMode = "off";
document.documentElement.innerHTML = document.documentElement.innerHTML;
win?.close();
focus();
}, {once: true});
</script>
</head>
<body>
<small contenteditable></small>
</body>
</html>