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