tor-browser

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

1155828-1.html (511B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <meta charset="utf-8">
      4 <title>Scrolling shouldn't cause gaps in the shadow</title>
      5 <style type="text/css">
      6 #rear {
      7 width: 500px;
      8 height: 1500px;
      9 box-shadow: 0 0 71px #667;
     10 display: block;
     11 }
     12 </style>
     13 
     14 <div id="rear"></div>
     15 
     16 <script>
     17 
     18 function doTest() {
     19  document.documentElement.scrollTop = 108;
     20  document.documentElement.removeAttribute("class");
     21 }
     22 window.addEventListener("MozReftestInvalidate", doTest);
     23 
     24 document.documentElement.scrollTop = 112;
     25 
     26 </script>