зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1580506, fix incorrect pointerlock message names, r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D45577 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
e79e716c67
Коммит
f00a06829c
|
@ -43,12 +43,12 @@ class BrowserTabParent extends JSWindowActorParent {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case "MozDOMPointerLock:Entered": {
|
case "PointerLock:Entered": {
|
||||||
browser.ownerGlobal.PointerLock.entered(message.data.originNoSuffix);
|
browser.ownerGlobal.PointerLock.entered(message.data.originNoSuffix);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case "MozDOMPointerLock:Exited":
|
case "PointerLock:Exited":
|
||||||
browser.ownerGlobal.PointerLock.exited();
|
browser.ownerGlobal.PointerLock.exited();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,7 @@ skip-if = fission
|
||||||
support-files =
|
support-files =
|
||||||
test_mixed_content_image.html
|
test_mixed_content_image.html
|
||||||
dummy.png
|
dummy.png
|
||||||
|
[browser_pointerlock_warning.js]
|
||||||
[browser_test_focus_after_modal_state.js]
|
[browser_test_focus_after_modal_state.js]
|
||||||
skip-if = verify
|
skip-if = verify
|
||||||
support-files =
|
support-files =
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
/**
|
||||||
|
* Any copyright is dedicated to the Public Domain.
|
||||||
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
||||||
|
*/
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
const TEST_URL = "data:text/html,<body onpointerdown='this.requestPointerLock()' style='width: 100px; height: 100px;'></body>";
|
||||||
|
|
||||||
|
// Make sure the pointerlock warning is shown and exited with the escape key
|
||||||
|
add_task(async function show_pointerlock_warning_escape() {
|
||||||
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, TEST_URL);
|
||||||
|
|
||||||
|
let warning = document.getElementById("pointerlock-warning");
|
||||||
|
let warningShownPromise = BrowserTestUtils.waitForAttribute("onscreen", warning, "true");
|
||||||
|
await BrowserTestUtils.synthesizeMouse("body", 4, 4, {}, tab.linkedBrowser);
|
||||||
|
|
||||||
|
await warningShownPromise;
|
||||||
|
|
||||||
|
ok(true, "Pointerlock warning shown");
|
||||||
|
|
||||||
|
let warningHiddenPromise = BrowserTestUtils.waitForAttribute("hidden", warning, "true");
|
||||||
|
EventUtils.synthesizeKey("KEY_Escape");
|
||||||
|
await warningHiddenPromise;
|
||||||
|
|
||||||
|
ok(true, "Pointerlock warning hidden");
|
||||||
|
|
||||||
|
// Pointerlock should be released after escape is pressed.
|
||||||
|
await ContentTask.spawn(tab.linkedBrowser, null, async function() {
|
||||||
|
Assert.equal(content.document.pointerLockElement, null);
|
||||||
|
});
|
||||||
|
|
||||||
|
await BrowserTestUtils.removeTab(tab);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Make sure the pointerlock warning is shown, but this time escape is not pressed until after the
|
||||||
|
// notification is closed via the timeout.
|
||||||
|
add_task(async function show_pointerlock_warning_timeout() {
|
||||||
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, TEST_URL);
|
||||||
|
|
||||||
|
let warning = document.getElementById("pointerlock-warning");
|
||||||
|
let warningShownPromise = BrowserTestUtils.waitForAttribute("onscreen", warning, "true");
|
||||||
|
let warningHiddenPromise = BrowserTestUtils.waitForAttribute("hidden", warning, "true");
|
||||||
|
await BrowserTestUtils.synthesizeMouse("body", 4, 4, {}, tab.linkedBrowser);
|
||||||
|
|
||||||
|
await warningShownPromise;
|
||||||
|
ok(true, "Pointerlock warning shown");
|
||||||
|
await warningHiddenPromise;
|
||||||
|
|
||||||
|
// The warning closes after a few seconds, but this does not exit pointerlock mode.
|
||||||
|
await ContentTask.spawn(tab.linkedBrowser, null, async function() {
|
||||||
|
Assert.equal(content.document.pointerLockElement, content.document.body);
|
||||||
|
});
|
||||||
|
|
||||||
|
EventUtils.synthesizeKey("KEY_Escape");
|
||||||
|
|
||||||
|
ok(true, "Pointerlock warning hidden");
|
||||||
|
|
||||||
|
// Pointerlock should now be released.
|
||||||
|
await ContentTask.spawn(tab.linkedBrowser, null, async function() {
|
||||||
|
Assert.equal(content.document.pointerLockElement, null);
|
||||||
|
});
|
||||||
|
|
||||||
|
await BrowserTestUtils.removeTab(tab);
|
||||||
|
});
|
||||||
|
|
Загрузка…
Ссылка в новой задаче