tor-browser

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

canvas.2d.disconnected-ref.html (344B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>HTML Canvas reference</title>
      4 <body>
      5 <canvas id=c>
      6 </body>
      7 <script>
      8 var c = document.getElementById("c");
      9 var ctx = c.getContext("2d");
     10 ctx.font = "50px monospace";
     11 ctx.fillText("Hello", 50, 75);
     12 ctx.font = "25px serif";
     13 ctx.fillText("World", 100, 100);
     14 c.style.border = "3px solid cyan";
     15 </script>