https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dc95d6e03b834edb8aef5b1c9f63187625197117 authored by Dong-hee Na on 10 October 2018, 08:14:18 UTC
Convert blocks.dat to html5lib_blocks.html
Tip revision: dc95d6e
request-picture-in-picture-twice.html
<!DOCTYPE html>
<title>Test request Picture-in-Picture on two videos</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(async t => {
  const video1 = await loadVideo();
  const video2 = await loadVideo();
  return test_driver.bless(
    'request Picture-in-Picture',
    async () => {
      video1.requestPictureInPicture();
      promise_rejects(t, 'NotAllowedError', video2.requestPictureInPicture());
    }
  );
}, 'request Picture-in-Picture consumes user gesture');
</script>
back to top