tor-browser

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

clipPath-basic-shape-transform.html (273B)


      1 <svg style="width: 400px; height: 400px">
      2  <mask id="m1">
      3    <g transform="translate(100,90)">
      4      <rect width="200" height="200" fill="blue" style="clip-path: inset(50px 50px)"></rect>
      5    </g>
      6  </mask>
      7  <rect width="400" height="400" mask="url(#m1)"></rect>
      8 </svg>