summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_zoom_keyboardscroll.html
blob: 1a7b38fabd00da9da6ba5b7ad4d13809cf1d6a81 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, minimum-scale=1.0">
  <title>Tests that keyboard arrow keys scroll after zooming in when there was no scrollable overflow before zooming</title>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
</head>
<body>
  <div style="height: 20000px; background-color: green"></div>
  <script type="application/javascript">
    const utils = SpecialPowers.getDOMWindowUtils(window);

    async function test() {
      is(await getResolution(), 1.0, "should not be zoomed (1)");

      is(window.scrollX, 0, "shouldn't have scrolled (2)");
      is(window.scrollY, 0, "shouldn't have scrolled (3)");
      is(visualViewport.pageTop, 0, "shouldn't have scrolled (4)");
      is(visualViewport.pageLeft, 0, "shouldn't have scrolled (5)");

      // Zoom in
      SpecialPowers.getDOMWindowUtils(window).setResolutionAndScaleTo(2.0);
      await promiseApzFlushedRepaints();
      await promiseFrame();

      is(await getResolution(), 2.0, "should have zoomed (6)");

      is(window.scrollX, 0, "shouldn't have scrolled (7)");
      is(window.scrollY, 0, "shouldn't have scrolled (8)");
      is(visualViewport.pageTop, 0, "shouldn't have scrolled (9)");
      is(visualViewport.pageLeft, 0, "shouldn't have scrolled (10)");

      window.synthesizeKey("KEY_ArrowRight");

      await promiseApzFlushedRepaints();
      await promiseFrame();

      is(await getResolution(), 2.0, "should be zoomed (11)");

      is(window.scrollX, 0, "shouldn't have scrolled (12)");
      is(window.scrollY, 0, "shouldn't have scrolled (13)");
      is(visualViewport.pageTop, 0, "shouldn't have scrolled (14)");
      isnot(visualViewport.pageLeft, 0, "should have scrolled (15)");

      window.synthesizeKey("KEY_ArrowDown");

      await promiseApzFlushedRepaints();
      await promiseFrame();

      is(await getResolution(), 2.0, "should be zoomed (16)");

      is(window.scrollX, 0, "shouldn't have scrolled (17)");
      is(window.scrollY, 0, "shouldn't have scrolled (18)");
      isnot(visualViewport.pageTop, 0, "should have scrolled (19)");
      isnot(visualViewport.pageLeft, 0, "should have scrolled (20)");

      // Zoom back out
      SpecialPowers.getDOMWindowUtils(window).setResolutionAndScaleTo(1.0);
      await promiseApzFlushedRepaints();
      await promiseFrame();

      is(await getResolution(), 1.0, "should not be zoomed (21)");
    }

    waitUntilApzStable()
    .then(test)
    .then(subtestDone, subtestFailed);
  </script>
</body>
</html>