tor-browser

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

1153693-1.html (322B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <style>
      6 
      7 .a { clip-path: url(z); }
      8 #x { clip-path: inherit; }
      9 
     10 </style>
     11 </head>
     12 
     13 <body>
     14    <div class="a">
     15        <div class="a" id="x"></div>
     16    </div>
     17    <script>
     18        getComputedStyle(document.getElementById("x"), "").clipPath;
     19    </script>
     20 </body>
     21 
     22 </html>