tor-browser

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

1151821-1.html (434B)


      1 <!docytpe html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8" />
      5 <script>
      6 window.onload=function(){
      7 
      8 var c=document.getElementById("myCanvas").getContext("2d");
      9 
     10 c.fillStyle = "green";
     11 
     12 c.fillRect(0, 0,100,100);
     13 
     14 c.fillStyle = "red";
     15 c.globalCompositeOperation = "destination-over";
     16 c.rect(0, 0, 100, 100);
     17 c.clip();
     18 c.fillRect(0, 0, 100, 100);
     19 
     20 }
     21 </script>
     22 </head>
     23 <body>
     24 <canvas id="myCanvas" height=50 width=100></canvas>
     25 </body>
     26 </html>