tor-browser

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

1397711.html (304B)


      1 <!DOCTYPE html>
      2 <script>
      3  let code = "x".charCodeAt(0);
      4  let e = new KeyboardEvent("keypress", {
      5    keyCode: code,
      6    charCode: code,
      7    bubbles: true
      8  });
      9  let utils = SpecialPowers.getDOMWindowUtils(window);
     10  utils.dispatchDOMEventViaPresShellForTesting(document.documentElement, e);
     11 </script>