summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/browser_bug706743.js
blob: c28721e831dd36cd82dd2113f1e419a962a509f7 (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
add_task(async function () {
  const url =
    "data:text/html,<html><head></head><body>" +
    '<a id="target" href="about:blank" title="This is tooltip text" ' +
    'style="display:block;height:20px;margin:10px;" ' +
    'onclick="return false;">here is an anchor element</a></body></html>';

  let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, url);
  let browser = gBrowser.selectedBrowser;

  await new Promise(resolve => {
    SpecialPowers.pushPrefEnv({ set: [["ui.tooltipDelay", 0]] }, resolve);
  });

  // Send a mousemove at a known position to start the test.
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    -5,
    -5,
    { type: "mousemove" },
    browser
  );

  // show tooltip by mousemove into target.
  let popupShownPromise = BrowserTestUtils.waitForEvent(document, "popupshown");
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    5,
    15,
    { type: "mousemove" },
    browser
  );
  await popupShownPromise;

  // hide tooltip by mousemove to outside.
  let popupHiddenPromise = BrowserTestUtils.waitForEvent(
    document,
    "popuphidden"
  );
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    -5,
    15,
    { type: "mousemove" },
    browser
  );
  await popupHiddenPromise;

  // mousemove into the target and start drag by emulation via nsIDragService.
  // Note that on some platforms, we cannot actually start the drag by
  // synthesized events.  E.g., Windows waits an actual mousemove event after
  // dragstart.

  // Emulate a buggy mousemove event.  widget might dispatch mousemove event
  // during drag.

  function tooltipNotExpected() {
    ok(false, "tooltip is shown during drag");
  }
  addEventListener("popupshown", tooltipNotExpected, true);

  let dragService = Cc["@mozilla.org/widget/dragservice;1"].getService(
    Ci.nsIDragService
  );
  dragService.startDragSessionForTests(
    Ci.nsIDragService.DRAGDROP_ACTION_MOVE |
      Ci.nsIDragService.DRAGDROP_ACTION_COPY |
      Ci.nsIDragService.DRAGDROP_ACTION_LINK
  );
  try {
    await BrowserTestUtils.synthesizeMouse(
      "#target",
      5,
      15,
      { type: "mousemove" },
      browser
    );

    // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
    await new Promise(resolve => setTimeout(resolve, 100));
  } finally {
    removeEventListener("popupshown", tooltipNotExpected, true);
    dragService.endDragSession(true);
  }

  await BrowserTestUtils.synthesizeMouse(
    "#target",
    -5,
    -5,
    { type: "mousemove" },
    browser
  );

  // If tooltip listener used a flag for managing D&D state, we would need
  // to test if the tooltip is shown after drag.

  // show tooltip by mousemove into target.
  popupShownPromise = BrowserTestUtils.waitForEvent(document, "popupshown");
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    5,
    15,
    { type: "mousemove" },
    browser
  );
  await popupShownPromise;

  // hide tooltip by mousemove to outside.
  popupHiddenPromise = BrowserTestUtils.waitForEvent(document, "popuphidden");
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    -5,
    15,
    { type: "mousemove" },
    browser
  );
  await popupHiddenPromise;

  // Show tooltip after mousedown
  popupShownPromise = BrowserTestUtils.waitForEvent(document, "popupshown");
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    5,
    15,
    { type: "mousemove" },
    browser
  );
  await popupShownPromise;

  popupHiddenPromise = BrowserTestUtils.waitForEvent(document, "popuphidden");
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    5,
    15,
    { type: "mousedown" },
    browser
  );
  await popupHiddenPromise;

  await BrowserTestUtils.synthesizeMouse(
    "#target",
    5,
    15,
    { type: "mouseup" },
    browser
  );
  await BrowserTestUtils.synthesizeMouse(
    "#target",
    -5,
    15,
    { type: "mousemove" },
    browser
  );

  ok(true, "tooltips appear properly");

  gBrowser.removeCurrentTab();
});