tor-browser

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

window_focus_inner.xhtml (377B)


      1 <?xml version="1.0"?>
      2 <window onfocus='dostuff()' xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' style='-moz-user-focus: normal;'>
      3 <script>
      4  function dostuff() {
      5    setTimeout(function() {
      6      document.documentElement.focus();
      7      document.removeChild(document.documentElement);
      8      window.opener.focus();
      9     }, 100);
     10    }
     11 </script>
     12 </window>