https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7278d99a68da4b055807c635a9e710207565fc8b authored by Manuel Rego Casasnovas on 14 March 2018, 15:33:37 UTC
[css-align] Use actual prefixed properties in the grid-* gutter tests
Tip revision: 7278d99
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