tor-browser

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

1443232-1.html (840B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <body>
      4 <img id='m1'><br/>
      5 <script>
      6  var im1=document.getElementById('m1');
      7  var step_state=0;
      8  function handle_step(){
      9    step_state+=1;
     10    if(step_state == 1){
     11      im1.src='data:image/gif;base64,R0lGODlhAQABAIABAP///wAAACwAAAAAAQABAAACAkQBADs=';
     12    }
     13    else if(step_state==2){
     14      im1.src='1443232-1.gif';
     15    }
     16    else if(step_state==3){
     17      if(im1.height==2)
     18        im1.height=1;
     19      im1.height=2;
     20      im1.getBoundingClientRect();
     21      setTimeout(function(){document.documentElement.classList.remove("reftest-wait");}, 1000);
     22    }
     23  }
     24  document.addEventListener('DOMContentLoaded', function(){
     25    im1.addEventListener('load', handle_step, false);
     26    im1.src='data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==';
     27  });
     28 </script>
     29 </body>
     30 </html>