tor-browser

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

bug1459754.js (165B)


      1 function f(x) {
      2    this["__proto__"] = x;
      3    let tmp = this.toString;
      4    assertEq(x === null, tmp === void 0);
      5 }
      6 
      7 for (let e of [[], null, []]) {
      8    new f(e);
      9 }