tor-browser

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

bug706795.js (175B)


      1 executed = false;
      2 Object.defineProperty(Object.prototype, 'x', { set: function() { executed = true; } });
      3 function A() {
      4    this.x = 12;
      5 }
      6 new A();
      7 assertEq(executed, true);