summaryrefslogtreecommitdiffstats
path: root/dom/events/test/browser_alt_keyup_in_content.js
blob: 746e442d65987606ed66e5aeb65d2404fc44b9c5 (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
"use strict";

add_task(async function runTests() {
  const menubar = document.getElementById("toolbar-menubar");
  const autohide = menubar.getAttribute("autohide");
  // This test requires that the window is active because of the limitation of
  // menubar.  Therefore, we should abort if the window becomes inactive during
  // the tests.
  let runningTests = true;
  function onWindowActive(aEvent) {
    // Don't warn after timed out.
    if (runningTests && aEvent.target === window) {
      info(
        "WARNING: This window shouldn't have been inactivated during tests, but received an activated event!"
      );
    }
  }
  function onWindowInactive(aEvent) {
    // Don't warn after timed out.
    if (runningTests && aEvent.target === window) {
      info(
        "WARNING: This window should be active during tests, but inactivated!"
      );
      window.focus();
    }
  }
  let menubarActivated = false;
  function onMenubarActive() {
    menubarActivated = true;
  }
  // In this test, menu popups shouldn't be open, but this helps avoiding
  // intermittent failure after inactivating the menubar.
  let popupEvents = 0;
  function getPopupInfo(aPopupEventTarget) {
    return `<${
      aPopupEventTarget.nodeName
    }${aPopupEventTarget.getAttribute("id") !== null ? ` id="${aPopupEventTarget.getAttribute("id")}"` : ""}>`;
  }
  function onPopupShown(aEvent) {
    // Don't warn after timed out.
    if (!runningTests) {
      return;
    }
    popupEvents++;
    info(
      `A popup (${getPopupInfo(
        aEvent.target
      )}) is shown (visible popups: ${popupEvents})`
    );
  }
  function onPopupHidden(aEvent) {
    // Don't warn after timed out.
    if (!runningTests) {
      return;
    }
    if (popupEvents === 0) {
      info(
        `WARNING: There are some unexpected popups which may be not cleaned up by the previous test (${getPopupInfo(
          aEvent.target
        )})`
      );
      return;
    }
    popupEvents--;
    info(
      `A popup (${getPopupInfo(
        aEvent.target
      )}) is hidden (visible popups: ${popupEvents})`
    );
  }
  try {
    Services.prefs.setBoolPref("ui.key.menuAccessKeyFocuses", true);
    // If this fails, you need to replace "KEY_Alt" with a variable whose
    // value is considered from the pref.
    is(
      Services.prefs.getIntPref("ui.key.menuAccessKey"),
      18,
      "This test assumes that Alt key activates the menubar"
    );
    window.addEventListener("activate", onWindowActive);
    window.addEventListener("deactivate", onWindowInactive);
    window.addEventListener("popupshown", onPopupShown);
    window.addEventListener("popuphidden", onPopupHidden);
    menubar.addEventListener("DOMMenuBarActive", onMenubarActive);
    async function doTest(aTest) {
      await new Promise(resolve => {
        if (Services.focus.activeWindow === window) {
          resolve();
          return;
        }
        info(
          `${aTest.description}: The testing window is inactive, trying to activate it...`
        );
        Services.focus.focusedWindow = window;
        TestUtils.waitForCondition(() => {
          if (Services.focus.activeWindow === window) {
            resolve();
            return true;
          }
          Services.focus.focusedWindow = window;
          return false;
        }, `${aTest.description}: Waiting the window is activated`);
      });
      let startTime = performance.now();
      info(`Start to test: ${aTest.description}...`);

      async function ensureMenubarInactive() {
        if (!menubar.querySelector("[_moz-menuactive=true]")) {
          return;
        }
        info(`${aTest.description}: Inactivating the menubar...`);
        let waitForMenuBarInactive = BrowserTestUtils.waitForEvent(
          menubar,
          "DOMMenuBarInactive"
        );
        EventUtils.synthesizeKey("KEY_Escape", {}, window);
        await waitForMenuBarInactive;
        await TestUtils.waitForCondition(() => {
          return popupEvents === 0;
        }, `${aTest.description}: Waiting for closing all popups`);
      }

      try {
        await BrowserTestUtils.withNewTab(
          {
            gBrowser,
            url: aTest.url,
          },
          async browser => {
            info(`${aTest.description}: Waiting browser getting focus...`);
            await SimpleTest.promiseFocus(browser);
            await ensureMenubarInactive();
            menubarActivated = false;

            let keyupEventFiredInContent = false;
            BrowserTestUtils.addContentEventListener(
              browser,
              "keyup",
              () => {
                keyupEventFiredInContent = true;
              },
              { capture: true },
              event => {
                return event.key === "Alt";
              }
            );

            // For making sure adding the above content event listener and
            // it'll get `keyup` event, let's run `SpecialPowers.spawn` and
            // wait for focus in the content process.
            info(
              `${aTest.description}: Waiting content process getting focus...`
            );
            await SpecialPowers.spawn(
              browser,
              [aTest.description],
              async aTestDescription => {
                await ContentTaskUtils.waitForCondition(() => {
                  if (
                    content.browsingContext.isActive &&
                    content.document.hasFocus()
                  ) {
                    return true;
                  }
                  content.window.focus();
                  return false;
                }, `${aTestDescription}: Waiting for content gets focus in content process`);
              }
            );

            let waitForAllKeyUpEventsInChrome = new Promise(resolve => {
              // Wait 2 `keyup` events in the main process.  First one is
              // synthesized one.  The other is replay event from content.
              let firstKeyUpEvent;
              window.addEventListener(
                "keyup",
                function onKeyUpInChrome(event) {
                  if (!firstKeyUpEvent) {
                    firstKeyUpEvent = event;
                    return;
                  }
                  window.removeEventListener("keyup", onKeyUpInChrome, {
                    capture: true,
                  });
                  resolve();
                },
                { capture: true }
              );
            });

            let menubarActivatedPromise;
            if (aTest.expectMenubarActive) {
              menubarActivatedPromise = BrowserTestUtils.waitForEvent(
                menubar,
                "DOMMenuBarActive"
              );
            }

            EventUtils.synthesizeKey("KEY_Alt", {}, window);
            info(
              `${aTest.description}: Waiting keyup events of Alt in chrome...`
            );
            await waitForAllKeyUpEventsInChrome;
            info(`${aTest.description}: Waiting keyup event in content...`);
            try {
              await TestUtils.waitForCondition(() => {
                return keyupEventFiredInContent;
              }, `${aTest.description}: Waiting for content gets focus in chrome process`);
            } catch (ex) {
              ok(
                false,
                `${aTest.description}: Failed to synthesize Alt key press in the content process`
              );
              return;
            }

            if (aTest.expectMenubarActive) {
              await menubarActivatedPromise;
              ok(
                menubarActivated,
                `${aTest.description}: Menubar should've been activated by the synthesized Alt key press`
              );
            } else {
              // Wait some ticks to verify not receiving "DOMMenuBarActive" event.
              // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
              await new Promise(resolve => setTimeout(resolve, 500));
              ok(
                !menubarActivated,
                `${aTest.description}: Menubar should not have been activated by the synthesized Alt key press`
              );
            }
          }
        );
      } catch (ex) {
        ok(
          false,
          `${aTest.description}: Thrown an exception: ${ex.toString()}`
        );
      } finally {
        await ensureMenubarInactive();
        info(`End testing: ${aTest.description}`);
        ChromeUtils.addProfilerMarker(
          "browser-test",
          { startTime, category: "Test" },
          aTest.description
        );
      }
    }

    // Testcases for users who use collapsible menubar (by default)
    menubar.setAttribute("autohide", "true");
    await doTest({
      description: "Testing menubar is shown by Alt keyup",
      url: "data:text/html;charset=utf-8,<p>static page</p>",
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar is shown by Alt keyup when an <input> has focus",
      url:
        "data:text/html;charset=utf-8,<input>" +
        '<script>document.querySelector("input").focus()</script>',
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar is shown by Alt keyup when an editing host has focus",
      url:
        "data:text/html;charset=utf-8,<p contenteditable></p>" +
        '<script>document.querySelector("p[contenteditable]").focus()</script>',
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar won't be shown by Alt keyup due to suppressed by the page",
      url:
        "data:text/html;charset=utf-8,<p>dynamic page</p>" +
        '<script>window.addEventListener("keyup", event => { event.preventDefault(); })</script>',
      expectMenubarActive: false,
    });

    // Testcases for users who always show the menubar.
    menubar.setAttribute("autohide", "false");
    await doTest({
      description: "Testing menubar is activated by Alt keyup",
      url: "data:text/html;charset=utf-8,<p>static page</p>",
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar is activated by Alt keyup when an <input> has focus",
      url:
        "data:text/html;charset=utf-8,<input>" +
        '<script>document.querySelector("input").focus()</script>',
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar is activated by Alt keyup when an editing host has focus",
      url:
        "data:text/html;charset=utf-8,<p contenteditable></p>" +
        '<script>document.querySelector("p[contenteditable]").focus()</script>',
      expectMenubarActive: true,
    });
    await doTest({
      description:
        "Testing menubar won't be activated by Alt keyup due to suppressed by the page",
      url:
        "data:text/html;charset=utf-8,<p>dynamic page</p>" +
        '<script>window.addEventListener("keyup", event => { event.preventDefault(); })</script>',
      expectMenubarActive: false,
    });
    runningTests = false;
  } catch (ex) {
    ok(
      false,
      `Aborting this test due to unexpected the exception (${ex.toString()})`
    );
    runningTests = false;
  } finally {
    if (autohide !== null) {
      menubar.setAttribute("autohide", autohide);
    } else {
      menubar.removeAttribute("autohide");
    }
    Services.prefs.clearUserPref("ui.key.menuAccessKeyFocuses");
    menubar.removeEventListener("DOMMenuBarActive", onMenubarActive);
    window.removeEventListener("activate", onWindowActive);
    window.removeEventListener("deactivate", onWindowInactive);
    window.removeEventListener("popupshown", onPopupShown);
    window.removeEventListener("popuphidden", onPopupHidden);
  }
});