tor-browser

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

bug718850.js (140B)


      1 // Don't abort during SSA construction.
      2 function f() {
      3 var i = 0;
      4 while (i < 100 && 1 == 1) {
      5 	i++;
      6 }
      7 return i;
      8 }
      9 
     10 assertEq(f(), 100);