tor-browser

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

invalid-image-paint-error-ref.html (270B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <canvas id ="canvas" width="100" height="100"></canvas>
      5 <script>
      6 var canvas = document.getElementById('canvas');
      7 var context = canvas.getContext("2d");
      8 context.fillStyle = 'green';
      9 context.fillRect(0, 0, 100, 100);
     10 </script>
     11 </body>
     12 </html>