summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_doubletap_zoom_nothing.html
blob: 12005b35528529624d0a1e0e66813e381b446605 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=2100"/>
  <title>Check that double tapping when zoomed out and there is nothing to zoom to zooms in</title>
  <script src="apz_test_native_event_utils.js"></script>
  <script src="apz_test_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <script>

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

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

  // Check that double-tapping once zooms in
  await doubleTapOn(document.getElementById("thebody"), 20, 20, useTouchpad);
  let prev_resolution = resolution;
  resolution = await getResolution();
  ok(resolution > prev_resolution, "The first double-tap has increased the resolution to " + resolution);

  // Check that double-tapping again on the same spot zooms out
  await doubleTapOn(document.getElementById("thebody"), 20, 20, useTouchpad);
  prev_resolution = resolution;
  resolution = await getResolution();
  ok(resolution < prev_resolution, "The second double-tap has decreased the resolution to " + resolution);
  ok(resolution == initial_resolution, "The second double-tap has decreased the resolution to the start resolution " + resolution);
}

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

  </script>
<style>
  body, html {margin: 0; width: 100%; height: 100%;}
</style>
</head>
<body id="thebody">

</body>
</html>