tor-browser

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

geometry-with-float-size-ref.html (274B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <canvas id="canvas" width="100.5" height="200.5px"></canvas>
      5 </body>
      6 <script>
      7 var canvas = document.getElementById('canvas');
      8 var context = canvas.getContext('2d');
      9 context.fillStyle = 'green';
     10 context.fillRect(0, 0, 50, 50);
     11 </script>
     12 </html>