summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-embed-element/embed-named-attribute-detached-context-crash.html
blob: 7445b49f0fec0c432cadd9e829c63be2436b25ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>