tor-browser

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

1909718-1.html (407B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <canvas id="c" width="200" height="200"></canvas>
      5 
      6 <script>
      7 const c = document.getElementById("c");
      8 const ctx = c.getContext("2d");
      9 
     10 ctx.fillStyle = 'red';
     11 ctx.fillRect(0, 0, 200, 200);
     12 
     13 ctx.beginPath();
     14 ctx.rect(-6091968027, 0, 2 * 6091968027, 100);
     15 ctx.rect(100, 100, 100, 100);
     16 ctx.clip();
     17 
     18 ctx.fillStyle = 'green';
     19 ctx.fillRect(0, 0, 200, 200);
     20 
     21 </script>
     22 
     23 </body>
     24 </html>