tor-browser

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

bug1693328.js (165B)


      1 function bar() {}
      2 
      3 function foo() {
      4    const v2 = [0,0];
      5    v2[16777217] = "a";
      6    v2.length = 2;
      7    bar(...v2);
      8 }
      9 
     10 for (var i = 0; i < 100; i++) {
     11    foo();
     12 }