tor-browser

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

bug1696181.js (197B)


      1 function b() {}
      2 function c() {}
      3 
      4 function foo() {
      5    for (f of [b,c]) {
      6 (function () {
      7     f.apply({}, arguments);
      8 })(1,2,3,4)
      9    }
     10 }
     11 
     12 with({}) {}
     13 for (var i = 0; i < 100; i++) {
     14    foo();
     15 }