tor-browser

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

mask-image-ib-split.html (772B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: mask-image on an inline with a block inside split by a columnset</title>
      3 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      4 <link rel="help" href="https://drafts.fxtf.org/css-masking-1/#mask-layer-image">
      5 <link rel="match" href="reference/mask-image-ib-split-ref.html">
      6 <meta name="assert" content="mask-image applies to the block child">
      7 <style>
      8  body { column-width: 40px; column-gap: 0; }
      9  div { padding-inline-start: 40px; margin: 1em 0; border-bottom-style: solid; }
     10  span { margin-inline-end: -2px; }
     11  x { mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGDwAQAAUQBNt+pgmgAAAABJRU5ErkJggg==); }
     12 </style>
     13 <body><x><span></span><div></div></x></body>
     14 </html>