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 // for-of can iterate arguments objects.
3 load(libdir + "iteration.js");
5 // Arguments objects do not have a .@@iterator() method by default.
6 // Install one on Object.prototype.
7 Object.prototype[std_iterator] = Array.prototype[std_iterator];
9 var s;
10 function test() {
11 for (var v of arguments)
12 s += v;
13 }
15 s = '';
16 test();
17 assertEq(s, '');
19 s = '';
20 test('x', 'y');
21 assertEq(s, 'xy');