tor-browser

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

1750146-1-ref.html (346B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 
      4 <div style="width: 100px; height: 100px;">
      5    <canvas id="c" width="100" height="100"></canvas>
      6 </div>
      7 
      8 <script>
      9 var ctx = document.getElementById('c').getContext('2d', { alpha: false });
     10 ctx.fillStyle = 'red';
     11 ctx.fillRect(0, 0, 50, 100);
     12 ctx.fillStyle = 'green';
     13 ctx.fillRect(50, 0, 50, 100);
     14 </script>