tor-browser

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

mix-blend-mode-plus-lighter-svg-basic-ref.html (777B)


      1 <!DOCTYPE html>
      2 <title>mix-blend-mode: plus-lighter SVG test</title>
      3 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
      4 <link rel="help" href="https://drafts.fxtf.org/compositing-2/#mix-blend-mode">
      5 
      6 <style>
      7 .isolate { isolation: isolate; }
      8 .original { opacity: 0.6; }
      9 </style>
     10 
     11 <svg width=500 height=500>
     12  <g class="isolate">
     13    <rect class="original" x="10" y="10" width="100" height="100" fill="#000064"></rect>
     14    <rect class="original" x="30" y="65" width="100" height="100" fill="#000064"></rect>
     15    <rect class="original" x="50" y="120" width="100" height="100" fill="#006400"></rect>
     16    <rect x="30" y="65" width="80" height="45" fill="#000078"></rect>
     17    <rect x="50" y="120" width="80" height="45" fill="#003C3C"></rect>
     18  </g>
     19 </svg>