summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-audio-element/audio-appendChild-to-inactive-document-crash.html
blob: 33d52ca89946298d02349877164e5439626232df (plain)
1
2
3
4
5
6
<iframe id=i></iframe>
<script>
var doc = i.contentDocument.cloneNode();
i.remove();
doc.appendChild(document.createElement("audio"));
</script>