summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/fullscreen/browser_fullscreen_keydown_reservation.js
blob: 2d34ac6c7b4f2db36981aa865e73f7d46a335b0f (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// This test verifies that whether shortcut keys of toggling fullscreen modes
// are reserved.
add_task(async function test_keydown_event_reservation_toggling_fullscreen() {
  await SpecialPowers.pushPrefEnv({
    set: [
      ["full-screen-api.transition-duration.enter", "0 0"],
      ["full-screen-api.transition-duration.leave", "0 0"],
    ],
  });

  let shortcutKeys = [{ key: "KEY_F11", modifiers: {} }];
  if (navigator.platform.startsWith("Mac")) {
    shortcutKeys.push({
      key: "f",
      modifiers: { metaKey: true, ctrlKey: true },
    });
    shortcutKeys.push({
      key: "F",
      modifiers: { metaKey: true, shiftKey: true },
    });
  }
  function shortcutDescription(aShortcutKey) {
    return `${
      aShortcutKey.metaKey ? "Meta + " : ""
    }${aShortcutKey.shiftKey ? "Shift + " : ""}${aShortcutKey.ctrlKey ? "Ctrl + " : ""}${aShortcutKey.key.replace("KEY_", "")}`;
  }
  for (const shortcutKey of shortcutKeys) {
    const tab = await BrowserTestUtils.openNewForegroundTab(
      gBrowser,
      "https://example.org/browser/browser/base/content/test/fullscreen/fullscreen.html"
    );

    await SimpleTest.promiseFocus(tab.linkedBrowser);

    const fullScreenEntered = BrowserTestUtils.waitForEvent(
      window,
      "fullscreen"
    );

    await SpecialPowers.spawn(tab.linkedBrowser, [], async () => {
      content.wrappedJSObject.keydown = null;
      content.window.addEventListener("keydown", event => {
        switch (event.key) {
          case "Shift":
          case "Meta":
          case "Control":
            break;
          default:
            content.wrappedJSObject.keydown = event;
        }
      });
    });

    EventUtils.synthesizeKey(shortcutKey.key, shortcutKey.modifiers);

    info(
      `Waiting for entering the fullscreen mode with synthesizing ${shortcutDescription(
        shortcutKey
      )}...`
    );
    await fullScreenEntered;

    info("Retrieving the result...");
    Assert.ok(
      await SpecialPowers.spawn(
        tab.linkedBrowser,
        [],
        async () => !!content.wrappedJSObject.keydown
      ),
      `Entering the fullscreen mode with ${shortcutDescription(
        shortcutKey
      )} should cause "keydown" event`
    );

    const fullScreenExited = BrowserTestUtils.waitForEvent(
      window,
      "fullscreen"
    );

    await SpecialPowers.spawn(tab.linkedBrowser, [], async () => {
      content.wrappedJSObject.keydown = null;
    });

    EventUtils.synthesizeKey(shortcutKey.key, shortcutKey.modifiers);

    info(
      `Waiting for exiting from the fullscreen mode with synthesizing ${shortcutDescription(
        shortcutKey
      )}...`
    );
    await fullScreenExited;

    info("Retrieving the result...");
    Assert.ok(
      await SpecialPowers.spawn(
        tab.linkedBrowser,
        [],
        async () => !content.wrappedJSObject.keydown
      ),
      `Exiting from the fullscreen mode with ${shortcutDescription(
        shortcutKey
      )} should not cause "keydown" event`
    );

    BrowserTestUtils.removeTab(tab);
  }
});