tor-browser

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

clientinformation.window.js (280B)


      1 test(() => {
      2  assert_equals(window.clientInformation, window.navigator);
      3 }, "window.clientInformation exists and equals window.navigator");
      4 
      5 test(() => {
      6  window.clientInformation = 1;
      7  assert_equals(window.clientInformation, 1);
      8 }, "window.clientInformation is Replaceable");