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 var g = newGlobal();
3 var array = g.eval("new Array(1,2,3)");
4 assertEq([array,array].concat().toString(), "1,2,3,1,2,3");
5 assertEq(Array.isArray(array), true);
7 var number = g.eval("new Number(42)");
8 var bool = g.eval("new Boolean(false)");
9 var string = g.eval("new String('ponies')");
10 assertEq(JSON.stringify({n:number, b:bool, s:string}), "{\"n\":42,\"b\":false,\"s\":\"ponies\"}");
11 assertEq(JSON.stringify({arr:array}), "{\"arr\":[1,2,3]}");
12 assertEq(JSON.stringify({2:'ponies', unicorns:'not real'}, array), "{\"2\":\"ponies\"}");
13 assertEq(JSON.stringify({42:true, ponies:true, unicorns:'sad'}, [number, string]), "{\"42\":true,\"ponies\":true}");
14 assertEq(JSON.stringify({a:true,b:false}, undefined, number), "{\n \"a\": true,\n \"b\": false\n}");
15 assertEq(JSON.stringify({a:true,b:false}, undefined, string), "{\nponies\"a\": true,\nponies\"b\": false\n}");