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 summary = '';
2 function printStatus (msg) {
3 var lines = msg.split ("\n");
4 }
5 evaluate("\
6 function f() {\
7 var ss = [\
8 new f(Int8Array, propertyIsEnumerable, '[let (x = 3, y = 4) x].map(0)')\
9 ];\
10 }\
11 try {\
12 f();\
13 } catch (e) {}\
14 gczeal(4);\
15 printStatus (summary);\
16 ");
17 evaluate("\
18 function g(n, h) {\
19 var a = f;\
20 if (n <= 0) \
21 return f; \
22 var t = g(n - 1, h);\
23 var r = function(x) { };\
24 }\
25 g(80, f);\
26 ");