Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /remote-playback/prompt-in-detached-iframe.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(t => {
let i = document.createElement("iframe");
document.body.appendChild(i);
let audio = document.createElement("audio");
i.contentDocument.body.appendChild(audio);
let remote = audio.remote;
i.remove();
return promise_rejects_dom(t, "InvalidAccessError", remote.prompt());
}, 'Calling remote.prompt() in a detached context should throw InvalidAccessError');
</script>
</body>
</html>