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.
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 */
6 var o = {__iterator__:null, a:1, b:2, c:3}
7 var expect = '__iterator__,a,b,c,';
8 var actual = '';
10 try {
11 for (var i in o)
12 actual += i + ',';
13 } catch (e) {
14 actual = '' + e;
15 if (/invalid __iterator__ value/.test(actual) ||
16 /null is not a function/.test(actual)) {
17 expect = actual;
18 }
19 }
21 reportCompare(expect, actual, "ok");