tor-browser

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

background-blend-mode-body-transparent-image.html (491B)


      1 <!DOCTYPE HTML>
      2 <style>
      3 body {
      4  background-image: linear-gradient(transparent, transparent 10%,
      5                                    green 10%, green 90%,
      6                                    transparent 90%, transparent);
      7  background-blend-mode: screen;
      8 }
      9 </style>
     10 <!--
     11  This test will check that a transparent background-image set on body does not
     12  blend with the browser's white background color.
     13 
     14  The test passes if the page has a green background with white horizontal
     15  lines.
     16 -->