tor-browser

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

scrollbar-gutter-abspos-001.html (675B)


      1 <!doctype html>
      2 <title>CSS Overflow Test: scrollbar-gutter is accounted for in abspos sizing</title>
      3 <link rel="help" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      4 <link rel="help" href="https://mozilla.org" title="Mozilla">
      5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1756826">
      6 <link rel="match" href="scrollbar-gutter-abspos-001-ref.html">
      7 <style>
      8 .container {
      9  scrollbar-gutter: stable;
     10  overflow-y: auto;
     11  width: 100px;
     12  height: 200px;
     13  position: relative;
     14 }
     15 .abspos {
     16  width: 100%;
     17  height: 100px;
     18  background: green;
     19  position: absolute;
     20  left: 0;
     21 }
     22 </style>
     23 <div class="container">
     24  <div class="abspos"></div>
     25 </div>