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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=633602
-->
<head>
<title>Test for Bug 633602</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=633602">
Mozilla Bug 633602
</a>
<div id="content">
</div>
<pre id="test">
<script type="application/javascript">
const { AppConstants } = SpecialPowers.ChromeUtils.importESModule(
"resource://gre/modules/AppConstants.sys.mjs"
);
/**
* Pointer Lock tests for bug 633602. These depend on the fullscreen api
* which doesn't work when run in the mochitests' iframe, since the
* mochitests' iframe doesn't have an allowfullscreen attribute. To get
* around this, all tests are run in a child window, which can go fullscreen.
* This method is borrowed from dom/html/test/test_fullscreen-api.html.
**/
SimpleTest.waitForExplicitFinish();
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"]
]}, nextTest);
// Run the tests which go full-screen in new window, as Mochitests
// normally run in an iframe, which by default will not have the
// allowfullscreen attribute set, so full-screen won't work.
var gTestFiles = [
"file_screenClientXYConst.html",
"file_childIframe.html",
"file_doubleLock.html",
"file_escapeKey.html",
"file_infiniteMovement.html",
"file_locksvgelement.html",
"file_movementXY.html",
"file_nestedFullScreen.html",
"file_pointerlock-api.html",
"file_pointerlock-api-with-shadow.html",
"file_pointerlockerror.html",
"file_pointerLockPref.html",
"file_removedFromDOM.html",
"file_retargetMouseEvents.html",
"file_suppressSomeMouseEvents.html",
"file_targetOutOfFocus.html",
"file_withoutDOM.html",
"file_allowPointerLockSandboxFlag.html",
"file_changeLockElement.html",
];
var gDisableList = [
// Bug 1615802
{ file: "file_screenClientXYConst.html", platform: "macosx" },
// Bug 1357082
{ file: "file_retargetMouseEvents.html", platform: "all" },
];
var gTestWindow = null;
var gTestIndex = 0;
function nextTest() {
if (gTestWindow) {
gTestWindow.close();
}
// Try to stabilize the state before running the next test.
SimpleTest.waitForFocus(
() => requestAnimationFrame(() => setTimeout(runNextTest)));
}
function runNextTest() {
if (gTestIndex < gTestFiles.length) {
var file = gTestFiles[gTestIndex];
gTestIndex++;
var skipTest = false;
for (var item of gDisableList) {
if (item.file == file &&
("all" == item.platform || AppConstants.platform == item.platform)) {
skipTest = true;
break;
}
}
if (!skipTest) {
info(`Testing ${file}`);
gTestWindow = window.open(file, "", "width=500,height=500");
} else {
info(`Skip ${file}`);
nextTest();
}
} else {
SimpleTest.finish();
}
}
</script>
</pre>
</body>
</html>
|