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 var o = { };
2 for (var i = 0; i <= 50; i++)
3 o[i] = i;
5 Object.defineProperty(o, "51", { get: assertEq });
7 var threw = 0;
8 function g(o, i) {
9 try {
10 assertEq(o[i], i);
11 } catch (e) {
12 threw++;
13 }
14 }
16 function f() {
17 for (var i = 0; i <= 51; i++)
18 g(o, i);
19 }
21 f();
22 f();
23 f();
24 assertEq(threw, 3);