Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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}"); |