tor-browser

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

bug-1649234-2.js (197B)


      1 // |jit-test| exitstatus: 6;
      2 
      3 setInterruptCallback(() => false);
      4 0n == {
      5  valueOf() {
      6    interruptIf(true);
      7    for (;;) {}  // block until interrupt callback, which terminates the script
      8  }
      9 };