js/src/tests/ecma_6/Math/atanh-exact.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 // Properties of Math.atanh that are guaranteed by the spec.
     3 // If x is NaN, the result is NaN.
     4 assertEq(Math.atanh(NaN), NaN);
     6 // If x is less than −1, the result is NaN.
     7 assertEq(Math.atanh(-ONE_PLUS_EPSILON), NaN);
     8 assertEq(Math.atanh(-Number.MAX_VALUE), NaN);
     9 assertEq(Math.atanh(-Infinity), NaN);
    11 for (var i = -5; i < -1; i += 0.1)
    12     assertEq(Math.atanh(i), NaN);
    14 // If x is greater than 1, the result is NaN.
    15 assertEq(Math.atanh(ONE_PLUS_EPSILON), NaN);
    16 assertEq(Math.atanh(Number.MAX_VALUE), NaN);
    17 assertEq(Math.atanh(Infinity), NaN);
    19 for (var i = +5; i > +1; i -= 0.1)
    20     assertEq(Math.atanh(i), NaN);
    22 // If x is −1, the result is −∞.
    23 assertEq(Math.atanh(-1), -Infinity);
    25 // If x is +1, the result is +∞.
    26 assertEq(Math.atanh(+1), Infinity);
    28 // If x is +0, the result is +0.
    29 assertEq(Math.atanh(+0), +0);
    31 // If x is −0, the result is −0.
    32 assertEq(Math.atanh(-0), -0);
    35 reportCompare(0, 0, "ok");

mercurial