summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/browser_bug1791083.js
blob: e68a723c4ecf0b3b15db0da4385b0ab4ea65c235 (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
/* Any copyright is dedicated to the Public Domain.
    http://creativecommons.org/publicdomain/zero/1.0/ */

const URL =
  "data:text/html," +
  "<style> a:hover {background-color: black}</style>" +
  "<body style='width:100px;height:100px'>" +
  "<a href='http://www.example.com'>Click Me</a>" +
  "</body>";

function isAnchorHovered(win) {
  return SpecialPowers.spawn(
    win.gBrowser.selectedBrowser,
    [],
    async function () {
      const a = content.document.querySelector("a");
      return a.matches(":hover");
    }
  );
}

add_task(async function test() {
  let newWin = await BrowserTestUtils.openNewBrowserWindow();

  // This bug is only reproducible if the cursor is out of the viewport, so
  // we resize the window to ensure the cursor is out of the viewport.

  // SynthesizeMouse isn't sufficient because it only synthesizes
  // mouse events without actually moving the cursor permanently to a
  // new location.
  newWin.resizeTo(50, 50);

  BrowserTestUtils.startLoadingURIString(newWin.gBrowser.selectedBrowser, URL);
  await BrowserTestUtils.browserLoaded(newWin.gBrowser.selectedBrowser);

  await SpecialPowers.spawn(
    newWin.gBrowser.selectedBrowser,
    [],
    async function () {
      const a = content.document.querySelector("a");
      await EventUtils.synthesizeMouseAtCenter(
        a,
        { type: "mousemove" },
        content
      );
    }
  );

  // We've hovered the anchor element.
  let anchorHovered = await isAnchorHovered(newWin);
  ok(anchorHovered, "Anchor should be hovered");

  let locationChange = BrowserTestUtils.waitForLocationChange(newWin.gBrowser);

  // Click the anchor to navigate away
  await SpecialPowers.spawn(
    newWin.gBrowser.selectedBrowser,
    [],
    async function () {
      const a = content.document.querySelector("a");
      await EventUtils.synthesizeMouseAtCenter(
        a,
        { type: "mousedown" },
        content
      );
      await EventUtils.synthesizeMouseAtCenter(a, { type: "mouseup" }, content);
    }
  );
  await locationChange;

  // Navigate back to the previous page which has the anchor
  locationChange = BrowserTestUtils.waitForLocationChange(newWin.gBrowser);
  newWin.gBrowser.selectedBrowser.goBack();
  await locationChange;

  // Hover state should be cleared upon page caching.
  anchorHovered = await isAnchorHovered(newWin);
  ok(!anchorHovered, "Anchor should not be hovered");

  BrowserTestUtils.closeWindow(newWin);
});