tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

position-sticky-scroll-reposition.html (920B)


      1 <!doctype html>
      2 <html class="reftest-wait">
      3 <title>Test that style mutation of contain:strict plus position:sticky updates sticky position</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos">
      5 <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
      6 <link rel="match" href="position-sticky-scroll-reposition-ref.html">
      7 <div id="scroller" style="width: 200px; height: 200px; overflow-y: scroll;
      8                          will-change: transform;">
      9  <div id="sticky" style="width: 100px; height: 100px; position: sticky; background: lightblue;
     10                             top: 50px; left: 50px; contain: strict;"></div>
     11  <div style="width: 100px; height: 500px;"></div>
     12 </div>
     13 <script src="/common/reftest-wait.js"></script>
     14 <script>
     15  requestAnimationFrame(() =>
     16      requestAnimationFrame(() => {
     17    sticky.style.top = '5px';
     18    takeScreenshot();
     19  }));
     20 </script>