Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!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>