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/srcdoc-removed-iframe-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<body>
<title>iframe with srcdoc content that loads after iframe is removed from the document</title>
<link rel="author" title="Martin Robinson" href="mrobinson@igalia.com">
<iframe srcdoc="contents"></iframe>
<script>
document.querySelector('iframe').remove();
</script>
</body>
</html>