tor-browser

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

1347147-1-ref.html (488B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="UTF-8">
      5    <script>
      6      function draw() {
      7        var c = document.getElementById('c').getContext('2d');
      8 
      9        c.fillStyle = 'lime';
     10        c.fillRect(0, 0, 100, 50);
     11 
     12        c.fillStyle = 'red';
     13        c.fillRect(40, 0, 30, 50);
     14 
     15        c.fillStyle = 'blue';
     16        c.fillRect(70, 0, 30, 50);
     17      }
     18    </script>
     19  </head>
     20  <body onload="draw();">
     21    <canvas id='c' width='100' height='50'></canvas>
     22  </body>
     23 </html>