tor-browser

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

745025-1.html (457B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait reftest-paged">
      3 <body>
      4 <canvas id="canvas" width="10" height="10"></canvas>
      5 <script>
      6 var canvas = document.getElementById('canvas');
      7 canvas.mozPrintCallback = function(obj) {
      8  setTimeout(function() {
      9    var ctx = obj.context;
     10    ctx.fillStyle = 'rgb(255, 0, 0)';
     11    ctx.fillRect(0, 0, 10, 10);
     12    obj.done();
     13    document.documentElement.classList.toggle("reftest-wait");
     14  }, 0);
     15 };
     16 </script>
     17 </body>
     18 </html>