tor-browser

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

mask-size-cover.html (951B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Masking: mask-size: mask layer size</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-size">
      9    <link rel="match" href="mask-size-cover-ref.html">
     10    <meta name="assert" content="Test checks whether sizing mask layer works correctly or not.">
     11    <style type="text/css">
     12      #outer {
     13        border: 10px solid black;
     14        width: 64px;
     15        height: 128px;
     16        background-color: purple;
     17        mask-image: url(support/50x50-opaque-blue.svg);
     18        mask-repeat: no-repeat;
     19        mask-position: left top;
     20        mask-origin: content-box;
     21        mask-clip: content-box;
     22        mask-size: cover;
     23      }
     24    </style>
     25  </head>
     26  <body>
     27    <div id="outer"></div>
     28  </body>
     29 </html>