tor-browser

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

bug1072911.js (243B)


      1 function X () {};
      2 function Y () {};
      3 function testCallProtoMethod() {
      4    var a = [new X, new X, __proto__, new Y, new Y];
      5 }
      6 testCallProtoMethod();
      7 
      8 function testNot() {
      9    var r;
     10    for (var i = 0; i < 10; ++i)
     11        r = [];
     12 }
     13 testNot();