Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-input-element/input-importNode-to-detached-document-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<p>This test passes if it does not crash.</p>
<input id="input" type="image" src="data:image/gif;base64,">
<iframe id="iframe"></iframe>
<script>
let i_doc = iframe.contentDocument;
iframe.remove();
i_doc.importNode(input);
</script>
</body>