js/src/tests/ecma_6/Math/cbrt-approx.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 assertEq(Math.cbrt(1), 1);
     2 assertEq(Math.cbrt(-1), -1);
     4 var sloppy_tolerance = 200;  // FIXME
     6 assertNear(Math.cbrt(1e-300), 1e-100, sloppy_tolerance);
     7 assertNear(Math.cbrt(-1e-300), -1e-100, sloppy_tolerance);
     9 var cbrt_data = [
    10     [ Math.E, 1.3956124250860895 ], 
    11     [ Math.PI, 1.4645918875615231 ], 
    12     [ Math.LN2, 0.8849970445005177 ], 
    13     [ Math.SQRT2, 1.1224620483093728 ]
    14 ];
    16 for (var [x, y] of cbrt_data)
    17     assertNear(Math.cbrt(x), y, sloppy_tolerance);
    19 reportCompare(0, 0, "ok");

mercurial