https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 37c5bea47ddc518b83a755f619ef4d77809ff881 authored by Philip Jägenstedt on 29 March 2018, 09:56:53 UTC
Document useful arguments for `wpt run chrome`
Tip revision: 37c5bea
enter-picture-in-picture.html
<!DOCTYPE html>
<title>Test enterpictureinpicture event</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 => {
  const video = document.createElement('video');

  video.addEventListener('enterpictureinpicture', t.step_func_done(event => {
    assert_equals(event.target, video);
    assert_equals(event.bubbles, true);
    assert_equals(event.cancelable, false);
    assert_equals(event.composed, false);
    assert_equals(document.pictureInPictureElement, video);
  }));

  return requestPictureInPictureWithTrustedClick(video);
});
</script>
back to top