tor-browser

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

bug1213552.js (149B)


      1 this.x1 = 'y';
      2 // evalcx is like evaluate and not eval, and so can introduce a global let binding.
      3 evalcx("let x1 = 'z';", this);
      4 assertEq(x1, 'z');