tor-browser

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

bug642248.js (192B)


      1 function test(makeNonArray) {
      2    function C() {}
      3    C.prototype = []
      4    c = new C();
      5    c.push("foo");
      6    return c.length
      7 }
      8 assertEq(test(true), 1);
      9 var a = [];
     10 var b = Object.create(a);