tor-browser

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

bug692211.js (179B)


      1 // |jit-test| error: TypeError
      2 function TimeFunc(func) {
      3    for(var y=0; y<256; y++) func(y);
      4 }
      5 function nestedExit2() {
      6    TimeFunc(TimeFunc);
      7 }
      8 assertEq(nestedExit2(), "ok");