tor-browser

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

canvas.html (695B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1909625">
      3 <link rel="help" href="https://html.spec.whatwg.org/#dom-context-2d-font">
      4 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      5 <link rel="author" href="https://mozilla.org" title="Mozilla">
      6 <link rel="match" href="canvas-ref.html">
      7 <title>zoom is ignored for canvas</title>
      8 <style>
      9 canvas {
     10  zoom: 2;
     11 }
     12 </style>
     13 <script>
     14 document.addEventListener("DOMContentLoaded", () => {
     15  const ctx = document.getElementById("canvas").getContext("2d");
     16  ctx.font = "48px serif";
     17  ctx.fillText(ctx.font, 10, 50);
     18 });
     19 </script>
     20 <canvas id="canvas" width="300" height="100"></canvas>