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.html (697B)


      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 <link rel="match" href="reference/mix-blend-mode-plus-lighter-svg-basic-ref.html">
      6 
      7 <style>
      8 .isolate { isolation: isolate; }
      9 rect {
     10  opacity: 0.6;
     11  mix-blend-mode: plus-lighter;
     12 }
     13 </style>
     14 
     15 <svg width=500 height=500>
     16  <g class="isolate">
     17    <rect x="10" y="10" width="100" height="100" fill="#000064"></rect>
     18    <rect x="30" y="65" width="100" height="100" fill="#000064"></rect>
     19    <rect x="50" y="120" width="100" height="100" fill="#006400"></rect>
     20  </g>
     21 </svg>