summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/picture-in-picture/mediastream.html
blob: 116a0f7dd4fc1dc43f7e5e0aedba4bb20d6e041c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<title>Test mediastream video in 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(async t => {
  const canvas = document.createElement('canvas');
  const video = document.createElement('video');
  canvas.getContext('2d').fillRect(0, 0, canvas.width, canvas.height);
  video.muted = true;
  video.srcObject = canvas.captureStream(60 /* fps */);
  await video.play();

  return requestPictureInPictureWithTrustedClick(video)
  .then(pipWindow => {
    assert_not_equals(pipWindow.width, 0);
    assert_not_equals(pipWindow.height, 0);
  });
}, 'request Picture-in-Picture resolves on user click with Picture-in-Picture window');
</script>