tor-browser

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

mask-under-border-radius.html (708B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://www.w3.org/TR/css-masking-1/#the-mask-image">
      3 <link rel="help" href="https://crbug.com/368562242">
      4 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      5 <p>Test passes if there is a filled green square.</p>
      6 <html style="overflow: hidden">
      7  <div style="margin: 0 -20px; overflow: hidden; border-radius: 5px">
      8    <div style="overflow: auto; scrollbar-width: none;
      9                mask-image: linear-gradient(to right, transparent 20px, red 20px 120px, transparent 120px 100%)">
     10      <div style="margin: -20px; height: 140px; background: green">
     11        <div style="position: absolute"></div>
     12      </div>
     13    </div>
     14  </div>
     15 </div>