https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2207a37c38f93ad6e74745dedb28e1dbd4660430 authored by Hwanseung Lee on 28 March 2018, 06:47:36 UTC
[css-typed-om] support x, y, cx, cy properties
Tip revision: 2207a37
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