tor-browser

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

bug684362.js (245B)


      1 // vim: set ts=8 sts=4 et sw=4 tw=99:
      2 function f(a) {
      3    var k = a;
      4    T: for (;;) {
      5        for (;;) {
      6            for (;;) {
      7                if (k)
      8                    continue;
      9                break T;
     10            }
     11        }
     12    }
     13 }
     14 f(0);