tor-browser

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

clip-path-path-with-zoom-ref.html (294B)


      1 <!DOCTYPE html>
      2 <html>
      3  <title>CSS Masking: Test clip-path property when the page is zoomed</title>
      4  <style>
      5    #rect {
      6      width: 200px;
      7      height: 200px;
      8      background: green;
      9      clip-path: path(nonzero, 'M0,0  L200,0  L0,200');
     10    }
     11  </style>
     12  <div id="rect"></div>
     13 </html>