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-embed-element/embed-named-attribute-detached-context-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<iframe id="i"></iframe>
<script>
let e = i.contentDocument.createElement("embed");
i.contentDocument.body.appendChild(e);
i.remove();
// These should not crash.
e.tryToGetAnAttribute;
e.tryToSetAnAttribute = "foo";
</script>
</body>