summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_scroll_into_view_bug1562757.html
blob: 4aff2901d7ebedd4990fd38d5b9611d5f2f76f2f (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Test for bug 1562757: "scroll into view" in iframe respects bounds on layout scroll position</title>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <style>
    #iframe {
      width: 100px;
      height: 100px;
      margin-left: 50%;
      margin-right: 50%;
      background: cyan;
      display: block;
    }
  </style>
</head>
<body>
  <iframe id="iframe" scrolling="no" frameborder="no" srcdoc="<div id='target' style='width:100px;height:100px;'></div>"></iframe>

  <script>
    let vv = window.visualViewport;
    function getVisualScrollRange() {
      let rootScroller = document.scrollingElement;
      return {
        width: rootScroller.scrollWidth - vv.width,
        height: rootScroller.scrollHeight - vv.height,
      };
    }
    async function test() {
      is(window.scrollMaxX, 0, "page should have a zero horizontal layout scroll range");
      is(window.scrollMaxY, 0, "page should have a zero vertical layout scroll range");
      let visualScrollRange = getVisualScrollRange();
      ok(visualScrollRange.width > 0, "page should have a nonzero horizontal visual scroll range");
      ok(visualScrollRange.height > 0, "page should have a nonzero vertical visual scroll range");
      let target = iframe.contentDocument.getElementById("target");

      // Scroll target element into view. Wait until any visual scrolling is done before doing checks.
      let scrollPromise = new Promise(resolve => {
        vv.addEventListener("scroll", resolve, { once: true });
      });
      target.scrollIntoView();
      await scrollPromise; // wait for visual viewport "scroll" event
      await promiseApzFlushedRepaints();

      // Test that scrollIntoView() respected the layout scroll range.
      is(window.scrollX, 0, "page should not layout-scroll with a zero layout scroll range");
      is(window.scrollY, 0, "page should not layout-scroll with a zero layout scroll range");

      // Test that scrollIntoView() did perform visual scrolling.
      let vvRect = getVisualViewportRect(vv);
      let targetBounds = iframe.getBoundingClientRect();
      assertRectContainment(vvRect, "visual viewport", targetBounds, "iframe having the target element bounding rect");
    }
    SpecialPowers.getDOMWindowUtils(window).setResolutionAndScaleTo(2.0);

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