tor-browser

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

overflow-clip-margin-007-ref.html (598B)


      1 <!doctype html>
      2 <html class="reftest">
      3 <meta charset="utf-8">
      4 <title>Overflow-clip-margin: is shown with content-visibility: auto</title>
      5 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin">
      6 <link rel="author" title="Scott Violet" href="mailto:sky@chromium.org">
      7 <style>
      8  body {
      9    height: 15000px;
     10  }
     11  .big {
     12    width: 10px;
     13    height: 20000px;
     14    position: relative;
     15    top: -10000px;
     16    background: green;
     17  }
     18 </style>
     19 <div class=big></div>
     20 <script>
     21 onload = function() {
     22  document.documentElement.scrollTop = window.innerHeight * 3;
     23 }
     24 </script>