tor-browser

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

bug566136.js (190B)


      1 load(libdir + "immutable-prototype.js");
      2 
      3 Object.prototype.length = 0;
      4 if (globalPrototypeChainIsMutable())
      5    this.__proto__ = [];
      6 
      7 function f() {
      8    eval('Math');
      9    length = 2;
     10 }
     11 f();