https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 26e6ef3f13680c4d02b33bf1235884119f9e26e7 authored by James Graham on 04 April 2018, 18:33:40 UTC
Add long timeout to unstable CSP tests, a=testonly on a CLOSED TREE
Tip revision: 26e6ef3
exit-picture-in-picture.html
<!DOCTYPE html>
<title>Test exit Picture-in-Picture</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/picture-in-picture-helpers.js"></script>
<body></body>
<script>
promise_test(t => {
  return requestPictureInPictureWithTrustedClick(document.createElement('video'))
  .then(() => document.exitPictureInPicture());
}, 'Exit Picture-in-Picture resolves when there is a Picture-in-Picture video');


promise_test(t => {
  return promise_rejects(t, 'InvalidStateError',
      document.exitPictureInPicture());
}, 'Exit Picture-in-Picture rejects when there is no Picture-in-Picture video');
</script>
back to top