summaryrefslogtreecommitdiffstats
path: root/layout/xul/test/browser_bug685470.js
blob: c86231bc769af223fb4406ece921fecfc28d0050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_task(function* () {
  const html = "<p id=\"p1\" title=\"tooltip is here\">This paragraph has a tooltip.</p>";
  yield BrowserTestUtils.openNewForegroundTab(gBrowser, "data:text/html," + html);

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

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

  // Wait until the tooltip timeout triggers that would normally have opened the popup.
  yield 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();
});