tor-browser

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

1976116.html (370B)


      1 <!doctype html>
      2 <html>
      3  <style>
      4    .b {
      5      clip-path: url(#clip1);
      6      background-color: green;
      7    }
      8  </style>
      9  <body>
     10    <svg class="b" width="200" height="100" xmlns="http://www.w3.org/2000/svg">
     11      <defs>
     12        <clipPath id="clip1">
     13          <rect x="0" y="0" width="100" height="20" />
     14        </clipPath>
     15      </defs>
     16    </svg>
     17  </body>
     18 </html>