js/src/jit-test/tests/collections/Array-build-surfaces.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 // Check superficial features of Array.build.
     3 if (getBuildConfiguration().parallelJS) {
     4   load(libdir + "asserts.js");
     6   var desc = Object.getOwnPropertyDescriptor(Array, "build");
     7   assertEq(desc.configurable, true);
     8   assertEq(desc.enumerable, false);
     9   assertEq(desc.writable, true);
    10   assertEq(Array.build.length, 2);
    11   assertThrowsInstanceOf(() => new Array.build(), TypeError);  // not a constructor
    13   // Must pass a function to second argument.
    14   for (let v of [undefined, null, false, "cow"])
    15     assertThrowsInstanceOf(() => Array.build(1, v), TypeError);
    17   // The first argument must be a legal length.
    18   assertThrowsInstanceOf(() => Array.build(-1, function() {}), RangeError);
    20   // When the this-value passed in is not a constructor, the result is an array.
    21   for (let v of [undefined, null, false, "cow"])
    22     assertEq(Array.isArray(Array.build.call(v, 1, function() {})), true);
    23 }

mercurial