Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: display == 'wayland' && os_version == '22.04'
- This test failed 3 times in the preceding 30 days. quicksearch this test
- Manifest: dom/tests/mochitest/pointerlock/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<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=1662587">Mozilla Bug 1662587</a>
<div id="content"></div>
<pre id="test">
<script type="application/javascript">
/**
**/
SimpleTest.waitForExplicitFinish();
let gTestFiles = [
"file_pointerlock_xorigin_iframe.html",
"file_pointerlock_xorigin_iframe_no_user_gesture.html",
"file_pointerlock_xorigin_iframe_not_focused.html",
];
let gTestWindow = null;
let gTestIndex = 0;
SpecialPowers.pushPrefEnv({"set": [
// This will make dispatched event going through parent process.
["test.events.async.enabled", true]
]}, nextTest);
function nextTest() {
if (gTestWindow) {
gTestWindow.close();
}
SimpleTest.waitForFocus(runNextTest);
}
function runNextTest() {
if (gTestIndex < gTestFiles.length) {
let file = gTestFiles[gTestIndex];
gTestIndex++;
info(`Testing ${file}`);
gTestWindow = window.open(file, "", "width=500,height=500");
info(`Test finish`);
} else {
SimpleTest.finish();
}
}
</script>
</pre>
</body>
</html>