Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Re-snapping to the last snapped element on APZ</title>
  <script src="apz_test_utils.js"></script>
  <script src="apz_test_native_event_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <style>
    body {
      margin: 0;
    }
    div {
      position: absolute;
    }
    #scroller {
      width: 100%;
      height: 500px;
      overflow-y: scroll;
      scroll-snap-type: y proximity; /* to escape from the last snap point */
    }
    .child {
      width: 100%;
      height: 100px;
      background-color: blue;
      scroll-snap-align: start;
    }
  </style>
</head>
<body>
  <div id="scroller">
    <div class="child" style="top: 0px;"></div>
    <div class="child" style="top: 200px;"></div>
    <div id="spacer" style="width: 100%; height: 2000px;"></div>
  </div>
  <script type="application/javascript">
    async function test() {
      let transformEndPromise = promiseTransformEnd();
      // The scroll delta value for promiseMoveMouseAndScrollWheelOver doesn't
      // exactly mean promiseMoveMouseAndScrollWheelOver scrolls the delta
      // pixels. It will be convered to OS internal values depending on
      // platforms. Below values are empirical values to work this test on all
      // platforms.
      const scrollDelta = getPlatform() == "mac" ? 10 : 100;
      // Scroll to a position where the distance from the next snap target
      // position is less than the scroll snap proximity value.
      await promiseMoveMouseAndScrollWheelOver(scroller, 100, 100,
        true /* waitForScroll */, scrollDelta);
      await transformEndPromise;
      await promiseApzFlushedRepaints();
      is(scroller.scrollTop, 200, "snap to 200px");
      document.querySelectorAll(".child")[1].style.top = "400px";
      is(scroller.scrollTop, 400, "re-snap to 400px");
      // Make sure the new snap position has been reflected in APZ side.
      await promiseApzFlushedRepaints();
      // Now trigger another wheel scroll to escape from the last snap point.
      transformEndPromise = promiseTransformEnd();
      // With a small `layout.css.scroll-behavior.spring-constant` preference
      // value (it's set in test_group_scroll_snap.html), an async scroll
      // operation, e.g. a wheel scroll operation, fires multiple scroll events
      // so that here we wait the first scroll event here by specifying
      // `waitForScroll=true`, there should be other scroll events after the
      // first one.
      await promiseMoveMouseAndScrollWheelOver(scroller, 100, 100,
          true /* waitForScroll */, scrollDelta + 1000);
      // Expand the scrollable region during the wheel scroll.
      spacer.style.height = "2200px";
      await transformEndPromise;
      await promiseApzFlushedRepaints();
      isnot(scroller.scrollTop, 400, "Do not re-snap to the original 400px point");
    }
    waitUntilApzStable()
    .then(test)
    .then(subtestDone, subtestFailed);
  </script>
</body>
</html>