<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>