chromium/third_party/blink/web_tests/external/wpt/html/semantics/embedded-content/the-audio-element/audio-play-in-inactive-document-crash.html

<audio id="a"></audio>
<iframe id="i"></iframe>
<script>
var a = document.getElementById("a");
i.contentDocument.documentElement.appendChild(a);
i.remove();
a.play();
</script>