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 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* |
michael@0 | 3 | * Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | * http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 5 | * Contributor: Robert Sayre |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | |
michael@0 | 9 | //----------------------------------------------------------------------------- |
michael@0 | 10 | var BUGNUMBER = 366941; |
michael@0 | 11 | var summary = 'Destructuring enumerations, iterations'; |
michael@0 | 12 | var actual = ''; |
michael@0 | 13 | var expect = ''; |
michael@0 | 14 | |
michael@0 | 15 | |
michael@0 | 16 | //----------------------------------------------------------------------------- |
michael@0 | 17 | test(); |
michael@0 | 18 | //----------------------------------------------------------------------------- |
michael@0 | 19 | |
michael@0 | 20 | function test() |
michael@0 | 21 | { |
michael@0 | 22 | enterFunc ('test'); |
michael@0 | 23 | printBugNumber(BUGNUMBER); |
michael@0 | 24 | printStatus (summary); |
michael@0 | 25 | |
michael@0 | 26 | var list1 = [[1,2],[3,4],[5,6]]; |
michael@0 | 27 | var list2 = [[1,2,3],[4,5,6],[7,8,9]]; |
michael@0 | 28 | |
michael@0 | 29 | expect = '1,2;3,4;5,6;'; |
michael@0 | 30 | actual = ''; |
michael@0 | 31 | |
michael@0 | 32 | for each (var [foo, bar] in list1) { |
michael@0 | 33 | actual += foo + "," + bar + ";"; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | reportCompare(expect, actual, summary + ': 1'); |
michael@0 | 37 | |
michael@0 | 38 | expect = '1,2,3;4,5,6;7,8,9;'; |
michael@0 | 39 | actual = ''; |
michael@0 | 40 | for each (var [foo, bar, baz] in list2) { |
michael@0 | 41 | actual += foo + "," + bar + "," + baz + ";"; |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | reportCompare(expect, actual, summary + ': 2'); |
michael@0 | 45 | |
michael@0 | 46 | function gen(list) { |
michael@0 | 47 | for each (var test in list) { |
michael@0 | 48 | yield test; |
michael@0 | 49 | } |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | var iter1 = gen(list1); |
michael@0 | 53 | |
michael@0 | 54 | expect = '1,2;3,4;5,6;'; |
michael@0 | 55 | actual = ''; |
michael@0 | 56 | |
michael@0 | 57 | for (var [foo, bar] in iter1) { |
michael@0 | 58 | actual += foo + "," + bar + ";"; |
michael@0 | 59 | } |
michael@0 | 60 | |
michael@0 | 61 | reportCompare(expect, actual, summary + ': 3'); |
michael@0 | 62 | |
michael@0 | 63 | var iter2 = gen(list2); |
michael@0 | 64 | expect = '1,2,3;4,5,6;7,8,9;'; |
michael@0 | 65 | actual = ''; |
michael@0 | 66 | |
michael@0 | 67 | for (var [foo, bar, baz] in iter2) { |
michael@0 | 68 | actual += foo + "," + bar + "," + baz + ";"; |
michael@0 | 69 | } |
michael@0 | 70 | |
michael@0 | 71 | reportCompare(expect, actual, summary + ': 4'); |
michael@0 | 72 | |
michael@0 | 73 | exitFunc ('test'); |
michael@0 | 74 | } |