summaryrefslogtreecommitdiffstats
path: root/widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js
diff options
context:
space:
mode:
Diffstat (limited to 'widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js')
-rw-r--r--widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js128
1 files changed, 128 insertions, 0 deletions
diff --git a/widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js b/widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js
new file mode 100644
index 0000000000..3916d3d47c
--- /dev/null
+++ b/widget/tests/browser/browser_test_ime_state_on_focus_move_in_remote_content.js
@@ -0,0 +1,128 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+/* import-globals-from ../file_ime_state_test_helper.js */
+/* import-globals-from ../file_test_ime_state_on_focus_move.js */
+
+Services.scriptloader.loadSubScript(
+ "chrome://mochitests/content/browser/widget/tests/browser/file_ime_state_test_helper.js",
+ this
+);
+Services.scriptloader.loadSubScript(
+ "chrome://mochitests/content/browser/widget/tests/browser/file_test_ime_state_on_focus_move.js",
+ this
+);
+add_task(async function () {
+ await BrowserTestUtils.withNewTab(
+ "https://example.com/browser/widget/tests/browser/file_ime_state_tests.html",
+ async function (browser) {
+ const tipWrapper = new TIPWrapper(window);
+ ok(
+ tipWrapper.isAvailable(),
+ "TextInputProcessor should've been initialized"
+ );
+
+ // isnot is used in file_test_ime_state_on_focus_move.js, but it's not
+ // defined as the alias of Assert.notEqual in browser-chrome tests.
+ // Therefore, we need to define it here.
+ // eslint-disable-next-line no-unused-vars
+ const isnot = Assert.notEqual;
+
+ async function runIMEStateOnFocusMoveTests(aDescription) {
+ await (async function test_IMEState_without_focused_element() {
+ const checker = new IMEStateWhenNoActiveElementTester(aDescription);
+ const expectedData = await SpecialPowers.spawn(
+ browser,
+ [aDescription],
+ description => {
+ const runner =
+ content.wrappedJSObject.createIMEStateWhenNoActiveElementTester(
+ description
+ );
+ return runner.run(content.document, content.window);
+ }
+ );
+ checker.check(expectedData);
+ })();
+ for (
+ let index = 0;
+ index < IMEStateOnFocusMoveTester.numberOfTests;
+ ++index
+ ) {
+ const checker = new IMEStateOnFocusMoveTester(aDescription, index);
+ const expectedData = await SpecialPowers.spawn(
+ browser,
+ [aDescription, index],
+ (description, aIndex) => {
+ content.wrappedJSObject.runner =
+ content.wrappedJSObject.createIMEStateOnFocusMoveTester(
+ description,
+ aIndex,
+ content.window
+ );
+ return content.wrappedJSObject.runner.prepareToRun(
+ content.document.querySelector("div")
+ );
+ }
+ );
+ checker.prepareToCheck(expectedData, tipWrapper);
+ await SpecialPowers.spawn(browser, [], () => {
+ return content.wrappedJSObject.runner.run();
+ });
+ checker.check(expectedData);
+
+ if (checker.canTestOpenCloseState(expectedData)) {
+ for (const defaultOpenState of [false, true]) {
+ const expectedOpenStateData = await SpecialPowers.spawn(
+ browser,
+ [],
+ () => {
+ return content.wrappedJSObject.runner.prepareToRunOpenCloseTest(
+ content.document.querySelector("div")
+ );
+ }
+ );
+ checker.prepareToCheckOpenCloseTest(
+ defaultOpenState,
+ expectedOpenStateData
+ );
+ await SpecialPowers.spawn(browser, [], () => {
+ return content.wrappedJSObject.runner.runOpenCloseTest();
+ });
+ checker.checkOpenCloseTest(expectedOpenStateData);
+ }
+ }
+ await SpecialPowers.spawn(browser, [], () => {
+ content.wrappedJSObject.runner.destroy();
+ content.wrappedJSObject.runner = undefined;
+ });
+ checker.destroy();
+ } // for loop iterating test of IMEStateOnFocusMoveTester
+ } // definition of runIMEStateOnFocusMoveTests
+
+ // test for normal contents.
+ await runIMEStateOnFocusMoveTests("in non-editable container");
+
+ // test for removing contentEditable
+ await SpecialPowers.spawn(browser, [], async () => {
+ content.document
+ .querySelector("div")
+ .setAttribute("contenteditable", "true");
+ content.document.querySelector("div").focus();
+ await new Promise(resolve =>
+ content.window.requestAnimationFrame(() =>
+ content.window.requestAnimationFrame(resolve)
+ )
+ );
+ content.document
+ .querySelector("div")
+ .removeAttribute("contenteditable");
+ });
+ await runIMEStateOnFocusMoveTests(
+ "after removing contenteditable from the container"
+ );
+ }
+ );
+});