tor-browser

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

nested-filter-ref.html (383B)


      1 <html style="background: red">
      2 <body>
      3  <svg height="100px" width="100px">
      4    <g transform="translate(0, 25)">>
      5      <defs>
      6        <mask id="m" maskUnits="userSpaceOnUse">
      7          <rect x=10 y=10 width=51 height=45 fill="white"></rect>
      8        </mask>
      9      </defs>
     10      <rect fill="yellow" x=0 y=0 width=100 height=100 mask="url(#m)"></rect>
     11    </g>
     12  </svg>
     13 </body>
     14 </html>