tor-browser

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

690990-1.html (473B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 
      4 <link id="e" href="data:text/css,.ref { background-color: green; }" rel="stylesheet">
      5 
      6 <script>
      7 
      8 function boom()
      9 {
     10  document.documentElement.appendChild(document.getElementById("e"));
     11  document.styleSheets[0].cssRules[0];
     12  // Remove reftest-wait async so we give the SheetComplete a chance to run
     13  setTimeout(function() { document.documentElement.className = ""; }, 0);
     14 }
     15 
     16 </script>
     17 
     18 <body onload="boom();"></body>
     19 
     20 </html>