1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that the pip window closes when the pagehide page lifecycle event
* is not detected and if a video is not loaded with a src.
*/
add_task(async function test_close_empty_pip_window() {
await BrowserTestUtils.withNewTab(
{
url: TEST_PAGE,
gBrowser,
},
async browser => {
let videoID = "with-controls";
await ensureVideosReady(browser);
let emptied = SpecialPowers.spawn(browser, [{ videoID }], async args => {
let video = content.document.getElementById(args.videoID);
info("Waiting for emptied event to be called");
await ContentTaskUtils.waitForEvent(video, "emptied");
});
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
await SpecialPowers.spawn(browser, [{ videoID }], async args => {
let video = content.document.getElementById(args.videoID);
video.removeAttribute("src");
video.load();
});
await emptied;
await pipClosed;
}
);
});
/**
* Tests that the pip window closes when navigating to another page
* via the pagehide page lifecycle event.
*/
add_task(async function test_close_pagehide() {
await BrowserTestUtils.withNewTab(
{
url: TEST_PAGE,
gBrowser,
},
async browser => {
let videoID = "with-controls";
await ensureVideosReady(browser);
await SpecialPowers.spawn(browser, [{ videoID }], async args => {
let video = content.document.getElementById(args.videoID);
video.onemptied = () => {
// Since we handle pagehide first, handle emptied should not be invoked
ok(false, "emptied not expected to be called");
};
});
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
await SpecialPowers.spawn(browser, [{ videoID }], async args => {
content.location.href = "otherpage.html";
});
await pipClosed;
}
);
});
/**
* Tests that the pip window remains open if the pagehide page lifecycle
* event is not detected and if the video is still loaded with a src.
*/
add_task(async function test_open_pip_window_history_nav() {
await BrowserTestUtils.withNewTab(
{
url: TEST_PAGE,
gBrowser,
},
async browser => {
let videoID = "with-controls";
await ensureVideosReady(browser);
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
await SpecialPowers.spawn(browser, [{ videoID }], async args => {
let popStatePromise = ContentTaskUtils.waitForEvent(
content,
"popstate"
);
content.history.pushState({}, "new page", "test-page-with-sound.html");
content.history.back();
await popStatePromise;
});
ok(!pipWin.closed, "pip windows should still be open");
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
let closeButton = pipWin.document.getElementById("close");
EventUtils.synthesizeMouseAtCenter(closeButton, {}, pipWin);
await pipClosed;
}
);
});
|