tor-browser

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

1846079-1.html (283B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <canvas id="c" width="50" height="50"></canvas>
      5 
      6 <script>
      7 const c = document.getElementById("c");
      8 const ctx = c.getContext("2d");
      9 
     10 ctx.translate(20, 20);
     11 
     12 ctx.beginPath();
     13 ctx.lineTo(0, 0);
     14 ctx.lineTo(0, 20);
     15 ctx.stroke();
     16 
     17 </script>
     18 
     19 </body>
     20 </html>