js/src/jit-test/tests/basic/splice-delete-non-configurable-during-shrink.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.

michael@0 1 /* Test that splice causing deletion of a non-configurable property stops at exactly step 12(v) of ES5 15.4.4.12 */
michael@0 2
michael@0 3 var O = [1,2,3,4,5,6];
michael@0 4 var A = undefined;
michael@0 5 Object.defineProperty(O, 3, { configurable: false });
michael@0 6
michael@0 7 try
michael@0 8 {
michael@0 9 A = O.splice(0, 6);
michael@0 10 throw new Error("didn't throw, returned " + A);
michael@0 11 }
michael@0 12 catch (e)
michael@0 13 {
michael@0 14 assertEq(e instanceof TypeError, true,
michael@0 15 "deleting O[3] should have caused a TypeError");
michael@0 16 }
michael@0 17
michael@0 18 assertEq(O.length, 6); // setting length not reached
michael@0 19 assertEq(A, undefined); // return value not reached
michael@0 20
michael@0 21 assertEq(O[5], undefined); // deletion reached
michael@0 22 assertEq(O[4], undefined); // deletion reached
michael@0 23 assertEq(O[3], 4); // deletion caused exception
michael@0 24 assertEq(O[2], 3); // deletion not reached
michael@0 25 assertEq(O[1], 2); // deletion not reached
michael@0 26 assertEq(O[0], 1); // deletion not reached

mercurial