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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const ORIGIN =
"https://example.com/browser/browser/base/content/test/fullscreen/fullscreen_frame.html";
add_task(async function test_fullscreen_cross_origin() {
async function requestFullscreen(aAllow, aExpect) {
await BrowserTestUtils.withNewTab(ORIGIN, async function(browser) {
const iframeId = aExpect == "allowed" ? "frameAllowed" : "frameDenied";
info("Start fullscreen on iframe " + iframeId);
await SpecialPowers.spawn(
browser,
[{ aExpect, iframeId }],
async function(args) {
let frame = content.document.getElementById(args.iframeId);
frame.focus();
await SpecialPowers.spawn(frame, [args.aExpect], async expect => {
let frameDoc = content.document;
const waitForFullscreen = new Promise(resolve => {
const message =
expect == "allowed" ? "fullscreenchange" : "fullscreenerror";
function handler(evt) {
frameDoc.removeEventListener(message, handler);
Assert.equal(evt.type, message, `Request should be ${expect}`);
frameDoc.exitFullscreen();
resolve();
}
frameDoc.addEventListener(message, handler);
});
frameDoc.getElementById("request").click();
await waitForFullscreen;
});
}
);
if (aExpect == "allowed") {
waitForFullScreenState(browser, false);
}
});
}
await new Promise(r => {
SpecialPowers.pushPrefEnv(
{
set: [
["full-screen-api.enabled", true],
["full-screen-api.allow-trusted-requests-only", false],
["full-screen-api.transition-duration.enter", "0 0"],
["full-screen-api.transition-duration.leave", "0 0"],
["dom.security.featurePolicy.header.enabled", true],
["dom.security.featurePolicy.webidl.enabled", true],
],
},
r
);
});
await requestFullscreen(undefined, "denied");
await requestFullscreen("fullscreen", "allowed");
});
|