summaryrefslogtreecommitdiffstats
path: root/dom/base/test/useractivation/test_popup_blocker_pointer_event.html
blob: 8d0b2c8cd11e6601f32dd08c370cfbea578735e2 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for triggering popup by pointer events</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
  <div id="target" style="width: 50px; height: 50px; background: green"></div>
  <script>

    function sendMouseEvent(element, eventName, button, listenEventName, handler) {
      let needToCheckHandler = false;
      let handlerIsCalled = false;
      if (listenEventName && handler) {
        needToCheckHandler = true;
        element.addEventListener(listenEventName, (e) => {
          handler(e);
          handlerIsCalled = true;
        }, {once: true});
      }
      synthesizeMouseAtCenter(element, {type: eventName, button});
      if (needToCheckHandler) {
        ok(handlerIsCalled, "Handler should be called");
      }
    }

    function checkAllowOpenPopup(e) {
      let w = window.open("about:blank");
      ok(w, `Should allow popup in the ${e.type} listener with button=${e.button}`);
      if (w) {
        w.close();
      }
    }

    function checkBlockOpenPopup(e) {
      let w = window.open("about:blank");
      ok(!w, `Should block popup in the ${e.type} listener with button=${e.button}`);
      if (w) {
        w.close();
      }
    }

    add_setup(async function() {
      const DENY_ACTION = SpecialPowers.Ci.nsIPermissionManager.DENY_ACTION;
      let xorigin = SimpleTest.getTestFileURL("").replace(location.hostname, 'mochi.xorigin-test');
      await SpecialPowers.pushPermissions([
        {'type': 'popup', 'allow': DENY_ACTION,
         'context': document},
        {'type': 'popup', 'allow': DENY_ACTION,
         'context': xorigin}
      ]);
      await new Promise(resolve => SimpleTest.waitForFocus(resolve));
    });

    const LEFT_BUTTON = 0;
    const MIDDLE_BUTTON = 1;
    const RIGHT_BUTTON = 2;
    let target = document.getElementById("target");

    add_task(function testPointerEventDefault() {
      // By default, only allow opening popup in the pointerup listener.
      // Left button
      sendMouseEvent(target, "mousedown", LEFT_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", LEFT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", LEFT_BUTTON, "pointerup", checkAllowOpenPopup);

      // Middle button
      sendMouseEvent(target, "mousedown", MIDDLE_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", MIDDLE_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", MIDDLE_BUTTON, "pointerup", checkAllowOpenPopup);

      // Right button
      sendMouseEvent(target, "mousedown", RIGHT_BUTTON, "pointerdown", checkBlockOpenPopup);
      sendMouseEvent(target, "mousemove", RIGHT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", RIGHT_BUTTON, "pointerup", checkBlockOpenPopup);
    });

    add_task(async function testPointerEventAddPointerDownToPref() {
      // Adding pointerdown to preference
      await SpecialPowers.pushPrefEnv({"set": [["dom.popup_allowed_events",
                                                "pointerdown pointerup"]]});
      // Left button
      sendMouseEvent(target, "mousedown", LEFT_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", LEFT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", LEFT_BUTTON, "pointerup", checkAllowOpenPopup);

      // Middle button
      sendMouseEvent(target, "mousedown", MIDDLE_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", MIDDLE_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", MIDDLE_BUTTON, "pointerup", checkAllowOpenPopup);

      // Right button
      sendMouseEvent(target, "mousedown", RIGHT_BUTTON, "pointerdown", checkBlockOpenPopup);
      sendMouseEvent(target, "mousemove", RIGHT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", RIGHT_BUTTON, "pointerup", checkBlockOpenPopup);
    });

    add_task(async function testPointerEventAddPointerMoveToPref() {
      // Adding pointermove to preference should have no effect.
      await SpecialPowers.pushPrefEnv({"set": [["dom.popup_allowed_events",
                                                "pointerdown pointerup pointermove"]]});
      // Left button
      sendMouseEvent(target, "mousedown", LEFT_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", LEFT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", LEFT_BUTTON, "pointerup", checkAllowOpenPopup);

      // Middle button
      sendMouseEvent(target, "mousedown", MIDDLE_BUTTON, "pointerdown", checkAllowOpenPopup);
      sendMouseEvent(target, "mousemove", MIDDLE_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", MIDDLE_BUTTON, "pointerup", checkAllowOpenPopup);

      // Right button
      sendMouseEvent(target, "mousedown", RIGHT_BUTTON, "pointerdown", checkBlockOpenPopup);
      sendMouseEvent(target, "mousemove", RIGHT_BUTTON, "pointermove", checkBlockOpenPopup);
      sendMouseEvent(target, "mouseup", RIGHT_BUTTON, "pointerup", checkBlockOpenPopup);
    });
  </script>
</body>
</html>