input-importNode-to-detached-document-crash.html (265B)
1 <!DOCTYPE html> 2 <body> 3 <p>This test passes if it does not crash.</p> 4 <input id="input" type="image" src="data:image/gif;base64,"> 5 <iframe id="iframe"></iframe> 6 <script> 7 let i_doc = iframe.contentDocument; 8 iframe.remove(); 9 i_doc.importNode(input); 10 </script> 11 </body>