tor-browser

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

bug585542.js (138B)


      1 function f() { return 2; }
      2 function g(o) {
      3  with (o) {
      4      var f = function() { return 4; }
      5  }
      6  return f();
      7 }
      8 
      9 assertEq(g({}), 4);