tor-browser

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

clip-path-transform-001.html (315B)


      1 <svg>
      2    <defs>
      3        <clipPath id="clip" transform="translate(-50,0)">
      4            <rect x="0" y="0" width="100" height="100" transform="translate(50,0)"></rect>
      5        </clipPath>
      6    </defs>
      7    <g clip-path="url(#clip)">
      8        <circle cx="50" cy="50" r="50" style="fill: green;"></circle>
      9    </g>
     10 </svg>