tor-browser

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

1850284-1-ref.html (257B)


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