Sat, 03 Jan 2015 20:18:00 +0100
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 | // Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | // http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 3 | |
michael@0 | 4 | var gTestfile = 'stringify-replacer-array-hijinks.js'; |
michael@0 | 5 | //----------------------------------------------------------------------------- |
michael@0 | 6 | var BUGNUMBER = 648471; |
michael@0 | 7 | var summary = |
michael@0 | 8 | "Better/more correct handling for replacer arrays with getter array index " + |
michael@0 | 9 | "properties"; |
michael@0 | 10 | |
michael@0 | 11 | print(BUGNUMBER + ": " + summary); |
michael@0 | 12 | |
michael@0 | 13 | /************** |
michael@0 | 14 | * BEGIN TEST * |
michael@0 | 15 | **************/ |
michael@0 | 16 | |
michael@0 | 17 | var bigOdd = Math.pow(2, 50) + 1; |
michael@0 | 18 | |
michael@0 | 19 | function two() |
michael@0 | 20 | { |
michael@0 | 21 | return Math.random() < 0.5 ? 2 : "2"; |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | assertEq(JSON.stringify({ 1: 1 }, [1, 1]), '{"1":1}'); |
michael@0 | 25 | |
michael@0 | 26 | assertEq(JSON.stringify({ 1: 1 }, [1, "1"]), '{"1":1}'); |
michael@0 | 27 | |
michael@0 | 28 | assertEq(JSON.stringify({ 1: 1 }, [1, bigOdd % two()]), '{"1":1}'); |
michael@0 | 29 | |
michael@0 | 30 | assertEq(JSON.stringify({ 1: 1 }, ["1", 1]), '{"1":1}'); |
michael@0 | 31 | |
michael@0 | 32 | assertEq(JSON.stringify({ 1: 1 }, ["1", "1"]), '{"1":1}'); |
michael@0 | 33 | |
michael@0 | 34 | assertEq(JSON.stringify({ 1: 1 }, ["1", bigOdd % two()]), '{"1":1}'); |
michael@0 | 35 | |
michael@0 | 36 | assertEq(JSON.stringify({ 1: 1 }, [bigOdd % two(), 1]), '{"1":1}'); |
michael@0 | 37 | |
michael@0 | 38 | assertEq(JSON.stringify({ 1: 1 }, [bigOdd % two(), "1"]), '{"1":1}'); |
michael@0 | 39 | |
michael@0 | 40 | assertEq(JSON.stringify({ 1: 1 }, [bigOdd % two(), bigOdd % two()]), '{"1":1}'); |
michael@0 | 41 | |
michael@0 | 42 | |
michael@0 | 43 | assertEq(JSON.stringify({ 1: 1 }, [1, new String(1)]), '{"1":1}'); |
michael@0 | 44 | |
michael@0 | 45 | assertEq(JSON.stringify({ 1: 1 }, [1, new Number(1)]), '{"1":1}'); |
michael@0 | 46 | |
michael@0 | 47 | assertEq(JSON.stringify({ 1: 1 }, ["1", new Number(1)]), '{"1":1}'); |
michael@0 | 48 | |
michael@0 | 49 | assertEq(JSON.stringify({ 1: 1 }, ["1", new String(1)]), '{"1":1}'); |
michael@0 | 50 | |
michael@0 | 51 | assertEq(JSON.stringify({ 1: 1 }, [bigOdd % two(), new Number(1)]), '{"1":1}'); |
michael@0 | 52 | |
michael@0 | 53 | assertEq(JSON.stringify({ 1: 1 }, [bigOdd % two(), new String(1)]), '{"1":1}'); |
michael@0 | 54 | |
michael@0 | 55 | |
michael@0 | 56 | assertEq(JSON.stringify({ 1: 1 }, [new String(1), new String(1)]), '{"1":1}'); |
michael@0 | 57 | |
michael@0 | 58 | assertEq(JSON.stringify({ 1: 1 }, [new String(1), new Number(1)]), '{"1":1}'); |
michael@0 | 59 | |
michael@0 | 60 | assertEq(JSON.stringify({ 1: 1 }, [new Number(1), new String(1)]), '{"1":1}'); |
michael@0 | 61 | |
michael@0 | 62 | assertEq(JSON.stringify({ 1: 1 }, [new Number(1), new Number(1)]), '{"1":1}'); |
michael@0 | 63 | |
michael@0 | 64 | /******************************************************************************/ |
michael@0 | 65 | |
michael@0 | 66 | if (typeof reportCompare === "function") |
michael@0 | 67 | reportCompare(true, true); |
michael@0 | 68 | |
michael@0 | 69 | print("Tests complete"); |