blob: 1cac0ff22d79bbd98450b59d8fd8cffdb72ec141 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<title>Test that enter event is fired at documentPictureInPicture
when the PiP window in opened.</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>
<body>
<script>
async_test((t) => {
test_driver.bless('request PiP window').then(t.step_func(_ => {
documentPictureInPicture.onenter = t.step_func_done();
documentPictureInPicture.requestWindow();
}));
});
</script>
</body>
|