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 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 * Contributor: Dave Herman
5 */
7 function earlyError(src) {
8 var threw;
9 try {
10 eval(src);
11 threw = false;
12 } catch (expected) {
13 threw = true;
14 }
15 assertEq(threw, true);
16 }
18 earlyError("'use strict'; let (x) 42;");
19 earlyError("function f() { 'use strict'; let (x) 42;");
20 earlyError("'use strict'; function id(x) { return x } let (a=1) a ? f : x++(42);");
21 earlyError("function id(x) { return x } function f() { 'use strict'; let (a=1) a ? f : x++(42); }");
22 earlyError("'use strict'; let (x=2, y=3) x=3, y=13");
23 earlyError("function f() { 'use strict'; let (x=2, y=3) x=3, y=13 }");
25 x = "global";
26 (let (x=2, y=3) x=3, y=13);
27 assertEq(x, "global");
28 assertEq(y, 13);
30 // https://bugzilla.mozilla.org/show_bug.cgi?id=569464#c12
31 g = (let (x=7) x*x for each (x in [1,2,3]));
32 for (let y in g) {
33 assertEq(y, 49);
34 }
36 reportCompare(0, 0, "In strict mode, let expression statements are disallowed.");