tor-browser

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

testConstantBooleanExpr.js (156B)


      1 function testConstantBooleanExpr()
      2 {
      3    for (var j = 0; j < 3; ++j) { if(true <= true) { } }
      4    return "ok";
      5 }
      6 assertEq(testConstantBooleanExpr(), "ok");