tor-browser

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

bug705895-1.js (387B)


      1 load(libdir + "immutable-prototype.js");
      2 
      3 c = Number.prototype;
      4 function f(o) {
      5    if (globalPrototypeChainIsMutable() || o !== Object.prototype)
      6        o.__proto__ = null
      7    for (x in o) {}
      8 }
      9 for (i = 0; i < 9; i++) {
     10    f(c)
     11    if (globalPrototypeChainIsMutable())
     12        Object.prototype.__proto__ = c;
     13    for (x in Object.prototype)
     14        continue;
     15    f(Math.__proto__);
     16 }