tor-browser

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

reftest_window_load.html (279B)


      1 <!DOCTYPE html>
      2 <title>rel=match waits for window load</title>
      3 <link rel=match href=green.html>
      4 <script>
      5  window.onload = () => {
      6    const s = document.createElement('style');
      7    s.innerText = ':root {background-color:green}';
      8    document.body.appendChild(s);
      9  };
     10 </script>