summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_event_screenXY_with_zoom.html
blob: 7f276a4534b3d7100c48f6f42bc5cd5a56e52baa (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
<!doctype html>
<meta charset="utf-8">
<title>Event.screenX/Y on a zoomed page.</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<style>
  #target {
    width: 100px;
    height: 100px;
    background-color: blue;
    /* We want synthesizeMouseAtCenter to click on the same point regardless of
       zoom, so we achieve that by centering the target in our viewport */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
</style>
<div id="target" style=""></div>
<script>
const target = document.getElementById("target");
async function getScreenPositionOfTarget() {
  return new Promise(resolve => {
    target.addEventListener("click", function(e) {
      resolve({ x: e.screenX, y: e.screenY });
    }, { once: true });
    synthesizeMouseAtCenter(target, {});
  });
}

function getScreen() {
  return {
    width: screen.width,
    height: screen.height,
    top: screen.top,
    left: screen.left,
  };
}

add_task(async () => {
  let pos = await getScreenPositionOfTarget();
  let s = getScreen();

  SpecialPowers.setFullZoom(window, 2);
  let zoomedPos = await getScreenPositionOfTarget();
  let zoomedScreen = getScreen();

  info(`Original pos=${JSON.stringify(pos)} s=${JSON.stringify(s)}`);
  info(`Zoomed pos=${JSON.stringify(zoomedPos)} s=${JSON.stringify(zoomedScreen)}`);

  isfuzzy(pos.x, zoomedPos.x * 2, 1, "screenX coordinate");
  isfuzzy(pos.y, zoomedPos.y * 2, 1, "screenY coordinate");

  isfuzzy(s.top, zoomedScreen.top * 2, 1, "Screen.top");
  isfuzzy(s.left, zoomedScreen.left * 2, 1, "Screen.left");
  isfuzzy(s.width, zoomedScreen.width * 2, 1, "Screen.width");
  isfuzzy(s.height, zoomedScreen.height * 2, 1, "Screen.height");

  SpecialPowers.setFullZoom(window, 1);
});
</script>