blob: 20b4b1c6a7726d76c8c6998da8b2ae5e6ff2b160 [file] [log] [blame]
<body>
PASS if creating an audio element in a detached Document doesn't crash.
<iframe id="i"></iframe>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var child_document = i.contentDocument;
i.remove();
var audio = child_document.createElement("audio");
</script>
</body>