summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/browser_bug685470.js
blob: 46997b2e3b0d2e97c038b37db006c4f068e965d4 (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
add_task(async function () {
  const html =
    '<p id="p1" title="tooltip is here">This paragraph has a tooltip.</p>';
  await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "data:text/html," + html
  );

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

  await BrowserTestUtils.synthesizeMouseAtCenter(
    "#p1",
    { type: "mousemove" },
    gBrowser.selectedBrowser
  );
  await BrowserTestUtils.synthesizeMouseAtCenter(
    "#p1",
    {},
    gBrowser.selectedBrowser
  );

  // Wait until the tooltip timeout triggers that would normally have opened the popup.
  await new Promise(resolve => setTimeout(resolve, 0));
  is(
    document.getElementById("aHTMLTooltip").state,
    "closed",
    "local tooltip is closed"
  );
  is(
    document.getElementById("remoteBrowserTooltip").state,
    "closed",
    "remote tooltip is closed"
  );

  gBrowser.removeCurrentTab();
});