summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/remote-playback/prompt-in-detached-iframe.html
blob: 501471755ab8130e0799a9c2c82960eb096ae5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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>