tor-browser

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

scroll-initial-target-computed.html (605B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4 <head>
      5  <meta charset="utf-8">
      6  <title> CSS Scroll Snap 2 Test: scroll-initial-target-* computed values</title>
      7  <link rel="help" href="https://drafts.csswg.org/css-scroll-snap-2/#scroll-initial-target">
      8  <script src="/resources/testharness.js"></script>
      9  <script src="/resources/testharnessreport.js"></script>
     10  <script src="/css/support/computed-testcommon.js"></script>
     11 </head>
     12 
     13 <body>
     14  <div id="target"></div>
     15  <script>
     16    test_computed_value("scroll-initial-target", "nearest");
     17    test_computed_value("scroll-initial-target", "none");
     18    </script>
     19 </body>
     20 
     21 </html>