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 test();
2 function test() {
3 var catch1, catch2, catch3, finally1, finally2, finally3;
4 function gen() {
5 yield 1;
6 try {
7 try {
8 try {
9 yield 1;
10 } finally {
11 test();
12 }
13 } catch (e) {
14 finally2 = true;
15 }
16 } catch (e) { }
17 }
18 iter = gen();
19 iter.next();
20 iter.next();
21 iter.close();
22 gc();
23 }