tor-browser

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

forced-bg-color-outside-visible-region-ref.html (442B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Bug 1266161 - Reference</title>
      4 
      5 <style type="text/css">
      6 
      7 html, body {
      8  margin: 0;
      9 }
     10 
     11 #scrollbox {
     12  overflow: auto;
     13  height: 500px;
     14  width: 500px;
     15 }
     16 
     17 #scrolled {
     18  height: 1201px;
     19 }
     20 
     21 </style>
     22 
     23 <div id="wrapper">
     24 
     25  <div id="scrollbox">
     26 
     27    <div id="scrolled">
     28    </div>
     29 
     30  </div>
     31 
     32 </div>
     33 
     34 <script>
     35 
     36 var scrollbox = document.getElementById("scrollbox");
     37 scrollbox.scrollTop = 80;
     38 
     39 </script>