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.
2 function f1() {};
3 new f1();
5 function f2() {
6 try{} catch (x) {}
7 };
8 new f2();
10 function f3() {
11 for (var j = 0; j < 100; j++) {}
12 };
13 new f3();
15 function notEager1(){
16 function g1() {};
17 new g1();
18 }
19 for (var i = 0; i < 100; i++)
20 notEager1();
22 function notEager2(){
23 function g2() {};
24 new g2();
25 }
26 for (var i = 0; i < 100; i++)
27 notEager2();
29 function notEager3(){
30 function g3() {
31 for (var j = 0; j < 100; j++) {}
32 };
33 new g3();
34 }
35 for (var i = 0; i < 100; i++)
36 notEager3();