summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_fixed_pos_displayport.html
blob: adae691096c35e5d8f7ebcdc9e9c45261cfa1b63 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width; minimum-scale=1.0">
  <title>position:fixed display port sizing</title>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/paint_listener.js"></script>
  <style>
    html, body {
      margin: 0;
      /* This makes sure the `height: 1000%` on #scrolled actually has an effect. */
      height: 100%;
    }
    #fixed {
      position: fixed;
      left: 0;
      height: 100%;
      width: 300px;
      background: linear-gradient(135deg, white, black);
    }
    /* This makes sure we have a layout scroll range. */
    #scrolled {
      width: 300px;
      height: 1000%;
    }
  </style>
</head>
<body>
  <div id="fixed"></div>
  <div id="scrolled"></div>
  <script>
    let utils = SpecialPowers.getDOMWindowUtils(window);
    let vv = window.visualViewport;

    // Get the displayport of the fixed-position element as of the last paint.
    function getCurrentFixedPosDisplayport() {
      let data = convertEntries(utils.getContentAPZTestData().additionalData);
      let key = "fixedPosDisplayport";
      ok(key in data, "should have computed a fixed-pos display port");
      return parseRect(data[key]);
    }

    async function scrollToVisual(targetX, targetY) {
      let scrollPromise = new Promise(resolve => {
        vv.addEventListener("scroll", resolve, { once: true });
      });
      utils.scrollToVisual(targetX, targetY, utils.UPDATE_TYPE_MAIN_THREAD,
                           utils.SCROLL_MODE_INSTANT);
      await scrollPromise;
      await promiseApzFlushedRepaints();
      // Allow up to 1 pixel discrepancy due to floating-point error.
      isfuzzy(vv.pageLeft, targetX, 1, "visual-scrolled horizontally as expected");
      isfuzzy(vv.pageTop, targetY, 1, "visual-scrolled vertically as expected");
    }

    // Check that the size and position of the fixed-pos displayport matches
    // our expectations.
    function checkFixedPosDisplayport() {
      let fixedPosDisplayport = getCurrentFixedPosDisplayport();

      // First, check check that we don't expand the displayport to the entire layout viewport
      // even if we are zoomed in a lot.
      ok(fixedPosDisplayport.width < window.innerWidth, "fixed-pos displayport is too wide");
      ok(fixedPosDisplayport.height < window.innerHeight, "fixed-pos displayport is too tall");

      // Now, check the position. We want it to track the visual scroll position
      // relative to the layout viewport (but not relative to the page), since
      // fixed-position elements are attached to the layout viewport.
      // This is accomplished by checking the fixed-pos display port contains
      // the visual viewport rect as expressed relative to the layout viewport.
      let vvRect = { x: vv.offsetLeft,  // offsets relative to layout viewport
                     y: vv.offsetTop,
                     width: vv.width,
                     height: vv.height };
      assertRectContainment(fixedPosDisplayport, "fixed-pos displayport",
                            vvRect, "visual viewport");
    }

    async function test() {
      // First, check size and position on page load.
      checkFixedPosDisplayport();

      // Scroll the visual viewport within the layout viewport, without
      // scrolling the layout viewport itself, and check the size and
      // position again.
      await scrollToVisual(vv.width * 3, vv.height * 3);
      checkFixedPosDisplayport();

      // Finally, scroll the visual viewport farther so as to cause the
      // layout viewport to scroll as well, and check the size and position
      // once more.
      await scrollToVisual(vv.width * 3, vv.height * 30);
      checkFixedPosDisplayport();
    }
    SpecialPowers.getDOMWindowUtils(window).setResolutionAndScaleTo(8.0);
    waitUntilApzStable().then(test).then(subtestDone, subtestFailed);
  </script>
</body>
</html>