https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 98932eb7420923b691dacea405b3bb4bb105016a authored by Emilio Cobos Álvarez on 10 April 2018, 20:19:22 UTC
Test descendant invalidation for :host(..).
Tip revision: 98932eb
disable-remote-playback-prompt-throws.html
<!DOCTYPE html>
<html>
<title>Test that calling prompt() when disableRemotePlayback attribute is set throws an exception</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/media.js"></script>
<script>
promise_test(t => {
  var v = document.createElement('video');
  v.src = getVideoURI('movie_5');
  v.disableRemotePlayback = true;

  return promise_rejects(t, 'InvalidStateError', v.remote.prompt());
}, 'Test that calling prompt() when disableRemotePlayback attribute is set throws an exception.');
</script>
</html>
back to top