tor-browser

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

bug1816084.js (177B)


      1 var count = 0;
      2 function f() {
      3    if (count++ < 10) {
      4        interruptIf(true);
      5    }
      6    assertEq((1).toLocaleString(), "1");
      7    return true;
      8 }
      9 setInterruptCallback(f);
     10 f();