tor-browser

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

transformed-line-stroke-ref.html (284B)


      1 <canvas id=c></canvas>
      2 <script>
      3 const canvas = document.getElementById("c");
      4 const ctx = canvas.getContext("2d");
      5 
      6 canvas.width = 600;
      7 canvas.height = 300;
      8 
      9 
     10 ctx.strokeStyle = "rgba(0, 0, 0, 1)";
     11 ctx.beginPath();
     12 ctx.moveTo(88, 137.5);
     13 ctx.lineTo(736, 137.5);
     14 ctx.stroke();
     15 </script>