tor-browser

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

canvas-ref.html (336B)


      1 <!DOCTYPE html>
      2 <style>
      3 canvas {
      4  width: 600px;
      5  height: 200px;
      6 }
      7 </style>
      8 <script>
      9 document.addEventListener("DOMContentLoaded", () => {
     10  const ctx = document.getElementById("canvas").getContext("2d");
     11  ctx.font = "48px serif";
     12  ctx.fillText(ctx.font, 10, 50);
     13 });
     14 </script>
     15 <canvas id="canvas" width="300" height="100"></canvas>