summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_doubletap_zoom_scrolled_overflowhidden.html
blob: bba8eeec08b1e2e53756e3f5b9a586b207ed3047 (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
82
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=2100"/>
  <title>Check that double tapping when the page is overflow hidden and has been scrolled down by js works</title>
  <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <script type="application/javascript">

async function test() {
  let useTouchpad = (location.search == "?touchpad");

  var resolution = await getResolution();
  ok(resolution > 0,
     "The initial_resolution is " + resolution + ", which is some sane value");

  // instant scroll down
  window.scrollTo({
    top: window.innerHeight * 2 - 50,
    left: 0,
    behavior: 'auto'
  });

  await promiseApzFlushedRepaints();

  let scrollPos = window.scrollY;
  ok(scrollPos > window.innerHeight + 100, "window scrolled down");

  info("window.scrollY " + window.scrollY);

  info("window.innerHeight " + window.innerHeight);

  info("document.documentElement.scrollHeight " + document.documentElement.scrollHeight);

  let target = document.getElementById("target");

  // Check that double-tapping once zooms in
  info("sending double tap");
  await doubleTapOn(target, 10, 10, useTouchpad);
  var prev_resolution = resolution;
  resolution = await getResolution();
  ok(resolution > prev_resolution, "The first double-tap has increased the resolution to " + resolution);

  ok(window.scrollY > window.innerHeight + 100, "window is still scrolled down");
  ok(Math.abs(window.scrollY - scrollPos) < 2, "window didnt scroll");
  info("window.scrollY " + window.scrollY);
}

waitUntilApzStable()
.then(test)
.then(subtestDone, subtestFailed);

  </script>
  <style>
    html, body {
      overflow: hidden;
    }
    .spacer {
      background-color: #eee;

      height: 200vh;
    }
    .rect {
      background-color: #aaa;
      width: 100px;
      height: 100px;
    }
</style>
</head>
<body>

<div class="spacer">
</div>
<div id="target" class="rect">
</div>
<div class="spacer">
</div>

</body>
</html>