tor-browser

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

clipped-dash-stroke-rect.html (379B)


      1 <!doctype html>
      2 <html>
      3 <body>
      4 <script>
      5 canvas = document.createElement('canvas');
      6 document.body.appendChild(canvas);
      7 ctx = canvas.getContext('2d');
      8 
      9 canvas.width = 1000;
     10 canvas.height = 1000;
     11 ctx.translate(420.31465167323177, 40.531991340689785);
     12 ctx.scale(3, 3);
     13 
     14 ctx.strokeStyle = 'red';
     15 ctx.lineWidth = 1;
     16 ctx.setLineDash([8, 4]);
     17 ctx.strokeRect(5, -147, 20, 140);
     18 
     19 </script>