tor-browser

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

bug1365518.js (241B)


      1 function init() {
      2    foo = () => 1;
      3    bar = () => 2;
      4    foo.__proto__ = function() {};
      5 }
      6 function test() {
      7    var arr = [foo, bar];
      8    for (var i = 0; i < 1300; i++) {
      9        assertEq(arr[i % 2](), i % 2 + 1);
     10    }
     11 }
     12 init();
     13 test();