summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/browser_bug685470.js
blob: faf013743c3e59c300374b50af91e60eff6ce822 (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
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 SpecialPowers.pushPrefEnv({ set: [["ui.tooltip.delay_ms", 0]] });

  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();
});