tor-browser

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

bug1688346.js (147B)


      1 function f(x) {
      2    let y = Math.trunc(x);
      3    return y - y;
      4 }
      5 
      6 with ({}) {}
      7 
      8 for (var i = 0; i < 50; i++) {
      9    f(0.1);
     10 }
     11 
     12 assertEq(f(NaN), NaN);