tor-browser

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

mask-image-1b.html (819B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Masking: mask-image: mask layer image</title>
      6    <link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <link rel="help" href="https://www.w3.org/TR/css-masking-1/#the-mask-image">
      9    <link rel="match" href="mask-image-1-ref.html">
     10    <meta name="assert" content="Test checks whether SVG image as mask layer works correctly or not.">
     11    <style type="text/css">
     12      div {
     13        background-color: purple;
     14        width: 100px;
     15        height: 100px;
     16      }
     17 
     18      div.mask-by-svg {
     19        mask-image: url(support/transparent-100x50-blue-100x50.svg);
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div class="mask-by-svg"></div>
     25  </body>
     26 </html>