tor-browser

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

subpixel-clip-path-transform.html (892B)


      1 <!DOCTYPE html>
      2 <meta name="assert" content="There should be no hairline along the edges of clip-path bounding box">
      3 <link rel="match" href="subpixel-clip-path-transform-ref.html">
      4 <style>body { margin: 0 }</style>
      5 <svg style="background: green" width="200" height="200" viewBox="0 0 150 150">
      6  <defs>
      7    <clipPath id="clip">
      8      <polygon points="130,5.4 132,5.4 132,132 5.4,132 5.4,130 130,130">
      9    </clipPath>
     10  </defs>
     11  <rect style="will-change: transform; clip-path: url(#clip)" fill="red" x="0" y="0" width="200" height="200">
     12 </svg>
     13 <!-- cover the non-interesting part which is difficult to match a ref.
     14     Overflow clip doesn't work to reproduce the issue. -->
     15 <div style="position: absolute; background: white; left: 100px; top: 0; width: 100px; height: 200px"></div>
     16 <div style="position: absolute; background: white; left: 0; top: 100px; width: 200px; height: 100px"></div>