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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that double-clicking on the Picture-in-Picture player window
* causes it to fullscreen, and that pressing Escape allows us to exit
* fullscreen.
*/
add_task(async () => {
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: TEST_PAGE,
},
async browser => {
let pipWin = await triggerPictureInPicture(browser, "no-controls");
let controls = pipWin.document.getElementById("controls");
await promiseFullscreenEntered(pipWin, async () => {
EventUtils.sendMouseEvent(
{
type: "dblclick",
},
controls,
pipWin
);
});
Assert.equal(
pipWin.document.fullscreenElement,
pipWin.document.body,
"Double-click caused us to enter fullscreen."
);
await BrowserTestUtils.waitForCondition(
() => {
let close = pipWin.document.getElementById("close");
let opacity = parseFloat(pipWin.getComputedStyle(close).opacity);
return opacity == 0.0;
},
"Close button in player should have reached 0.0 opacity",
100,
100
);
// First, we'll test exiting fullscreen by double-clicking again
// on the document body.
await promiseFullscreenExited(pipWin, async () => {
EventUtils.sendMouseEvent(
{
type: "dblclick",
},
controls,
pipWin
);
});
Assert.ok(
!pipWin.document.fullscreenElement,
"Double-click caused us to exit fullscreen."
);
// Now we double-click to re-enter fullscreen.
await promiseFullscreenEntered(pipWin, async () => {
EventUtils.sendMouseEvent(
{
type: "dblclick",
},
controls,
pipWin
);
});
Assert.equal(
pipWin.document.fullscreenElement,
pipWin.document.body,
"Double-click caused us to re-enter fullscreen."
);
// Finally, we check that hitting Escape lets the user leave
// fullscreen.
await promiseFullscreenExited(pipWin, async () => {
EventUtils.synthesizeKey("KEY_Escape", {}, pipWin);
});
Assert.ok(
!pipWin.document.fullscreenElement,
"Pressing Escape caused us to exit fullscreen."
);
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
pipWin.close();
await pipClosed;
}
);
});
|