tor-browser

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

mask-clipPath-opacity-01c.xhtml (447B)


      1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
      2 <head>
      3 <style>
      4  div {
      5    width: 100px;
      6    height: 100px;
      7    clip-path: url(#c1);
      8    background-color: blue;
      9    opacity: 0.5;
     10  }
     11 </style>
     12 </head>
     13 <body>
     14  <div/>
     15  <svg:svg height="0">
     16    <svg:clipPath id="c1">
     17      <svg:rect x="0" y="0" width="50" height="100"/>
     18    </svg:clipPath>
     19  </svg:svg>
     20 </body>
     21 </html>