tor-browser

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

scrollbar-gutter-fixedpos-001.html (652B)


      1 <!DOCTYPE html>
      2 <title>CSS Overflow Test: Root element's scrollbar-gutter is accounted for in fixed-pos positioning</title>
      3 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      4 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=728807">
      6 <link rel="match" href="scrollbar-gutter-fixedpos-001-ref.html">
      7 <style>
      8 :root {
      9  scrollbar-gutter: stable;
     10 }
     11 body {
     12  margin: 0;
     13 }
     14 .fixed {
     15  width: 100px;
     16  height: 100px;
     17  background: green;
     18  position: fixed;
     19 }
     20 </style>
     21 
     22 <div class="fixed" style="left: 0"></div>
     23 <div class="fixed" style="right: 0"></div>