tor-browser

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

arrayProto.js (210B)


      1 for (var i = 0; i < 15; i++) {
      2  var x = Object.create([]);
      3  assertEq(x.length, 0);
      4 }
      5 
      6 for (var i = 0; i < 15; i++) {
      7  function foo() {}
      8  foo.prototype = [];
      9  var x = new foo();
     10  assertEq(x.length, 0);
     11 }