https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f7651d33ccb148f21ceab9f08f0a4d09bebf31cb authored by Ms2ger on 26 September 2018, 11:55:47 UTC
Simplify MultipartContent.
Tip revision: f7651d3
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