srcdoc-removed-iframe-crash.html (448B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <title>iframe with srcdoc content that loads after iframe is removed from the document</title> 5 <link rel="author" title="Martin Robinson" href="mrobinson@igalia.com"> 6 <link rel="help" href="https://github.com/servo/servo/issues/32432"> 7 <iframe srcdoc="contents"></iframe> 8 <script> 9 document.querySelector('iframe').remove(); 10 </script> 11 </body> 12 </html>