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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests that closing a pip window will not focus on the originating video's window.
add_task(async function test_close_button_focus() {
// initialize
let win1 = await BrowserTestUtils.openNewBrowserWindow();
let win2 = await BrowserTestUtils.openNewBrowserWindow();
// Open PiP
let videoID = "with-controls";
let pipTab = await BrowserTestUtils.openNewForegroundTab(
win1.gBrowser,
TEST_PAGE
);
let browser = pipTab.linkedBrowser;
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
let focus = BrowserTestUtils.waitForEvent(win2, "focus", true);
win2.focus();
await focus;
// Close PiP
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
let closeButton = pipWin.document.getElementById("close");
let oldFocus = win1.focus;
win1.focus = () => {
ok(false, "Window is not supposed to be focused on");
};
EventUtils.synthesizeMouseAtCenter(closeButton, {}, pipWin);
await pipClosed;
ok(true, "Window did not get focus");
win1.focus = oldFocus;
// close windows
await BrowserTestUtils.closeWindow(win1);
await BrowserTestUtils.closeWindow(win2);
});
// Tests that pressing the unpip button will focus on the originating video's window.
add_task(async function test_unpip_button_focus() {
// initialize
let win1 = await BrowserTestUtils.openNewBrowserWindow();
let win2 = await BrowserTestUtils.openNewBrowserWindow();
// Open PiP
let videoID = "with-controls";
let pipTab = await BrowserTestUtils.openNewForegroundTab(
win1.gBrowser,
TEST_PAGE
);
let browser = pipTab.linkedBrowser;
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
let focus = BrowserTestUtils.waitForEvent(win2, "focus", true);
win2.focus();
await focus;
// Close PiP
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
let closeButton = pipWin.document.getElementById("unpip");
let pipWinFocusedPromise = BrowserTestUtils.waitForEvent(win1, "focus", true);
EventUtils.synthesizeMouseAtCenter(closeButton, {}, pipWin);
await pipClosed;
await pipWinFocusedPromise;
ok(true, "Originating window got focus");
// close windows
await BrowserTestUtils.closeWindow(win1);
await BrowserTestUtils.closeWindow(win2);
});
|