tor-browser

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

reftest_img.html (425B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <head>
      4 <meta charset='utf-8'>
      5 </head>
      6 <body>
      7 <img id="e_img" style="position:absolute; left:0; top:0; max-width:100%">
      8 <script>
      9 (async () => {
     10  const params = new URLSearchParams(window.location.search);
     11  const src = params.get('src');
     12  src.defined;
     13 
     14  e_img.src = src;
     15  await e_img.decode()
     16  document.documentElement.removeAttribute('class');
     17 })();
     18 </script>
     19 </body>
     20 </html>