Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /picture-in-picture/picture-in-picture-element.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test Picture-in-Picture element</title>
<script src="/common/media.js"></script>
<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 => {
assert_equals(document.pictureInPictureElement, null);
const video = await loadVideo();
return requestPictureInPictureWithTrustedClick(video)
.then(() => {
assert_equals(document.pictureInPictureElement, video);
return document.exitPictureInPicture();
})
.then(() => {
assert_equals(document.pictureInPictureElement, null);
});
});
</script>