tor-browser

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

large-gradient-1-ref.html (471B)


      1 <!--
      2     Any copyright is dedicated to the Public Domain.
      3     http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 <!DOCTYPE html>
      6 <html lang="en">
      7 <meta charset="utf-8">
      8 <title>Make sure that large gradient backgrounds are painted even at extreme scroll positions</title>
      9 
     10 <style>
     11 
     12 html {
     13  background: white;
     14  overflow: hidden;
     15 }
     16 
     17 body {
     18  margin: 0;
     19  height: 1000px;
     20  background-image: linear-gradient(rgb(210,210,210) 0px, rgb(215,215,215) 1000px);
     21 }
     22 
     23 </style>