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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// This test verifies that when in fullscreen mode, and a new window is opened,
// fullscreen mode should not exit and the url bar is focused.
add_task(async function test_fullscreen_new_window() {
await SpecialPowers.pushPrefEnv({
set: [
["full-screen-api.enabled", true],
["full-screen-api.allow-trusted-requests-only", false],
],
});
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"https://example.org/browser/browser/base/content/test/fullscreen/fullscreen.html"
);
let fullScreenEntered = BrowserTestUtils.waitForEvent(
document,
"fullscreenchange",
false,
() => document.fullscreenElement
);
// Enter fullscreen.
await SpecialPowers.spawn(tab.linkedBrowser, [], async () => {
content.document.getElementById("request").click();
});
await fullScreenEntered;
// Open a new window via ctrl+n.
let newWindowPromise = BrowserTestUtils.waitForNewWindow({
url: "about:blank",
});
EventUtils.synthesizeKey("N", { accelKey: true });
let newWindow = await newWindowPromise;
// Check new window state.
is(
newWindow.document.activeElement,
newWindow.gURLBar.inputField,
"url bar is focused after new window opened"
);
ok(
!newWindow.fullScreen,
"The new chrome window should not be in fullscreen"
);
ok(
!newWindow.document.documentElement.hasAttribute("inDOMFullscreen"),
"The new chrome document should not be in fullscreen"
);
// Wait a bit then check the original window state.
await new Promise(resolve => TestUtils.executeSoon(resolve));
ok(
window.fullScreen,
"The original chrome window should be still in fullscreen"
);
ok(
document.documentElement.hasAttribute("inDOMFullscreen"),
"The original chrome document should be still in fullscreen"
);
// Close new window and move focus back to original window.
await BrowserTestUtils.closeWindow(newWindow);
await SimpleTest.promiseFocus(window);
// Exit fullscreen on original window.
let fullScreenExited = BrowserTestUtils.waitForEvent(
document,
"fullscreenchange",
false,
() => !document.fullscreenElement
);
EventUtils.synthesizeKey("KEY_Escape");
await fullScreenExited;
BrowserTestUtils.removeTab(tab);
});
|