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-audio-element/audio-play-in-inactive-document-crash.html - WPT Dashboard Interop Dashboard
<audio id="a"></audio>
<iframe id="i"></iframe>
<script>
var a = document.getElementById("a");
i.contentDocument.documentElement.appendChild(a);
i.remove();
a.play();
</script>