Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt OR os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt OR os == 'win' && os_version == '11.2009' && opt OR os == 'android' OR display == 'wayland' && os_version == '22.04'
- This test failed 21 times in the preceding 30 days. quicksearch this test
- Manifest: dom/tests/mochitest/pointerlock/mochitest.toml
<!DOCTYPE HTML>
<html>
<head>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style>
iframe {
width: 10px;
height: 10px;
border: 1px solid blue;
display: block;
}
</style>
</head>
<body>
<a target="_blank"href="https://bugzilla.mozilla.org/show_bug.cgi?id=1866173">Mozilla Bug 1866173</a><br>
<iframe src="https://example.com/tests/dom/tests/mochitest/pointerlock/iframe_differentDOM.html"></iframe>
<pre id="test">
<script type="text/javascript">
function waitForMessage(aType) {
return new Promise((resolve) => {
window.addEventListener("message", function handler(e) {
info(`received ${JSON.stringify(e.data)} message`);
if (e.data && e.data.type == aType) {
window.removeEventListener("message", handler);
resolve(e.data);
}
});
});
}
async function waitAndTestMouseMoveMessage(aMoveMementX, aMoveMomentY) {
let message = await waitForMessage("mousemove");
ok(true, `received mouemove event with movementX=${message.movementX} and movementY=${message.movementY}`);
return message;
}
const iframe = document.querySelector("iframe");
add_setup(async () => {
await SpecialPowers.pushPrefEnv({ set: [["test.events.async.enabled", true]] });
// Setup iframe for testing.
await SpecialPowers.spawn(iframe.contentWindow, [], async () => {
content.document.body.style = "margin: 0;";
content.document.body.innerHTML = `
<div id="container" style="height: 10px; width: 10px; background-color: #555;"></div>
`;
content.document.addEventListener("click", () => {
content.document.body.requestPointerLock();
});
content.document.addEventListener("pointerlockchange", (e) => {
content.parent.postMessage({
type: e.type,
}, "*");
});
content.document.addEventListener("mousemove", (e) => {
content.parent.postMessage({
type: e.type,
screenX: e.screenX,
screenY: e.screenY,
movementX: e.movementX,
movementY: e.movementY,
}, "*");
});
});
});
/**
*/
add_task(async function test_small_xorigin_iframe() {
let iframeCenterWidth = Math.round(iframe.getBoundingClientRect().width / 2);
let iframeCenterHeight = Math.round(iframe.getBoundingClientRect().height / 2);
// Click iframe to request pointer lock.
let promise = Promise.all([
waitForMessage("pointerlockchange"),
// We force the mouse to move to the center position when entering pointer
waitAndTestMouseMoveMessage(0, 0),
]);
synthesizeMouse(iframe, iframeCenterWidth, iframeCenterHeight, {});
await promise;
const movement = 2;
promise = waitAndTestMouseMoveMessage(movement, movement);
synthesizeMouse(iframe, iframeCenterWidth + movement, iframeCenterHeight + movement, { type: "mousemove" });
await promise;
// Exit pointer lock
promise = waitForMessage("pointerlockchange");
await SpecialPowers.spawn(iframe.contentWindow, [], async () => {
content.document.exitPointerLock();
});
await promise;
});
</script>
</pre>
</body>
</html>