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 function TestCase(n, d, e, a) {}
2 function reportCompare (expected, actual, description) {
3 var testcase = new TestCase("unknown-test-name", description, expected, actual);
4 }
5 var status = 'Testing scope after changing obj.__proto__';
6 function test() {
7 let ( actual = [ ] ) TestCase .__proto__ = null;
8 reportCompare (expect, actual, status);
9 }
10 var actual = 'error';
11 var expect = 'error';
12 for (i = 0; i < 12000; i++) {
13 test();
14 }