tor-browser

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

bug928542.js (169B)


      1 called = 0;
      2 function foo() {
      3    this.what();
      4    this.random = 0;
      5    this.what = 1;
      6 }
      7 foo.prototype.what = function() { called = 1; }
      8 new foo();
      9 assertEq(called, 1);