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 f(v)
2 {
3 return v.x + v.x + v.y;
4 }
6 assertEq(f({ x: 1, y: 2 }), 4);
7 assertEq(f({ __proto__: {x: 1, y: 2} }), 4);
8 assertEq(f({ __proto__: {x: 0, y: 2}, x: 1 }), 4);
10 // Ensure there is no aliasing.
11 var global = 1;
12 assertEq(f(Object.defineProperty({ y : 2 }, "x", { get : function(){ return global++; } })), 5);