tor-browser

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

xul-scrollbar-iterate-ref.html (377B)


      1 <!DOCTYPE HTML>
      2 <title>XUL scrollbar testcase</title>
      3 <style>
      4 
      5 html { overflow: hidden }
      6 
      7 div.outer {
      8  display: -moz-box;
      9  overflow: scroll;
     10  width: 200px;
     11  height: 100px;
     12  background: yellow;
     13 }
     14 
     15 div.inner {
     16  width: 300px;
     17  height: 100px;
     18  min-width: 300px;
     19  min-height: 100px;
     20  background: aqua;
     21 }
     22 </style>
     23 
     24 <div class="outer">
     25  <div class="inner">
     26  </div>
     27 </div>