Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-iframe-element/iframe-document-move-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
This test passes if it does not crash.
<script>
var doc1 = document.documentElement;
let iframe1 = document.createElement("iframe");
doc1.appendChild(iframe1);
separateDoc = document.implementation.createDocument("", null);
iframe1.addEventListener("DOMFocusOut", function () { separateDoc.adoptNode(iframe1); });
iframe1.focus();
iframe1 = document.createElement("iframe");
doc1.appendChild(iframe1);
iframe1.focus();
</script>