urlmon: Added Seek implementations for streams using cache file.
[wine.git] / dlls / jscript / tests / api.js
blob5a78b3a15a1cc722789c0afac28ee3b3deccc92c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
19 var tmp, i;
21 var bigInt = Math.pow(2,40);
23 ok(ScriptEngine() === "JScript", "ScriptEngine() = " + ScriptEngine());
24 ok(ScriptEngine(3) === "JScript", "ScriptEngine(3) = " + ScriptEngine(3));
25 ok(ScriptEngineMajorVersion() === ScriptEngineMajorVersion(2), "ScriptEngineMajorVersion() !== ScriptEngineMajorVersion(2)");
26 ok(ScriptEngineMinorVersion() === ScriptEngineMinorVersion(2), "ScriptEngineMinorVersion() !== ScriptEngineMinorVersion(2)");
27 ok(ScriptEngineBuildVersion() === ScriptEngineBuildVersion(2), "ScriptEngineBuildVersion() !== ScriptEngineBuildVersion(2)");
29 function testNoEnumerables(expr) {
30     for(var iter in obj)
31         ok(false, expr + " has property " + iter);
34 testNoEnumerables("Object");
35 testNoEnumerables("Object.prototype");
36 testNoEnumerables("new Object()");
37 testNoEnumerables("Math");
38 testNoEnumerables("String");
39 testNoEnumerables("String.prototype");
40 testNoEnumerables("new String()");
41 testNoEnumerables("Number");
42 testNoEnumerables("Number.prototype");
43 testNoEnumerables("new Number(1)");
44 testNoEnumerables("ActiveXObject");
45 testNoEnumerables("Array");
46 testNoEnumerables("Array.prototype");
47 testNoEnumerables("new Array()");
48 testNoEnumerables("Boolean");
49 testNoEnumerables("Boolean.prototype");
50 testNoEnumerables("new Boolean()");
51 testNoEnumerables("Date");
52 testNoEnumerables("Date.prototype");
53 testNoEnumerables("new Date()");
54 testNoEnumerables("TypeError");
55 testNoEnumerables("TypeError.prototype");
56 testNoEnumerables("new TypeError()");
57 testNoEnumerables("Function");
58 testNoEnumerables("Function.prototype");
59 testNoEnumerables("testNoEnumerates");
60 testNoEnumerables("VBArray");
62 ok(Object.propertyIsEnumerable("prototype") === false, "Object.prototype is enumerable");
63 ok(Math.propertyIsEnumerable("E") === false, "Math.E is enumerable");
64 ok(Math.propertyIsEnumerable("SQRT2") === false, "Math.SQRT2 is enumerable");
65 ok(Math.propertyIsEnumerable("PI") === false, "Math.PI is enumerable");
66 ok("test".propertyIsEnumerable("length") === false, "'test'.length is enumerable");
67 ok([1].propertyIsEnumerable("length") === false, "[1].length is enumerable");
68 ok((new TypeError()).propertyIsEnumerable("message") === true, "(new TypeError()).message is not enumerable");
69 ok((new TypeError()).propertyIsEnumerable("description") === false, "(new TypeError()).description is enumerable");
70 ok((new TypeError()).propertyIsEnumerable("name") === false, "(new TypeError()).name is enumerable");
71 ok((new TypeError()).propertyIsEnumerable("number") === false, "(new TypeError()).number is enumerable");
72 ok(Object.propertyIsEnumerable.propertyIsEnumerable("length") === false, "Object.propertyIsEnumerable.length is enumerable");
74 tmp = new Object();
75 tmp.test = "1";
76 ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable");
78 tmp = { test: 1 };
79 ok(tmp.propertyIsEnumerable("test"), "tmp.test is not enumerable");
81 ok([1].concat([2]).propertyIsEnumerable("1"), "[1].concat([2]).1 is not enumerable");
82 ok("t.e.s.t".split(".").propertyIsEnumerable("0"), "'test'.split().0 is not enumerable");
84 (function() {
85     ok(arguments.propertyIsEnumerable("0") === false, "arguments.0 is enumerable");
86     ok(arguments.propertyIsEnumerable("length") === false, "arguments.length is enumerable");
87     ok(arguments.propertyIsEnumerable("calee") === false, "arguments.calee is enumerable");
88 })();
90 tmp = [1];
91 tmp.push("");
92 ok(tmp.propertyIsEnumerable("1"), "[1].push() ... 1 is not enumerable");
94 ok([1,2].reverse().propertyIsEnumerable("1"), "[1,2].rverse().1 is not enumerable");
95 ok([1,2].propertyIsEnumerable("0"), "[1,2].0 is not enumerable");
97 i = parseInt("0");
98 ok(i === 0, "parseInt('0') = " + i);
99 i = parseInt("123");
100 ok(i === 123, "parseInt('123') = " + i);
101 i = parseInt("-123");
102 ok(i === -123, "parseInt('-123') = " + i);
103 i = parseInt("0xff");
104 ok(i === 0xff, "parseInt('0xff') = " + i);
105 i = parseInt("11", 8);
106 ok(i === 9, "parseInt('11', 8) = " + i);
107 i = parseInt("1j", 22);
108 ok(i === 41, "parseInt('1j', 32) = " + i);
109 i = parseInt("123", 0);
110 ok(i === 123, "parseInt('123', 0) = " + i);
111 i = parseInt("123", 10, "test");
112 ok(i === 123, "parseInt('123', 10, 'test') = " + i);
113 i = parseInt("11", "8");
114 ok(i === 9, "parseInt('11', '8') = " + i);
115 i = parseInt("010");
116 ok(i === 8, "parseInt('010') = " + i);
117 i = parseInt("");
118 ok(isNaN(i), "parseInt('') = " + i);
119 i = parseInt("0x");
120 ok(isNaN(i), "parseInt('0x') = " + i);
121 i = parseInt("+");
122 ok(isNaN(i), "parseInt('+') = " + i);
123 i = parseInt("-");
124 ok(isNaN(i), "parseInt('-') = " + i);
125 i = parseInt("0x10", 11);
126 ok(i === 0, "parseInt('0x10', 11) = " + i);
127 i = parseInt("010", 7);
128 ok(i === 7, "parseInt('010', 7) = " + i);
129 i = parseInt("123abc");
130 ok(i === 123, "parseInt('123abc') = " + i);
131 i = parseInt("   \t123abc");
132 ok(i === 123, "parseInt('   \\t123abc') = " + i);
133 i = parseInt("abc");
134 ok(isNaN(i), "parseInt('123abc') = " + i);
135 i = parseInt("-12", 11);
136 ok(i === -13, "parseInt('-12') = " + i);
137 i = parseInt("-0x10");
138 ok(i === -16, "parseInt('-0x10') = " + i);
139 i = parseInt("-010");
140 ok(i === -8, "parseInt('-010') = " + i);
141 i = parseInt("123", 0);
142 ok(i === 123, "parseInt('123', 0) = " + i);
143 i = parseInt("0x10", 0);
144 ok(i === 16, "parseInt('123', 0) = " + i);
145 i = parseInt("0x10", 10);
146 ok(i === 0, "parseInt('0x10', 10) = " + i);
147 i = parseInt("0xz");
148 ok(isNaN(i), "parseInt('0xz') = " + i);
149 i = parseInt("1", 1);
150 ok(isNaN(i), "parseInt('1', 1) = " + i);
151 i = parseInt("1", -1);
152 ok(isNaN(i), "parseInt('1', -1) = " + i);
153 i = parseInt("1", 37);
154 ok(isNaN(i), "parseInt('1', 37) = " + i);
155 i = parseInt("1", 36);
156 ok(i === 1, "parseInt('1', 36) = " + i);
158 tmp = encodeURI("abc");
159 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
160 tmp = encodeURI("{abc}");
161 ok(tmp === "%7Babc%7D", "encodeURI('{abc}') = " + tmp);
162 tmp = encodeURI("");
163 ok(tmp === "", "encodeURI('') = " + tmp);
164 tmp = encodeURI("\01\02\03\04");
165 ok(tmp === "%01%02%03%04", "encodeURI('\\01\\02\\03\\04') = " + tmp);
166 tmp = encodeURI("{#@}");
167 ok(tmp === "%7B#@%7D", "encodeURI('{#@}') = " + tmp);
168 tmp = encodeURI("\xa1 ");
169 ok(tmp === "%C2%A1%20", "encodeURI(\\xa1 ) = " + tmp);
170 tmp = encodeURI("\xffff");
171 ok(tmp.length === 8, "encodeURI('\\xffff').length = " + tmp.length);
172 tmp = encodeURI("abcABC123;/?:@&=+$,-_.!~*'()");
173 ok(tmp === "abcABC123;/?:@&=+$,-_.!~*'()", "encodeURI('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
174 tmp = encodeURI("%");
175 ok(tmp === "%25", "encodeURI('%') = " + tmp);
176 tmp = encodeURI();
177 ok(tmp === "undefined", "encodeURI() = " + tmp);
178 tmp = encodeURI("abc", "test");
179 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
181 tmp = decodeURI("abc");
182 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
183 tmp = decodeURI("{abc}");
184 ok(tmp === "{abc}", "decodeURI('{abc}') = " + tmp);
185 tmp = decodeURI("");
186 ok(tmp === "", "decodeURI('') = " + tmp);
187 tmp = decodeURI("\01\02\03\04");
188 ok(tmp === "\01\02\03\04", "decodeURI('\\01\\02\\03\\04') = " + tmp);
189 tmp = decodeURI();
190 ok(tmp === "undefined", "decodeURI() = " + tmp);
191 tmp = decodeURI("abc", "test");
192 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
193 tmp = decodeURI("%7babc%7d");
194 ok(tmp === "{abc}", "decodeURI('%7Babc%7D') = " + tmp);
195 tmp = decodeURI("%01%02%03%04");
196 ok(tmp === "\01\02\03\04", "decodeURI('%01%02%03%04') = " + tmp);
197 tmp = decodeURI("%C2%A1%20");
198 ok(tmp === "\xa1 ", "decodeURI('%C2%A1%20') = " + tmp);
199 tmp = decodeURI("%C3%BFff");
200 ok(tmp.length === 3, "decodeURI('%C3%BFff').length = " + tmp.length);
202 tmp = encodeURIComponent("abc");
203 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
204 dec = decodeURIComponent(tmp);
205 ok(dec === "abc", "decodeURIComponent('" + tmp + "') = " + dec);
206 tmp = encodeURIComponent("{abc}");
207 ok(tmp === "%7Babc%7D", "encodeURIComponent('{abc}') = " + tmp);
208 dec = decodeURIComponent(tmp);
209 ok(dec === "{abc}", "decodeURIComponent('" + tmp + "') = " + dec);
210 tmp = encodeURIComponent("");
211 ok(tmp === "", "encodeURIComponent('') = " + tmp);
212 dec = decodeURIComponent(tmp);
213 ok(dec === "", "decodeURIComponent('" + tmp + "') = " + dec);
214 tmp = encodeURIComponent("\01\02\03\04");
215 ok(tmp === "%01%02%03%04", "encodeURIComponent('\\01\\02\\03\\04') = " + tmp);
216 dec = decodeURIComponent(tmp);
217 ok(dec === "\01\02\03\04", "decodeURIComponent('" + tmp + "') = " + dec);
218 tmp = encodeURIComponent("{#@}");
219 ok(tmp === "%7B%23%40%7D", "encodeURIComponent('{#@}') = " + tmp);
220 dec = decodeURIComponent(tmp);
221 ok(dec === "{#@}", "decodeURIComponent('" + tmp + "') = " + dec);
222 tmp = encodeURIComponent("\xa1 ");
223 ok(tmp === "%C2%A1%20", "encodeURIComponent(\\xa1 ) = " + tmp);
224 dec = decodeURIComponent(tmp);
225 ok(dec === "\xa1 ", "decodeURIComponent('" + tmp + "') = " + dec);
226 tmp = encodeURIComponent("\xffff");
227 ok(tmp.length === 8, "encodeURIComponent('\\xffff').length = " + tmp.length);
228 dec = decodeURIComponent(tmp);
229 ok(dec === "\xffff", "decodeURIComponent('" + tmp + "') = " + dec);
230 tmp = encodeURIComponent("abcABC123;/?:@&=+$,-_.!~*'()");
231 ok(tmp === "abcABC123%3B%2F%3F%3A%40%26%3D%2B%24%2C-_.!~*'()", "encodeURIComponent('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
232 dec = decodeURIComponent(tmp);
233 ok(dec === "abcABC123;/?:@&=+$,-_.!~*'()", "decodeURIComponent('" + tmp + "') = " + dec);
234 tmp = encodeURIComponent();
235 ok(tmp === "undefined", "encodeURIComponent() = " + tmp);
236 tmp = encodeURIComponent("abc", "test");
237 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
238 dec = decodeURIComponent();
239 ok(dec === "undefined", "decodeURIComponent() = " + dec);
240 dec = decodeURIComponent("abc", "test");
241 ok(dec === "abc", "decodeURIComponent('abc') = " + dec);
243 tmp = escape("abc");
244 ok(tmp === "abc", "escape('abc') = " + tmp);
245 tmp = escape("");
246 ok(tmp === "", "escape('') = " + tmp);
247 tmp = escape("a1b c!d+e@*-_+./,");
248 ok(tmp === "a1b%20c%21d+e@*-_+./%2C", "escape('a1b c!d+e@*-_+./,') = " + tmp);
249 tmp = escape();
250 ok(tmp === "undefined", "escape() = " + tmp);
251 tmp = escape('\u1234\123\xf3');
252 ok(tmp == "%u1234S%F3", "escape('\u1234\123\xf3') = " + tmp);
254 tmp = unescape("abc");
255 ok(tmp === "abc", "unescape('abc') = " + tmp);
256 tmp = unescape("");
257 ok(tmp === "", "unescape('') = " + tmp);
258 tmp = unescape("%%%");
259 ok(tmp === "%%%", "unescape('%%%') = " + tmp);
260 tmp = unescape();
261 ok(tmp === "undefined", "unescape() = " + tmp);
262 tmp = unescape("%54%65s%u0074");
263 ok(tmp === "Test", "unescape('%54%65s%u0074') = " + tmp);
265 tmp = "aA1~`!@#$%^&*()_+=-][{}';:/.,<>?\|";
266 ok(escape(tmp) === "aA1%7E%60%21@%23%24%25%5E%26*%28%29_+%3D-%5D%5B%7B%7D%27%3B%3A/.%2C%3C%3E%3F%7C", "escape('" + tmp + "') = " + escape(tmp));
267 ok(unescape(escape(tmp)) === tmp, "unescape(escape('" + tmp + "')) = " + unescape(escape(tmp)));
269 ok(Object.prototype.hasOwnProperty('toString'), "Object.prototype.hasOwnProperty('toString') is false");
270 ok(Object.prototype.hasOwnProperty('isPrototypeOf'), "Object.prototype.hasOwnProperty('isPrototypeOf') is false");
271 ok(Function.prototype.hasOwnProperty('call'), "Function.prototype.hasOwnProperty('call') is false");
273 obj = new Object();
275 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
276 ok(!obj.hasOwnProperty('isPrototypeOf'), "obj.hasOwnProperty('isPrototypeOf') is true");
277 ok(!Object.hasOwnProperty('toString'), "Object.hasOwnProperty('toString') is true");
278 ok(!Object.hasOwnProperty('isPrototypeOf'), "Object.hasOwnProperty('isPrototypeOf') is true");
279 ok(!parseFloat.hasOwnProperty('call'), "parseFloat.hasOwnProperty('call') is true");
280 ok(!Function.hasOwnProperty('call'), "Function.hasOwnProperty('call') is true");
282 obj = new Array();
283 ok(Array.prototype.hasOwnProperty('sort'), "Array.prototype.hasOwnProperty('sort') is false");
284 ok(Array.prototype.hasOwnProperty('length'), "Array.prototype.hasOwnProperty('length') is false");
285 ok(!obj.hasOwnProperty('sort'), "obj.hasOwnProperty('sort') is true");
286 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is true");
288 obj = new Boolean(false);
289 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
290 ok(!Boolean.hasOwnProperty('toString'), "Boolean.hasOwnProperty('toString') is true");
291 ok(Boolean.prototype.hasOwnProperty('toString'), "Boolean.prototype.hasOwnProperty('toString') is false");
293 obj = new Date();
294 ok(!obj.hasOwnProperty('getTime'), "obj.hasOwnProperty('getTime') is true");
295 ok(!Date.hasOwnProperty('getTime'), "Date.hasOwnProperty('getTime') is true");
296 ok(Date.prototype.hasOwnProperty('getTime'), "Date.prototype.hasOwnProperty('getTime') is false");
298 obj = new Number();
299 ok(!obj.hasOwnProperty('toFixed'), "obj.hasOwnProperty('toFixed') is true");
300 ok(!Number.hasOwnProperty('toFixed'), "Number.hasOwnProperty('toFixed') is true");
301 ok(Number.prototype.hasOwnProperty('toFixed'), "Number.prototype.hasOwnProperty('toFixed') is false");
303 obj = /x/;
304 ok(!obj.hasOwnProperty('exec'), "obj.hasOwnProperty('exec') is true");
305 ok(obj.hasOwnProperty('source'), "obj.hasOwnProperty('source') is false");
306 ok(!RegExp.hasOwnProperty('exec'), "RegExp.hasOwnProperty('exec') is true");
307 ok(!RegExp.hasOwnProperty('source'), "RegExp.hasOwnProperty('source') is true");
308 ok(RegExp.prototype.hasOwnProperty('source'), "RegExp.prototype.hasOwnProperty('source') is false");
310 obj = new String();
311 ok(!obj.hasOwnProperty('charAt'), "obj.hasOwnProperty('charAt') is true");
312 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is false");
313 ok(!String.hasOwnProperty('charAt'), "String.hasOwnProperty('charAt') is true");
314 ok(String.prototype.hasOwnProperty('charAt'), "String.prototype.hasOwnProperty('charAt') is false");
315 ok(String.prototype.hasOwnProperty('length'), "String.prototype.hasOwnProperty('length') is false");
317 tmp = "" + new Object();
318 ok(tmp === "[object Object]", "'' + new Object() = " + tmp);
319 (tmp = new Array).f = Object.prototype.toString;
320 ok(tmp.f() === "[object Array]", "tmp.f() = " + tmp.f());
321 (tmp = new Boolean).f = Object.prototype.toString;
322 ok(tmp.f() === "[object Boolean]", "tmp.f() = " + tmp.f());
323 (tmp = new Date).f = Object.prototype.toString;
324 ok(tmp.f() === "[object Date]", "tmp.f() = " + tmp.f());
325 (tmp = function() {}).f = Object.prototype.toString;
326 ok(tmp.f() === "[object Function]", "tmp.f() = " + tmp.f());
327 Math.f = Object.prototype.toString;
328 ok(Math.f() === "[object Math]", "tmp.f() = " + tmp.f());
329 (tmp = new Number).f = Object.prototype.toString;
330 ok(tmp.f() === "[object Number]", "tmp.f() = " + tmp.f());
331 (tmp = new RegExp("")).f = Object.prototype.toString;
332 ok(tmp.f() === "[object RegExp]", "tmp.f() = " + tmp.f());
333 (tmp = new String).f = Object.prototype.toString;
334 ok(tmp.f() === "[object String]", "tmp.f() = " + tmp.f());
335 tmp = Object.prototype.toString.call(testObj);
336 ok(tmp === "[object Object]", "toString.call(testObj) = " + tmp);
337 tmp = Object.prototype.toString.call(this);
338 ok(tmp === "[object Object]", "toString.call(this) = " + tmp);
339 (function () { tmp = Object.prototype.toString.call(arguments); })();
340 ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp);
341 tmp = Object.prototype.toString.call(new VBArray(createArray()));
342 ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp);
344 function TSTestConstr() {}
345 TSTestConstr.prototype = { toString: function() { return "test"; } };
346 obj = new TSTestConstr();
347 ok(obj.toString() === "test", "obj.toString() = " + obj.toString());
349 ok(Object(1) instanceof Number, "Object(1) is not instance of Number");
350 ok(Object("") instanceof String, "Object('') is not instance of String");
351 ok(Object(false) instanceof Boolean, "Object(false) is not instance of Boolean");
353 ok(new Object(1) instanceof Number, "Object(1) is not instance of Number");
354 ok(new Object("") instanceof String, "Object('') is not instance of String");
355 ok(new Object(false) instanceof Boolean, "Object(false) is not instance of Boolean");
357 obj = new Object();
358 ok(Object(obj) === obj, "Object(obj) !== obj");
360 ok(typeof(Object()) === "object", "typeof(Object()) !== 'object'");
361 ok(typeof(Object(undefined)) === "object", "typeof(Object(undefined)) !== 'object'");
362 ok(typeof(Object(null)) === "object", "typeof(Object(null)) !== 'object'");
363 ok(typeof(Object(nullDisp)) === "object", "typeof(Object(nullDisp)) !== 'object'");
365 ok(Object(nullDisp) != nullDisp, "Object(nullDisp) == nullDisp");
366 ok(new Object(nullDisp) != nullDisp, "new Object(nullDisp) == nullDisp");
368 ok(Object(testObj) === testObj, "Object(testObj) != testObj\n");
369 ok(new Object(testObj) === testObj, "new Object(testObj) != testObj\n");
371 tmp = new Object();
372 ok(Object(tmp) === tmp, "Object(tmp) != tmp");
373 ok(new Object(tmp) === tmp, "new Object(tmp) != tmp");
375 var obj = new Object();
376 obj.toString = function (x) {
377     ok(arguments.length === 0, "arguments.length = " + arguments.length);
378     return "test";
380 ok((tmp = obj.toLocaleString()) === "test", "obj.toLocaleString() = " + tmp);
381 ok((tmp = obj.toLocaleString(1)) === "test", "obj.toLocaleString(1) = " + tmp);
382 ok(obj === obj.valueOf(), "obj !== obj.valueOf");
384 ok("".length === 0, "\"\".length = " + "".length);
385 ok(getVT("".length) == "VT_I4", "\"\".length = " + "".length);
386 ok("abc".length === 3, "\"abc\".length = " + "abc".length);
387 ok(String.prototype.length === 0, "String.prototype.length = " + String.prototype.length);
389 tmp = "".toString();
390 ok(tmp === "", "''.toString() = " + tmp);
391 tmp = "test".toString();
392 ok(tmp === "test", "''.toString() = " + tmp);
393 tmp = "test".toString(3);
394 ok(tmp === "test", "''.toString(3) = " + tmp);
396 tmp = "".valueOf();
397 ok(tmp === "", "''.valueOf() = " + tmp);
398 tmp = "test".valueOf();
399 ok(tmp === "test", "''.valueOf() = " + tmp);
400 tmp = "test".valueOf(3);
401 ok(tmp === "test", "''.valueOf(3) = " + tmp);
403 var str = new String("test");
404 ok(str.toString() === "test", "str.toString() = " + str.toString());
405 var str = new String();
406 ok(str.toString() === "", "str.toString() = " + str.toString());
407 var str = new String("test", "abc");
408 ok(str.toString() === "test", "str.toString() = " + str.toString());
410 var strObj = new Object();
411 strObj.toString = function() { return "abcd" };
412 strObj.substr = String.prototype.substr;
413 strObj.lastIndexOf = String.prototype.lastIndexOf;
415 tmp = "value " + str;
416 ok(tmp === "value test", "'value ' + str = " + tmp);
418 tmp = String();
419 ok(tmp === "", "String() = " + tmp);
420 tmp = String(false);
421 ok(tmp === "false", "String(false) = " + tmp);
422 tmp = String(null);
423 ok(tmp === "null", "String(null) = " + tmp);
424 tmp = String("test");
425 ok(tmp === "test", "String('test') = " + tmp);
426 tmp = String("test", "abc");
427 ok(tmp === "test", "String('test','abc') = " + tmp);
429 tmp = "abc".charAt(0);
430 ok(tmp === "a", "'abc',charAt(0) = " + tmp);
431 tmp = "abc".charAt(1);
432 ok(tmp === "b", "'abc',charAt(1) = " + tmp);
433 tmp = "abc".charAt(2);
434 ok(tmp === "c", "'abc',charAt(2) = " + tmp);
435 tmp = "abc".charAt(3);
436 ok(tmp === "", "'abc',charAt(3) = " + tmp);
437 tmp = "abc".charAt(4);
438 ok(tmp === "", "'abc',charAt(4) = " + tmp);
439 tmp = "abc".charAt();
440 ok(tmp === "a", "'abc',charAt() = " + tmp);
441 tmp = "abc".charAt(-1);
442 ok(tmp === "", "'abc',charAt(-1) = " + tmp);
443 tmp = "abc".charAt(0,2);
444 ok(tmp === "a", "'abc',charAt(0.2) = " + tmp);
445 tmp = "abc".charAt(NaN);
446 ok(tmp === "a", "'abc',charAt(NaN) = " + tmp);
447 tmp = "abc".charAt(bigInt);
448 ok(tmp === "", "'abc',charAt(bigInt) = " + tmp);
450 tmp = "abc".charCodeAt(0);
451 ok(tmp === 0x61, "'abc'.charCodeAt(0) = " + tmp);
452 tmp = "abc".charCodeAt(1);
453 ok(tmp === 0x62, "'abc'.charCodeAt(1) = " + tmp);
454 tmp = "abc".charCodeAt(2);
455 ok(tmp === 0x63, "'abc'.charCodeAt(2) = " + tmp);
456 tmp = "abc".charCodeAt();
457 ok(tmp === 0x61, "'abc'.charCodeAt() = " + tmp);
458 tmp = "abc".charCodeAt(true);
459 ok(tmp === 0x62, "'abc'.charCodeAt(true) = " + tmp);
460 tmp = "abc".charCodeAt(0,2);
461 ok(tmp === 0x61, "'abc'.charCodeAt(0,2) = " + tmp);
462 tmp = "\u49F4".charCodeAt(0);
463 ok(tmp === 0x49F4, "'\u49F4'.charCodeAt(0) = " + tmp);
464 tmp = "\052".charCodeAt(0);
465 ok(tmp === 0x2A, "'\052'.charCodeAt(0) = " + tmp);
466 tmp = "\xa2".charCodeAt(0);
467 ok(tmp === 0xA2, "'\xa2'.charCodeAt(0) = " + tmp);
468 tmp = "abc".charCodeAt(bigInt);
469 ok(isNaN(tmp), "'abc'.charCodeAt(bigInt) = " + tmp);
471 tmp = "abcd".substring(1,3);
472 ok(tmp === "bc", "'abcd'.substring(1,3) = " + tmp);
473 tmp = "abcd".substring(-1,3);
474 ok(tmp === "abc", "'abcd'.substring(-1,3) = " + tmp);
475 tmp = "abcd".substring(1,6);
476 ok(tmp === "bcd", "'abcd'.substring(1,6) = " + tmp);
477 tmp = "abcd".substring(3,1);
478 ok(tmp === "bc", "'abcd'.substring(3,1) = " + tmp);
479 tmp = "abcd".substring(2,2);
480 ok(tmp === "", "'abcd'.substring(2,2) = " + tmp);
481 tmp = "abcd".substring(true,"3");
482 ok(tmp === "bc", "'abcd'.substring(true,'3') = " + tmp);
483 tmp = "abcd".substring(1,3,2);
484 ok(tmp === "bc", "'abcd'.substring(1,3,2) = " + tmp);
485 tmp = "abcd".substring();
486 ok(tmp === "abcd", "'abcd'.substring() = " + tmp);
488 tmp = "abcd".substr(1,3);
489 ok(tmp === "bcd", "'abcd'.substr(1,3) = " + tmp);
490 tmp = "abcd".substr(-1,3);
491 ok(tmp === "abc", "'abcd'.substr(-1,3) = " + tmp);
492 tmp = "abcd".substr(1,6);
493 ok(tmp === "bcd", "'abcd'.substr(1,6) = " + tmp);
494 tmp = "abcd".substr(2,-1);
495 ok(tmp === "", "'abcd'.substr(3,1) = " + tmp);
496 tmp = "abcd".substr(2,0);
497 ok(tmp === "", "'abcd'.substr(2,2) = " + tmp);
498 tmp = "abcd".substr(true,"3");
499 ok(tmp === "bcd", "'abcd'.substr(true,'3') = " + tmp);
500 tmp = "abcd".substr(1,3,2);
501 ok(tmp === "bcd", "'abcd'.substr(1,3,2) = " + tmp);
502 tmp = "abcd".substr();
503 ok(tmp === "abcd", "'abcd'.substr() = " + tmp);
504 tmp = strObj.substr(1,1);
505 ok(tmp === "b", "'abcd'.substr(1,3) = " + tmp);
507 tmp = "abcd".slice(1,3);
508 ok(tmp === "bc", "'abcd'.slice(1,3) = " + tmp);
509 tmp = "abcd".slice(1,-1);
510 ok(tmp === "bc", "'abcd'.slice(1,-1) = " + tmp);
511 tmp = "abcd".slice(-3,3);
512 ok(tmp === "bc", "'abcd'.slice(-3,3) = " + tmp);
513 tmp = "abcd".slice(-6,3);
514 ok(tmp === "abc", "'abcd'.slice(-6,3) = " + tmp);
515 tmp = "abcd".slice(3,1);
516 ok(tmp === "", "'abcd'.slice(3,1) = " + tmp);
517 tmp = "abcd".slice(true,3);
518 ok(tmp === "bc", "'abcd'.slice(true,3) = " + tmp);
519 tmp = "abcd".slice();
520 ok(tmp === "abcd", "'abcd'.slice() = " + tmp);
521 tmp = "abcd".slice(1);
522 ok(tmp === "bcd", "'abcd'.slice(1) = " + tmp);
524 tmp = "abc".concat(["d",1],2,false);
525 ok(tmp === "abcd,12false", "concat returned " + tmp);
526 var arr = new Array(2,"a");
527 arr.concat = String.prototype.concat;
528 tmp = arr.concat("d");
529 ok(tmp === "2,ad", "arr.concat = " + tmp);
531 m = "a+bcabc".match("a+");
532 ok(typeof(m) === "object", "typeof m is not object");
533 ok(m.length === 1, "m.length is not 1");
534 ok(m["0"] === "a", "m[0] is not \"a\"");
536 r = "- [test] -".replace("[test]", "success");
537 ok(r === "- success -", "r = " + r + " expected '- success -'");
539 r = "- [test] -".replace("[test]", "success", "test");
540 ok(r === "- success -", "r = " + r + " expected '- success -'");
542 r = "test".replace();
543 ok(r === "test", "r = " + r + " expected 'test'");
545 function replaceFunc3(m, off, str) {
546     ok(arguments.length === 3, "arguments.length = " + arguments.length);
547     ok(m === "[test]", "m = " + m + " expected [test]");
548     ok(off === 1, "off = " + off + " expected 0");
549     ok(str === "-[test]-", "str = " + arguments[3]);
550     return "ret";
553 r = "-[test]-".replace("[test]", replaceFunc3);
554 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
556 r = "-[test]-".replace("[test]", replaceFunc3, "test");
557 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
559 r = "x,x,x".replace("x", "y");
560 ok(r === "y,x,x", "r = " + r + " expected 'y,x,x'");
562 r = "x,x,x".replace("", "y");
563 ok(r === "yx,x,x", "r = " + r + " expected 'yx,x,x'");
565 r = "x,x,x".replace("", "");
566 ok(r === "x,x,x", "r = " + r + " expected 'x,x,x'");
568 r = "1,2,3".split(",");
569 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
570 ok(r.length === 3, "r.length = " + r.length);
571 ok(r[0] === "1", "r[0] = " + r[0]);
572 ok(r[1] === "2", "r[1] = " + r[1]);
573 ok(r[2] === "3", "r[2] = " + r[2]);
575 r = "1,2,3".split(",*");
576 ok(r.length === 1, "r.length = " + r.length);
577 ok(r[0] === "1,2,3", "r[0] = " + r[0]);
579 r = "123".split("");
580 ok(r.length === 3, "r.length = " + r.length);
581 ok(r[0] === "1", "r[0] = " + r[0]);
582 ok(r[1] === "2", "r[1] = " + r[1]);
583 ok(r[2] === "3", "r[2] = " + r[2]);
585 r = "123".split(2);
586 ok(r.length === 2, "r.length = " + r.length);
587 ok(r[0] === "1", "r[0] = " + r[0]);
588 ok(r[1] === "3", "r[1] = " + r[1]);
590 r = "1,2,".split(",");
591 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
592 ok(r.length === 3, "r.length = " + r.length);
593 ok(r[0] === "1", "r[0] = " + r[0]);
594 ok(r[1] === "2", "r[1] = " + r[1]);
595 ok(r[2] === "", "r[2] = " + r[2]);
597 r = "1,2,3".split(",", 2);
598 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
599 ok(r.length === 2, "r.length = " + r.length);
600 ok(r[0] === "1", "r[0] = " + r[0]);
601 ok(r[1] === "2", "r[1] = " + r[1]);
603 r = "1,2,3".split(",", 0);
604 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
605 ok(r.length === 0, "r.length = " + r.length);
607 r = "1,2,3".split(",", -1);
608 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
609 ok(r.length === 3, "r.length = " + r.length);
610 ok(r[0] === "1", "r[0] = " + r[0]);
611 ok(r[1] === "2", "r[1] = " + r[1]);
612 ok(r[2] === "3", "r[1] = " + r[1]);
614 tmp = "abcd".indexOf("bc",0);
615 ok(tmp === 1, "indexOf = " + tmp);
616 tmp = "abcd".indexOf("bc",1);
617 ok(tmp === 1, "indexOf = " + tmp);
618 tmp = "abcd".indexOf("bc");
619 ok(tmp === 1, "indexOf = " + tmp);
620 tmp = "abcd".indexOf("ac");
621 ok(tmp === -1, "indexOf = " + tmp);
622 tmp = "abcd".indexOf("bc",2);
623 ok(tmp === -1, "indexOf = " + tmp);
624 tmp = "abcd".indexOf("a",0);
625 ok(tmp === 0, "indexOf = " + tmp);
626 tmp = "abcd".indexOf("bc",0,"test");
627 ok(tmp === 1, "indexOf = " + tmp);
628 tmp = "abcd".indexOf();
629 ok(tmp == -1, "indexOf = " + tmp);
630 tmp = "abcd".indexOf("b", bigInt);
631 ok(tmp == -1, "indexOf = " + tmp);
632 tmp = "abcd".indexOf("abcd",0);
633 ok(tmp === 0, "indexOf = " + tmp);
634 tmp = "abcd".indexOf("abcd",1);
635 ok(tmp === -1, "indexOf = " + tmp);
636 tmp = ("ab" + String.fromCharCode(0) + "cd").indexOf(String.fromCharCode(0));
637 ok(tmp === 2, "indexOf = " + tmp);
639 tmp = "abcd".lastIndexOf("bc",1);
640 ok(tmp === 1, "lastIndexOf = " + tmp);
641 tmp = "abcd".lastIndexOf("bc",2);
642 ok(tmp === 1, "lastIndexOf = " + tmp);
643 tmp = "abcd".lastIndexOf("bc");
644 ok(tmp === 1, "lastIndexOf = " + tmp);
645 tmp = "abcd".lastIndexOf("ac");
646 ok(tmp === -1, "lastIndexOf = " + tmp);
647 tmp = "abcd".lastIndexOf("d",10);
648 ok(tmp === 3, "lastIndexOf = " + tmp);
649 tmp = "abcd".lastIndexOf("bc",0,"test");
650 ok(tmp === -1, "lastIndexOf = " + tmp);
651 tmp = "abcd".lastIndexOf();
652 ok(tmp === -1, "lastIndexOf = " + tmp);
653 tmp = "aaaa".lastIndexOf("a",2);
654 ok(tmp == 2, "lastIndexOf = " + tmp);
655 tmp = strObj.lastIndexOf("b");
656 ok(tmp === 1, "lastIndexOf = " + tmp);
657 tmp = "bbb".lastIndexOf("b", bigInt);
658 ok(tmp === 2, "lastIndexOf = " + tmp);
659 tmp = "abcd".lastIndexOf("abcd",4);
660 ok(tmp === 0, "lastIndexOf = " + tmp);
661 tmp = "abcd".lastIndexOf("abcd",0);
662 ok(tmp === 0, "lastIndexOf = " + tmp);
663 tmp = ("ab" + String.fromCharCode(0) + "cd").lastIndexOf(String.fromCharCode(0));
664 ok(tmp === 2, "lastIndexOf = " + tmp);
666 tmp = "".toLowerCase();
667 ok(tmp === "", "''.toLowerCase() = " + tmp);
668 tmp = "test".toLowerCase();
669 ok(tmp === "test", "''.toLowerCase() = " + tmp);
670 tmp = "test".toLowerCase(3);
671 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
672 tmp = "tEsT".toLowerCase();
673 ok(tmp === "test", "''.toLowerCase() = " + tmp);
674 tmp = "tEsT".toLowerCase(3);
675 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
676 tmp = ("tE" + String.fromCharCode(0) + "sT").toLowerCase();
677 ok(tmp === "te" + String.fromCharCode(0) + "st", "''.toLowerCase() = " + tmp);
679 tmp = "".toUpperCase();
680 ok(tmp === "", "''.toUpperCase() = " + tmp);
681 tmp = "TEST".toUpperCase();
682 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
683 tmp = "TEST".toUpperCase(3);
684 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
685 tmp = "tEsT".toUpperCase();
686 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
687 tmp = "tEsT".toUpperCase(3);
688 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
689 tmp = ("tE" + String.fromCharCode(0) + "sT").toUpperCase();
690 ok(tmp === "TE" + String.fromCharCode(0) + "ST", "''.toUpperCase() = " + tmp);
692 tmp = "".anchor();
693 ok(tmp === "<A NAME=\"undefined\"></A>", "''.anchor() = " + tmp);
694 tmp = "".anchor(3);
695 ok(tmp === "<A NAME=\"3\"></A>", "''.anchor(3) = " + tmp);
696 tmp = "".anchor("red");
697 ok(tmp === "<A NAME=\"red\"></A>", "''.anchor('red') = " + tmp);
698 tmp = "test".anchor();
699 ok(tmp === "<A NAME=\"undefined\">test</A>", "'test'.anchor() = " + tmp);
700 tmp = "test".anchor(3);
701 ok(tmp === "<A NAME=\"3\">test</A>", "'test'.anchor(3) = " + tmp);
702 tmp = "test".anchor("green");
703 ok(tmp === "<A NAME=\"green\">test</A>", "'test'.anchor('green') = " + tmp);
705 tmp = "".big();
706 ok(tmp === "<BIG></BIG>", "''.big() = " + tmp);
707 tmp = "".big(3);
708 ok(tmp === "<BIG></BIG>", "''.big(3) = " + tmp);
709 tmp = "test".big();
710 ok(tmp === "<BIG>test</BIG>", "'test'.big() = " + tmp);
711 tmp = "test".big(3);
712 ok(tmp === "<BIG>test</BIG>", "'test'.big(3) = " + tmp);
714 tmp = "".blink();
715 ok(tmp === "<BLINK></BLINK>", "''.blink() = " + tmp);
716 tmp = "".blink(3);
717 ok(tmp === "<BLINK></BLINK>", "''.blink(3) = " + tmp);
718 tmp = "test".blink();
719 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink() = " + tmp);
720 tmp = "test".blink(3);
721 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink(3) = " + tmp);
723 tmp = "".bold();
724 ok(tmp === "<B></B>", "''.bold() = " + tmp);
725 tmp = "".bold(3);
726 ok(tmp === "<B></B>", "''.bold(3) = " + tmp);
727 tmp = "test".bold();
728 ok(tmp === "<B>test</B>", "'test'.bold() = " + tmp);
729 tmp = "test".bold(3);
730 ok(tmp === "<B>test</B>", "'test'.bold(3) = " + tmp);
732 tmp = "".fixed();
733 ok(tmp === "<TT></TT>", "''.fixed() = " + tmp);
734 tmp = "".fixed(3);
735 ok(tmp === "<TT></TT>", "''.fixed(3) = " + tmp);
736 tmp = "test".fixed();
737 ok(tmp === "<TT>test</TT>", "'test'.fixed() = " + tmp);
738 tmp = "test".fixed(3);
739 ok(tmp === "<TT>test</TT>", "'test'.fixed(3) = " + tmp);
741 tmp = "".fontcolor();
742 ok(tmp === "<FONT COLOR=\"undefined\"></FONT>", "''.fontcolor() = " + tmp);
743 tmp = "".fontcolor(3);
744 ok(tmp === "<FONT COLOR=\"3\"></FONT>", "''.fontcolor(3) = " + tmp);
745 tmp = "".fontcolor("red");
746 ok(tmp === "<FONT COLOR=\"red\"></FONT>", "''.fontcolor('red') = " + tmp);
747 tmp = "test".fontcolor();
748 ok(tmp === "<FONT COLOR=\"undefined\">test</FONT>", "'test'.fontcolor() = " + tmp);
749 tmp = "test".fontcolor(3);
750 ok(tmp === "<FONT COLOR=\"3\">test</FONT>", "'test'.fontcolor(3) = " + tmp);
751 tmp = "test".fontcolor("green");
752 ok(tmp === "<FONT COLOR=\"green\">test</FONT>", "'test'.fontcolor('green') = " + tmp);
754 tmp = "".fontsize();
755 ok(tmp === "<FONT SIZE=\"undefined\"></FONT>", "''.fontsize() = " + tmp);
756 tmp = "".fontsize(3);
757 ok(tmp === "<FONT SIZE=\"3\"></FONT>", "''.fontsize(3) = " + tmp);
758 tmp = "".fontsize("red");
759 ok(tmp === "<FONT SIZE=\"red\"></FONT>", "''.fontsize('red') = " + tmp);
760 tmp = "test".fontsize();
761 ok(tmp === "<FONT SIZE=\"undefined\">test</FONT>", "'test'.fontsize() = " + tmp);
762 tmp = "test".fontsize(3);
763 ok(tmp === "<FONT SIZE=\"3\">test</FONT>", "'test'.fontsize(3) = " + tmp);
764 tmp = "test".fontsize("green");
765 ok(tmp === "<FONT SIZE=\"green\">test</FONT>", "'test'.fontsize('green') = " + tmp);
767 tmp = ("".fontcolor()).fontsize();
768 ok(tmp === "<FONT SIZE=\"undefined\"><FONT COLOR=\"undefined\"></FONT></FONT>", "(''.fontcolor()).fontsize() = " + tmp);
770 tmp = "".italics();
771 ok(tmp === "<I></I>", "''.italics() = " + tmp);
772 tmp = "".italics(3);
773 ok(tmp === "<I></I>", "''.italics(3) = " + tmp);
774 tmp = "test".italics();
775 ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp);
776 tmp = "test".italics(3);
777 ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp);
779 tmp = "".link();
780 ok(tmp === "<A HREF=\"undefined\"></A>", "''.link() = " + tmp);
781 tmp = "".link(3);
782 ok(tmp === "<A HREF=\"3\"></A>", "''.link(3) = " + tmp);
783 tmp = "".link("red");
784 ok(tmp === "<A HREF=\"red\"></A>", "''.link('red') = " + tmp);
785 tmp = "test".link();
786 ok(tmp === "<A HREF=\"undefined\">test</A>", "'test'.link() = " + tmp);
787 tmp = "test".link(3);
788 ok(tmp === "<A HREF=\"3\">test</A>", "'test'.link(3) = " + tmp);
789 tmp = "test".link("green");
790 ok(tmp === "<A HREF=\"green\">test</A>", "'test'.link('green') = " + tmp);
792 tmp = "".small();
793 ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp);
794 tmp = "".small(3);
795 ok(tmp === "<SMALL></SMALL>", "''.small(3) = " + tmp);
796 tmp = "test".small();
797 ok(tmp === "<SMALL>test</SMALL>", "'test'.small() = " + tmp);
798 tmp = "test".small(3);
799 ok(tmp === "<SMALL>test</SMALL>", "'test'.small(3) = " + tmp);
801 tmp = "".strike();
802 ok(tmp === "<STRIKE></STRIKE>", "''.strike() = " + tmp);
803 tmp = "".strike(3);
804 ok(tmp === "<STRIKE></STRIKE>", "''.strike(3) = " + tmp);
805 tmp = "test".strike();
806 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike() = " + tmp);
807 tmp = "test".strike(3);
808 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike(3) = " + tmp);
810 tmp = "".sub();
811 ok(tmp === "<SUB></SUB>", "''.sub() = " + tmp);
812 tmp = "".sub(3);
813 ok(tmp === "<SUB></SUB>", "''.sub(3) = " + tmp);
814 tmp = "test".sub();
815 ok(tmp === "<SUB>test</SUB>", "'test'.sub() = " + tmp);
816 tmp = "test".sub(3);
817 ok(tmp === "<SUB>test</SUB>", "'test'.sub(3) = " + tmp);
819 tmp = "".sup();
820 ok(tmp === "<SUP></SUP>", "''.sup() = " + tmp);
821 tmp = "".sup(3);
822 ok(tmp === "<SUP></SUP>", "''.sup(3) = " + tmp);
823 tmp = "test".sup();
824 ok(tmp === "<SUP>test</SUP>", "'test'.sup() = " + tmp);
825 tmp = "test".sup(3);
826 ok(tmp === "<SUP>test</SUP>", "'test'.sup(3) = " + tmp);
828 ok(String.fromCharCode() === "", "String.fromCharCode() = " + String.fromCharCode());
829 ok(String.fromCharCode(65,"66",67) === "ABC", "String.fromCharCode(65,'66',67) = " + String.fromCharCode(65,"66",67));
830 ok(String.fromCharCode(1024*64+65, -1024*64+65) === "AA",
831         "String.fromCharCode(1024*64+65, -1024*64+65) = " + String.fromCharCode(1024*64+65, -1024*64+65));
832 ok(String.fromCharCode(65, NaN, undefined).length === 3,
833         "String.fromCharCode(65, NaN, undefined).length = " + String.fromCharCode(65, NaN, undefined).length);
835 var arr = new Array();
836 ok(typeof(arr) === "object", "arr () is not object");
837 ok((arr.length === 0), "arr.length is not 0");
838 ok(arr["0"] === undefined, "arr[0] is not undefined");
840 var arr = new Array(1, 2, "test");
841 ok(typeof(arr) === "object", "arr (1,2,test) is not object");
842 ok((arr.length === 3), "arr.length is not 3");
843 ok(arr["0"] === 1, "arr[0] is not 1");
844 ok(arr["1"] === 2, "arr[1] is not 2");
845 ok(arr["2"] === "test", "arr[2] is not \"test\"");
847 arr["7"] = true;
848 ok((arr.length === 8), "arr.length is not 8");
850 tmp = "" + [];
851 ok(tmp === "", "'' + [] = " + tmp);
852 tmp = "" + [1,true];
853 ok(tmp === "1,true", "'' + [1,true] = " + tmp);
855 var arr = new Array(6);
856 ok(typeof(arr) === "object", "arr (6) is not object");
857 ok((arr.length === 6), "arr.length is not 6");
858 ok(arr["0"] === undefined, "arr[0] is not undefined");
860 ok(arr.push() === 6, "arr.push() !== 6");
861 ok(arr.push(1) === 7, "arr.push(1) !== 7");
862 ok(arr[6] === 1, "arr[6] != 1");
863 ok(arr.length === 7, "arr.length != 10");
864 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
865 ok(arr[8] === "b", "arr[8] != 'b'");
866 ok(arr.length === 10, "arr.length != 10");
868 var arr = new Object();
869 arr.push = Array.prototype.push;
871 arr.length = 6;
873 ok(arr.push() === 6, "arr.push() !== 6");
874 ok(arr.push(1) === 7, "arr.push(1) !== 7");
875 ok(arr[6] === 1, "arr[6] != 1");
876 ok(arr.length === 7, "arr.length != 10");
877 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
878 ok(arr[8] === "b", "arr[8] != 'b'");
879 ok(arr.length === 10, "arr.length != 10");
881 arr.pop = Array.prototype.pop;
882 ok(arr.pop() === false, "arr.pop() !== false");
883 ok(arr[8] === "b", "arr[8] !== 'b'");
884 ok(arr.pop() === 'b', "arr.pop() !== 'b'");
885 ok(arr[8] === undefined, "arr[8] !== undefined");
887 arr = [3,4,5];
888 tmp = arr.pop();
889 ok(arr.length === 2, "arr.length = " + arr.length);
890 ok(tmp === 5, "pop() = " + tmp);
891 tmp = arr.pop(2);
892 ok(arr.length === 1, "arr.length = " + arr.length);
893 ok(tmp === 4, "pop() = " + tmp);
894 tmp = arr.pop();
895 ok(arr.length === 0, "arr.length = " + arr.length);
896 ok(tmp === 3, "pop() = " + tmp);
897 for(tmp in arr)
898     ok(false, "not deleted " + tmp);
899 tmp = arr.pop();
900 ok(arr.length === 0, "arr.length = " + arr.length);
901 ok(tmp === undefined, "tmp = " + tmp);
902 arr = new Object();
903 arr.pop = Array.prototype.pop;
904 tmp = arr.pop();
905 ok(arr.length === 0, "arr.length = " + arr.length);
906 ok(tmp === undefined, "tmp = " + tmp);
907 arr = [,,,,,];
908 tmp = arr.pop();
909 ok(arr.length === 5, "arr.length = " + arr.length);
910 ok(tmp === undefined, "tmp = " + tmp);
912 function PseudoArray() {
913     this[0] = 0;
915 PseudoArray.prototype = {length: 1};
916 arr = new PseudoArray();
917 Array.prototype.push.call(arr, 2);
918 ok(arr.propertyIsEnumerable("length"), "arr.length is not enumerable");
920 arr = [1,2,null,false,undefined,,"a"];
922 tmp = arr.join();
923 ok(tmp === "1,2,,false,,,a", "arr.join() = " + tmp);
924 tmp = arr.join(";");
925 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
926 tmp = arr.join(";","test");
927 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
928 tmp = arr.join("");
929 ok(tmp === "12falsea", "arr.join('') = " + tmp);
931 tmp = arr.toString();
932 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
933 tmp = arr.toString("test");
934 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
936 arr = ["a", "b"];
938 tmp = arr.join(String.fromCharCode(0));
939 ok(tmp === "a" + String.fromCharCode(0) + "b", "arr.join(String.fromCharCode(0)) = " + tmp);
941 arr = new Object();
942 arr.length = 3;
943 arr[0] = "aa";
944 arr[2] = 2;
945 arr[7] = 3;
946 arr.join = Array.prototype.join;
947 tmp = arr.join(",");
948 ok(arr.length === 3, "arr.length = " + arr.length);
949 ok(tmp === "aa,,2", "tmp = " + tmp);
951 arr = [5,true,2,-1,3,false,"2.5"];
952 tmp = arr.sort(function(x,y) { return y-x; });
953 ok(tmp === arr, "tmp !== arr");
954 tmp = [5,3,"2.5",2,true,false,-1];
955 for(var i=0; i < arr.length; i++)
956     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
958 arr = [5,false,2,0,"abc",3,"a",-1];
959 tmp = arr.sort();
960 ok(tmp === arr, "tmp !== arr");
961 tmp = [-1,0,2,3,5,"a","abc",false];
962 for(var i=0; i < arr.length; i++)
963     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
965 arr = ["a", "b", "ab"];
966 tmp = ["a", "ab", "b"];
967 ok(arr.sort() === arr, "arr.sort() !== arr");
968 for(var i=0; i < arr.length; i++)
969     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
971 arr = new Object();
972 arr.length = 3;
973 arr[0] = 1;
974 arr[2] = "aa";
975 arr.sort = Array.prototype.sort;
976 tmp = arr.sort();
977 ok(arr === tmp, "tmp !== arr");
978 ok(arr[0]===1 && arr[1]==="aa" && arr[2]===undefined, "arr is sorted incorrectly");
980 tmp = [["bb","aa"],["ab","aa"]].sort().toString();
981 ok(tmp === "ab,aa,bb,aa", "sort() = " + tmp);
983 tmp = [["bb","aa"],"ab"].sort().toString();
984 ok(tmp === "ab,bb,aa", "sort() = " + tmp);
986 tmp = [["bb","aa"],"cc"].sort().toString();
987 ok(tmp === "bb,aa,cc", "sort() = " + tmp);
989 tmp = [2,"1"].sort().toString();
990 ok(tmp === "1,2", "sort() = " + tmp);
992 tmp = ["2",1].sort().toString();
993 ok(tmp === "1,2", "sort() = " + tmp);
995 tmp = [,,0,"z"].sort().toString();
996 ok(tmp === "0,z,,", "sort() = " + tmp);
998 tmp = ["a,b",["a","a"],["a","c"]].sort().toString();
999 ok(tmp === "a,a,a,b,a,c", "sort() = " + tmp);
1001 arr = ["1", "2", "3"];
1002 arr.length = 1;
1003 ok(arr.length === 1, "arr.length = " + arr.length);
1004 arr.length = 3;
1005 ok(arr.length === 3, "arr.length = " + arr.length);
1006 ok(arr.toString() === "1,,", "arr.toString() = " + arr.toString());
1008 arr = Array("a","b","c");
1009 ok(arr.toString() === "a,b,c", "arr.toString() = " + arr.toString());
1011 ok(arr.valueOf === Object.prototype.valueOf, "arr.valueOf !== Object.prototype.valueOf");
1012 ok(arr === arr.valueOf(), "arr !== arr.valueOf");
1014 arr = [1,2,3];
1015 tmp = arr.reverse();
1016 ok(tmp === arr, "tmp !== arr");
1017 ok(arr.length === 3, "arr.length = " + arr.length);
1018 ok(arr.toString() === "3,2,1", "arr.toString() = " + arr.toString());
1020 arr = [];
1021 arr[3] = 5;
1022 arr[5] = 1;
1023 tmp = arr.reverse();
1024 ok(tmp === arr, "tmp !== arr");
1025 ok(arr.length === 6, "arr.length = " + arr.length);
1026 ok(arr.toString() === "1,,5,,,", "arr.toString() = " + arr.toString());
1028 arr = new Object();
1029 arr.length = 3;
1030 arr[0] = "aa";
1031 arr[2] = 2;
1032 arr[7] = 3;
1033 arr.reverse = Array.prototype.reverse;
1034 tmp = arr.reverse();
1035 ok(tmp === arr, "tmp !== arr");
1036 ok(arr.length === 3, "arr.length = " + arr.length);
1037 ok(arr[0] === 2 && arr[1] === undefined && arr[2] === "aa", "unexpected array");
1039 arr = [1,2,3];
1040 tmp = arr.unshift(0);
1041 ok(tmp === (invokeVersion < 2 ? undefined : 4), "[1,2,3].unshift(0) returned " +tmp);
1042 ok(arr.length === 4, "arr.length = " + arr.length);
1043 ok(arr.toString() === "0,1,2,3", "arr.toString() = " + arr.toString());
1045 arr = new Array(3);
1046 arr[0] = 1;
1047 arr[2] = 3;
1048 tmp = arr.unshift(-1,0);
1049 ok(tmp === (invokeVersion < 2 ? undefined : 5), "unshift returned " +tmp);
1050 ok(arr.length === 5, "arr.length = " + arr.length);
1051 ok(arr.toString() === "-1,0,1,,3", "arr.toString() = " + arr.toString());
1053 arr = [1,2,3];
1054 tmp = arr.unshift();
1055 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
1056 ok(arr.length === 3, "arr.length = " + arr.length);
1057 ok(arr.toString() === "1,2,3", "arr.toString() = " + arr.toString());
1059 arr = new Object();
1060 arr.length = 2;
1061 arr[0] = 1;
1062 arr[1] = 2;
1063 tmp = Array.prototype.unshift.call(arr, 0);
1064 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
1065 ok(arr.length === 3, "arr.length = " + arr.length);
1066 ok(arr[0] === 0 && arr[1] === 1 && arr[2] === 2, "unexpected array");
1068 arr = [1,2,,4];
1069 tmp = arr.shift();
1070 ok(tmp === 1, "[1,2,,4].shift() = " + tmp);
1071 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
1073 arr = [];
1074 tmp = arr.shift();
1075 ok(tmp === undefined, "[].shift() = " + tmp);
1076 ok(arr.toString() === "", "arr = " + arr.toString());
1078 arr = [1,2,,4];
1079 tmp = arr.shift(2);
1080 ok(tmp === 1, "[1,2,,4].shift(2) = " + tmp);
1081 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
1083 arr = [1,];
1084 tmp = arr.shift();
1085 ok(tmp === 1, "[1,].shift() = " + tmp);
1086 ok(arr.toString() === "", "arr = " + arr.toString());
1088 obj = new Object();
1089 obj[0] = "test";
1090 obj[2] = 3;
1091 obj.length = 3;
1092 tmp = Array.prototype.shift.call(obj);
1093 ok(tmp === "test", "obj.shift() = " + tmp);
1094 ok(obj.length == 2, "obj.length = " + obj.length);
1095 ok(obj[1] === 3, "obj[1] = " + obj[1]);
1097 var num = new Number(6);
1098 arr = [0,1,2];
1099 tmp = arr.concat(3, [4,5], num);
1100 ok(tmp !== arr, "tmp === arr");
1101 for(var i=0; i<6; i++)
1102     ok(tmp[i] === i, "tmp[" + i + "] = " + tmp[i]);
1103 ok(tmp[6] === num, "tmp[6] !== num");
1104 ok(tmp.length === 7, "tmp.length = " + tmp.length);
1106 arr = [].concat();
1107 ok(arr.length === 0, "arr.length = " + arr.length);
1109 arr = [1,];
1110 tmp = arr.concat([2]);
1111 ok(tmp.length === 3, "tmp.length = " + tmp.length);
1112 ok(tmp[1] === undefined, "tmp[1] = " + tmp[1]);
1114 arr = [1,false,'a',null,undefined,'a'];
1115 ok(arr.slice(0,6).toString() === "1,false,a,,,a", "arr.slice(0,6).toString() = " + arr.slice(0,6));
1116 ok(arr.slice(0,6).length === 6, "arr.slice(0,6).length = " + arr.slice(0,6).length);
1117 ok(arr.slice().toString() === "1,false,a,,,a", "arr.slice().toString() = " + arr.slice());
1118 ok(arr.slice("abc").toString() === "1,false,a,,,a", "arr.slice(\"abc\").toString() = " + arr.slice("abc"));
1119 ok(arr.slice(3,8).toString() === ",,a", "arr.slice(3,8).toString() = " + arr.slice(3,8));
1120 ok(arr.slice(3,8).length === 3, "arr.slice(3,8).length = " + arr.slice(3,8).length);
1121 ok(arr.slice(1).toString() === "false,a,,,a", "arr.slice(1).toString() = " + arr.slice(1));
1122 ok(arr.slice(-2).toString() === ",a", "arr.slice(-2).toString() = " + arr.slice(-2));
1123 ok(arr.slice(3,1).toString() === "", "arr.slice(3,1).toString() = " + arr.slice(3,1));
1124 tmp = arr.slice(0,6);
1125 for(var i=0; i < arr.length; i++)
1126     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
1127 arr[12] = 2;
1128 ok(arr.slice(5).toString() === "a,,,,,,,2", "arr.slice(5).toString() = " + arr.slice(5).toString());
1129 ok(arr.slice(5).length === 8, "arr.slice(5).length = " + arr.slice(5).length);
1131 arr = [1,2,3,4,5];
1132 tmp = arr.splice(2,2);
1133 ok(tmp.toString() == "3,4", "arr.splice(2,2) returned " + tmp.toString());
1134 ok(arr.toString() == "1,2,5", "arr.splice(2,2) is " + arr.toString());
1136 arr = [1,2,3,4,5];
1137 tmp = arr.splice(2,2,"a");
1138 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a') returned " + tmp.toString());
1139 ok(arr.toString() == "1,2,a,5", "arr.splice(2,2,'a') is " + arr.toString());
1141 arr = [1,2,3,4,5];
1142 tmp = arr.splice(2,2,'a','b','c');
1143 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1144 ok(arr.toString() == "1,2,a,b,c,5", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1146 arr = [1,2,3,4,];
1147 tmp = arr.splice(2,2,'a','b','c');
1148 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1149 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1151 arr = [1,2,3,4,];
1152 arr.splice(2,2,'a','b','c');
1153 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1155 arr = [1,2,3,4,5];
1156 tmp = arr.splice(2,2,'a','b');
1157 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b') returned " + tmp.toString());
1158 ok(arr.toString() == "1,2,a,b,5", "arr.splice(2,2,'a','b') is " + arr.toString());
1160 arr = [1,2,3,4,5];
1161 tmp = arr.splice(-1,2);
1162 ok(tmp.toString() == "5", "arr.splice(-1,2) returned " + tmp.toString());
1163 ok(arr.toString() == "1,2,3,4", "arr.splice(-1,2) is " + arr.toString());
1165 arr = [1,2,3,4,5];
1166 tmp = arr.splice(-10,3);
1167 ok(tmp.toString() == "1,2,3", "arr.splice(-10,3) returned " + tmp.toString());
1168 ok(arr.toString() == "4,5", "arr.splice(-10,3) is " + arr.toString());
1170 arr = [1,2,3,4,5];
1171 tmp = arr.splice(-10,100);
1172 ok(tmp.toString() == "1,2,3,4,5", "arr.splice(-10,100) returned " + tmp.toString());
1173 ok(arr.toString() == "", "arr.splice(-10,100) is " + arr.toString());
1175 arr = [1,2,3,4,5];
1176 tmp = arr.splice(2,-1);
1177 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1178 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1180 arr = [1,2,3,4,5];
1181 tmp = arr.splice(2);
1182 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1183 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1185 arr = [1,2,3,4,5];
1186 tmp = arr.splice();
1187 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1188 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1190 arr = [1,2,3,4,5];
1191 tmp = arr.splice(bigInt);
1192 ok(tmp.toString() == "", "arr.splice(bigInt) returned " + tmp.toString());
1193 ok(arr.toString() == "1,2,3,4,5", "arr.splice(bigInt) is " + arr.toString());
1195 arr = [1,2,3,4,5];
1196 tmp = arr.splice(-bigInt);
1197 ok(tmp.toString() == "", "arr.splice(-bigInt) returned " + tmp.toString());
1198 ok(arr.toString() == "1,2,3,4,5", "arr.splice(-bigInt) is " + arr.toString());
1200 if(invokeVersion >= 2) {
1201     arr = [1,2,3,4,5];
1202     tmp = arr.splice(2, bigInt);
1203     ok(tmp.toString() == "3,4,5", "arr.splice(2, bigInt) returned " + tmp.toString());
1204     ok(arr.toString() == "1,2", "arr.splice(2, bigInt) is " + arr.toString());
1207 arr = [1,2,3,4,5];
1208 tmp = arr.splice(2, -bigInt);
1209 ok(tmp.toString() == "", "arr.splice(2, -bigInt) returned " + tmp.toString());
1210 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2, -bigInt) is " + arr.toString());
1212 obj = new Object();
1213 obj.length = 3;
1214 obj[0] = 1;
1215 obj[1] = 2;
1216 obj[2] = 3;
1217 tmp = Array.prototype.splice.call(obj, 1, 1, 'a', 'b');
1218 ok(tmp.toString() === "2", "obj.splice returned " + tmp);
1219 ok(obj.length === 4, "obj.length = " + obj.length);
1220 ok(obj[0] === 1, "obj[0] = " + obj[0]);
1221 ok(obj[1] === 'a', "obj[1] = " + obj[1]);
1222 ok(obj[2] === 'b', "obj[2] = " + obj[2]);
1223 ok(obj[3] === 3, "obj[3] = " + obj[3]);
1225 obj = new Object();
1226 obj.length = 3;
1227 obj[0] = 1;
1228 obj[1] = 2;
1229 obj[2] = 3;
1230 tmp = Array.prototype.slice.call(obj, 1, 2);
1231 ok(tmp.length === 1, "tmp.length = " + tmp.length);
1232 ok(tmp[0] === 2, "tmp[0] = " + tmp[0]);
1234 tmp = (new Number(2)).toString();
1235 ok(tmp === "2", "num(2).toString = " + tmp);
1236 tmp = (new Number()).toString();
1237 ok(tmp === "0", "num().toString = " + tmp);
1238 tmp = (new Number(5.5)).toString(2);
1239 ok(tmp === "101.1", "num(5.5).toString(2) = " + tmp);
1241 tmp = (new Number(3)).toFixed(3);
1242 ok(tmp === "3.000", "num(3).toFixed(3) = " + tmp);
1243 tmp = (new Number(3)).toFixed();
1244 ok(tmp === "3", "Number(3).toFixed() = " + tmp);
1245 tmp = (new Number(0)).toFixed();
1246 ok(tmp === "0", "Number(0).toFixed() = " + tmp);
1247 tmp = (new Number(0)).toFixed(1);
1248 ok(tmp === "0.0", "Number(0).toFixed(1) = " + tmp);
1249 tmp = (new Number(0)).toFixed(2);
1250 ok(tmp === "0.00", "Number(0).toFixed(2) = " + tmp);
1251 tmp = (new Number(1.76)).toFixed(1);
1252 ok(tmp === "1.8", "num(1.76).toFixed(1) = " + tmp);
1253 tmp = (new Number(7.92)).toFixed(5);
1254 ok(tmp === "7.92000", "num(7.92).toFixed(5) = " + tmp);
1255 tmp = (new Number(2.88)).toFixed();
1256 ok(tmp === "3", "num(2.88).toFixed = " + tmp);
1257 tmp = (new Number(-2.5)).toFixed();
1258 ok(tmp === "-3", "num(-2.5).toFixed = " + tmp);
1259 tmp = (new Number(1000000000000000128)).toFixed(0);
1260 //todo_wine ok(tmp === "1000000000000000100", "num(1000000000000000128) = " + tmp);
1261 tmp = (new Number(3.14).toFixed(NaN));
1262 ok(tmp === "3", "num(3.14).toFixed = " + tmp);
1263 tmp = (new Number(0.95).toFixed(1));
1264 ok(tmp === "1.0", "num(0.95).toFixed(1) = " + tmp);
1265 tmp = (new Number(1e900)).toFixed(0);
1266 ok(tmp === "Infinity", "num(1000000000000000128) = " + tmp);
1267 tmp = (new Number(0.12345678901234567890123)).toFixed(20);
1268 ok(tmp === "0.12345678901234568000", "num(0.12345678901234567890123) = " + tmp);
1270 tmp = (new Number(2)).toExponential(3);
1271 ok(tmp === "2.000e+0", "num(2).toExponential(3) = " + tmp);
1272 tmp = (new Number(1.17e-32)).toExponential(20);
1273 ok(tmp === "1.17000000000000000000e-32", "num(1.17e-32).toExponential(20) = " + tmp);
1274 tmp = (new Number(0)).toExponential(7);
1275 ok(tmp === "0.0000000e+0", "num(0).toExponential(7) = " + tmp);
1276 tmp = (new Number(0)).toExponential(0);
1277 ok(tmp === "0e+0", "num(0).toExponential() = " + tmp);
1278 tmp = (new Number(-13.7567)).toExponential();
1279 ok(tmp === "-1.37567e+1", "num(-13.7567).toExponential() = " + tmp);
1280 tmp = (new Number(-32.1)).toExponential();
1281 ok(tmp === "-3.21e+1", "num(-32.1).toExponential() = " + tmp);
1282 tmp = (new Number(4723.4235)).toExponential();
1283 ok(tmp === "4.7234235e+3", "num(4723.4235).toExponential() = " + tmp);
1285 tmp = (new Number(5)).toPrecision(12);
1286 ok(tmp == "5.00000000000", "num(5).toPrecision(12) = " + tmp);
1287 tmp = (new Number(7.73)).toPrecision(7);
1288 ok(tmp == "7.730000", "num(7.73).toPrecision(7) = " + tmp);
1289 tmp = (new Number(-127547.47472)).toPrecision(17);
1290 ok(tmp == "-127547.47472000000", "num(-127547.47472).toPrecision(17) = " + tmp);
1291 tmp = (new Number(0)).toPrecision(3);
1292 ok(tmp == "0.00", "num(0).toPrecision(3) = " + tmp);
1293 tmp = (new Number(42345.52342465464562334)).toPrecision(15);
1294 ok(tmp == "42345.5234246546", "num(42345.52342465464562334).toPrecision(15) = " + tmp);
1295 tmp = (new Number(1.182e30)).toPrecision(5);
1296 ok(tmp == "1.1820e+30", "num(1.182e30)).toPrecision(5) = " + tmp);
1297 tmp = (new Number(1.123)).toPrecision();
1298 ok(tmp == "1.123", "num(1.123).toPrecision() = " + tmp);
1300 ok(Number() === 0, "Number() = " + Number());
1301 ok(Number(false) === 0, "Number(false) = " + Number(false));
1302 ok(Number("43") === 43, "Number('43') = " + Number("43"));
1304 tmp = (new Number(1)).valueOf();
1305 ok(tmp === 1, "(new Number(1)).valueOf = " + tmp);
1306 tmp = (new Number(1,2)).valueOf();
1307 ok(tmp === 1, "(new Number(1,2)).valueOf = " + tmp);
1308 tmp = (new Number()).valueOf();
1309 ok(tmp === 0, "(new Number()).valueOf = " + tmp);
1310 tmp = Number.prototype.valueOf();
1311 ok(tmp === 0, "Number.prototype.valueOf = " + tmp);
1313 function equals(val, base) {
1314     var i;
1315     var num = 0;
1316     var str = val.toString(base);
1318     for(i=0; i<str.length; i++) {
1319         if(str.substring(i, i+1) == '(') break;
1320         if(str.substring(i, i+1) == '.') break;
1321         num = num*base + parseInt(str.substring(i, i+1));
1322     }
1324     if(str.substring(i, i+1) == '.') {
1325         var mult = base;
1326         for(i++; i<str.length; i++) {
1327             if(str.substring(i, i+1) == '(') break;
1328             num += parseInt(str.substring(i, i+1))/mult;
1329             mult *= base;
1330         }
1331     }
1333     if(str.substring(i, i+1) == '(') {
1334         exp = parseInt(str.substring(i+2));
1335         num *= Math.pow(base, exp);
1336     }
1338     ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num);
1341 ok((10).toString(11) === "a", "(10).toString(11) = " + (10).toString(11));
1342 ok((213213433).toString(17) === "8e2ddcb", "(213213433).toString(17) = " + (213213433).toString(17));
1343 ok((-3254343).toString(33) === "-2oicf", "(-3254343).toString(33) = " + (-3254343).toString(33));
1344 ok((NaN).toString(12) === "NaN", "(NaN).toString(11) = " + (NaN).toString(11));
1345 ok((Infinity).toString(13) === "Infinity", "(Infinity).toString(11) = " + (Infinity).toString(11));
1346 for(i=2; i<10; i++) {
1347     equals(1.123, i);
1348     equals(2305843009200000000, i);
1349     equals(5.123, i);
1350     equals(21711, i);
1351     equals(1024*1024*1024*1024*1024*1024*1.9999, i);
1352     equals(748382, i);
1353     equals(0.6, i);
1354     equals(4.65661287308e-10, i);
1355     ok((0).toString(i) === "0", "(0).toString("+i+") = " + (0).toString(i));
1358 ok(parseFloat('123') === 123, "parseFloat('123') = " + parseFloat('123'));
1359 ok(parseFloat('-13.7') === -13.7, "parseFloat('-13.7') = " + parseFloat('-13.7'));
1360 ok(parseFloat('-0.01e-2') === -0.01e-2, "parseFloat('-0.01e-2') = " + parseFloat('-0.01e-2'));
1361 ok(parseFloat('-12e+5') === -12e+5, "parseFloat('-12e+5') = " + parseFloat('-12e+5'));
1362 ok(parseFloat('1E5 not parsed') === 1E5, "parseFloat('1E5 not parsed') = " + parseFloat('1E5 not parsed'));
1363 ok(isNaN(parseFloat('not a number')), "parseFloat('not a number') is not NaN");
1364 ok(parseFloat('+13.2e-3') === 13.2e-3, "parseFloat('+13.2e-3') = " + parseFloat('+13.2e-3'));
1365 ok(parseFloat('.12') === 0.12, "parseFloat('.12') = " + parseFloat('.12'));
1366 ok(parseFloat('1e') === 1, "parseFloat('1e') = " + parseFloat('1e'));
1368 tmp = Math.min(1);
1369 ok(tmp === 1, "Math.min(1) = " + tmp);
1371 tmp = Math.min(1, false);
1372 ok(tmp === 0, "Math.min(1, false) = " + tmp);
1374 tmp = Math.min();
1375 ok(tmp === Infinity, "Math.min() = " + tmp);
1377 tmp = Math.min(1, NaN, -Infinity, false);
1378 ok(isNaN(tmp), "Math.min(1, NaN, -Infinity, false) is not NaN");
1380 tmp = Math.min(1, false, true, null, -3);
1381 ok(tmp === -3, "Math.min(1, false, true, null, -3) = " + tmp);
1383 tmp = Math.max(1);
1384 ok(tmp === 1, "Math.max(1) = " + tmp);
1386 tmp = Math.max(true, 0);
1387 ok(tmp === 1, "Math.max(true, 0) = " + tmp);
1389 tmp = Math.max(-2, false, true, null, 1);
1390 ok(tmp === 1, "Math.max(-2, false, true, null, 1) = " + tmp);
1392 tmp = Math.max();
1393 ok(tmp === -Infinity, "Math.max() = " + tmp);
1395 tmp = Math.max(true, NaN, 0);
1396 ok(isNaN(tmp), "Math.max(true, NaN, 0) is not NaN");
1398 tmp = Math.round(0.5);
1399 ok(tmp === 1, "Math.round(0.5) = " + tmp);
1401 tmp = Math.round(-0.5);
1402 ok(tmp === 0, "Math.round(-0.5) = " + tmp);
1404 tmp = Math.round(1.1);
1405 ok(tmp === 1, "Math.round(1.1) = " + tmp);
1407 tmp = Math.round(true);
1408 ok(tmp === 1, "Math.round(true) = " + tmp);
1410 tmp = Math.round(1.1, 3, 4);
1411 ok(tmp === 1, "Math.round(1.1, 3, 4) = " + tmp);
1413 tmp = Math.round();
1414 ok(isNaN(tmp), "Math.round() is not NaN");
1416 tmp = Math.ceil(0.5);
1417 ok(tmp === 1, "Math.ceil(0.5) = " + tmp);
1419 tmp = Math.ceil(-0.5);
1420 ok(tmp === 0, "Math.ceil(-0.5) = " + tmp);
1422 tmp = Math.ceil(1.1);
1423 ok(tmp === 2, "Math.round(1.1) = " + tmp);
1425 tmp = Math.ceil(true);
1426 ok(tmp === 1, "Math.ceil(true) = " + tmp);
1428 tmp = Math.ceil(1.1, 3, 4);
1429 ok(tmp === 2, "Math.ceil(1.1, 3, 4) = " + tmp);
1431 tmp = Math.ceil();
1432 ok(isNaN(tmp), "ceil() is not NaN");
1434 tmp = Math.floor(0.5);
1435 ok(tmp === 0, "Math.floor(0.5) = " + tmp);
1437 tmp = Math.floor(-0.5);
1438 ok(tmp === -1, "Math.floor(-0.5) = " + tmp);
1440 tmp = Math.floor(1.1);
1441 ok(tmp === 1, "Math.floor(1.1) = " + tmp);
1443 tmp = Math.floor(true);
1444 ok(tmp === 1, "Math.floor(true) = " + tmp);
1446 tmp = Math.floor(1.1, 3, 4);
1447 ok(tmp === 1, "Math.floor(1.1, 3, 4) = " + tmp);
1449 tmp = Math.floor();
1450 ok(isNaN(tmp), "floor is not NaN");
1452 tmp = Math.abs(3);
1453 ok(tmp === 3, "Math.abs(3) = " + tmp);
1455 tmp = Math.abs(-3);
1456 ok(tmp === 3, "Math.abs(-3) = " + tmp);
1458 tmp = Math.abs(true);
1459 ok(tmp === 1, "Math.abs(true) = " + tmp);
1461 tmp = Math.abs();
1462 ok(isNaN(tmp), "Math.abs() is not NaN");
1464 tmp = Math.abs(NaN);
1465 ok(isNaN(tmp), "Math.abs() is not NaN");
1467 tmp = Math.abs(-Infinity);
1468 ok(tmp === Infinity, "Math.abs(-Infinite) = " + tmp);
1470 tmp = Math.abs(-3, 2);
1471 ok(tmp === 3, "Math.abs(-3, 2) = " + tmp);
1473 tmp = Math.cos(0);
1474 ok(tmp === 1, "Math.cos(0) = " + tmp);
1476 tmp = Math.cos(Math.PI/2);
1477 ok(Math.floor(tmp*100) === 0, "Math.cos(Math.PI/2) = " + tmp);
1479 tmp = Math.cos(-Math.PI/2);
1480 ok(Math.floor(tmp*100) === 0, "Math.cos(-Math.PI/2) = " + tmp);
1482 tmp = Math.cos(Math.PI/3, 2);
1483 ok(Math.floor(tmp*100) === 50, "Math.cos(Math.PI/3, 2) = " + tmp);
1485 tmp = Math.cos(true);
1486 ok(Math.floor(tmp*100) === 54, "Math.cos(true) = " + tmp);
1488 tmp = Math.cos(false);
1489 ok(tmp === 1, "Math.cos(false) = " + tmp);
1491 tmp = Math.cos();
1492 ok(isNaN(tmp), "Math.cos() is not NaN");
1494 tmp = Math.cos(NaN);
1495 ok(isNaN(tmp), "Math.cos(NaN) is not NaN");
1497 tmp = Math.cos(Infinity);
1498 ok(isNaN(tmp), "Math.cos(Infinity) is not NaN");
1500 tmp = Math.cos(-Infinity);
1501 ok(isNaN(tmp), "Math.cos(-Infinity) is not NaN");
1503 tmp = Math.pow(2, 2);
1504 ok(tmp === 4, "Math.pow(2, 2) = " + tmp);
1506 tmp = Math.pow(4, 0.5);
1507 ok(tmp === 2, "Math.pow(2, 2) = " + tmp);
1509 tmp = Math.pow(2, 2, 3);
1510 ok(tmp === 4, "Math.pow(2, 2, 3) = " + tmp);
1512 tmp = Math.pow(2);
1513 ok(isNaN(tmp), "Math.pow(2) is not NaN");
1515 tmp = Math.pow();
1516 ok(isNaN(tmp), "Math.pow() is not NaN");
1518 tmp = Math.random();
1519 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1520 ok(0 <= tmp && tmp <= 1, "Math.random() = " + tmp);
1522 tmp = Math.random(100);
1523 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1524 ok(0 <= tmp && tmp <= 1, "Math.random(100) = " + tmp);
1526 tmp = Math.acos(0);
1527 ok(Math.floor(tmp*100) === 157, "Math.acos(0) = " + tmp);
1529 tmp = Math.acos(1);
1530 ok(Math.floor(tmp*100) === 0, "Math.acos(1) = " + tmp);
1532 tmp = Math.acos(-1);
1533 ok(Math.floor(tmp*100) === 314, "Math.acos(-1) = " + tmp);
1535 tmp = Math.acos(Math.PI/4, 2);
1536 ok(Math.floor(tmp*100) === 66, "Math.acos(Math.PI/4, 2) = " + tmp);
1538 tmp = Math.acos(true);
1539 ok(Math.floor(tmp*100) === 0, "Math.acos(true) = " + tmp);
1541 tmp = Math.acos(false);
1542 ok(Math.floor(tmp*100) === 157, "Math.acos(false) = " + tmp);
1544 tmp = Math.acos(1.1);
1545 ok(isNaN(tmp), "Math.acos(1.1) is not NaN");
1547 tmp = Math.acos();
1548 ok(isNaN(tmp), "Math.acos() is not NaN");
1550 tmp = Math.acos(NaN);
1551 ok(isNaN(tmp), "Math.acos(NaN) is not NaN");
1553 tmp = Math.acos(Infinity);
1554 ok(isNaN(tmp), "Math.acos(Infinity) is not NaN");
1556 tmp = Math.acos(-Infinity);
1557 ok(isNaN(tmp), "Math.acos(-Infinity) is not NaN");
1559 tmp = Math.asin(0);
1560 ok(Math.floor(tmp*100) === 0, "Math.asin(0) = " + tmp);
1562 tmp = Math.asin(1);
1563 ok(Math.floor(tmp*100) === 157, "Math.asin(1) = " + tmp);
1565 tmp = Math.asin(-1);
1566 ok(Math.floor(tmp*100) === -158, "Math.asin(-1) = " + tmp);
1568 tmp = Math.asin(Math.PI/4, 2);
1569 ok(Math.floor(tmp*100) === 90, "Math.asin(Math.PI/4, 2) = " + tmp);
1571 tmp = Math.asin(true);
1572 ok(Math.floor(tmp*100) === 157, "Math.asin(true) = " + tmp);
1574 tmp = Math.asin(false);
1575 ok(Math.floor(tmp*100) === 0, "Math.asin(false) = " + tmp);
1577 tmp = Math.asin(1.1);
1578 ok(isNaN(tmp), "Math.asin(1.1) is not NaN");
1580 tmp = Math.asin();
1581 ok(isNaN(tmp), "Math.asin() is not NaN");
1583 tmp = Math.asin(NaN);
1584 ok(isNaN(tmp), "Math.asin(NaN) is not NaN");
1586 tmp = Math.asin(Infinity);
1587 ok(isNaN(tmp), "Math.asin(Infinity) is not NaN");
1589 tmp = Math.asin(-Infinity);
1590 ok(isNaN(tmp), "Math.asin(-Infinity) is not NaN");
1592 tmp = Math.atan(0);
1593 ok(Math.floor(tmp*100) === 0, "Math.atan(0) = " + tmp);
1595 tmp = Math.atan(1);
1596 ok(Math.floor(tmp*100) === 78, "Math.atan(1) = " + tmp);
1598 tmp = Math.atan(-1);
1599 ok(Math.floor(tmp*100) === -79, "Math.atan(-1) = " + tmp);
1601 tmp = Math.atan(true);
1602 ok(Math.floor(tmp*100) === 78, "Math.atan(true) = " + tmp);
1604 tmp = Math.atan(false);
1605 ok(Math.floor(tmp*100) === 0, "Math.atan(false) = " + tmp);
1607 tmp = Math.atan();
1608 ok(isNaN(tmp), "Math.atan() is not NaN");
1610 tmp = Math.atan(NaN);
1611 ok(isNaN(tmp), "Math.atan(NaN) is not NaN");
1613 tmp = Math.atan(Infinity);
1614 ok(Math.floor(tmp*100) === 157, "Math.atan(Infinity) = " + tmp);
1616 tmp = Math.atan(-Infinity);
1617 ok(Math.floor(tmp*100) === -158, "Math.atan(Infinity) = " + tmp);
1619 tmp = Math.atan2(0, 0);
1620 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 0) = " + tmp);
1622 tmp = Math.atan2(0, 1);
1623 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 1) = " + tmp);
1625 tmp = Math.atan2(0, Infinity);
1626 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, Infinity) = " + tmp);
1628 tmp = Math.atan2(0, -1);
1629 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -1) = " + tmp);
1631 tmp = Math.atan2(0, -Infinity);
1632 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -Infinity) = " + tmp);
1634 tmp = Math.atan2(1, 0);
1635 ok(Math.floor(tmp*100) === 157, "Math.atan2(1, 0) = " + tmp);
1637 tmp = Math.atan2(Infinity, 0);
1638 ok(Math.floor(tmp*100) === 157, "Math.atan2(Infinity, 0) = " + tmp);
1640 tmp = Math.atan2(-1, 0);
1641 ok(Math.floor(tmp*100) === -158, "Math.atan2(-1, 0) = " + tmp);
1643 tmp = Math.atan2(-Infinity, 0);
1644 ok(Math.floor(tmp*100) === -158, "Math.atan2(-Infinity, 0) = " + tmp);
1646 tmp = Math.atan2(1, 1);
1647 ok(Math.floor(tmp*100) === 78, "Math.atan2(1, 1) = " + tmp);
1649 tmp = Math.atan2(-1, -1);
1650 ok(Math.floor(tmp*100) === -236, "Math.atan2(-1, -1) = " + tmp);
1652 tmp = Math.atan2(-1, 1);
1653 ok(Math.floor(tmp*100) === -79, "Math.atan2(-1, 1) = " + tmp);
1655 tmp = Math.atan2(Infinity, Infinity);
1656 ok(Math.floor(tmp*100) === 78, "Math.atan2(Infinity, Infinity) = " + tmp);
1658 tmp = Math.atan2(Infinity, -Infinity, 1);
1659 ok(Math.floor(tmp*100) === 235, "Math.atan2(Infinity, -Infinity, 1) = " + tmp);
1661 tmp = Math.atan2();
1662 ok(isNaN(tmp), "Math.atan2() is not NaN");
1664 tmp = Math.atan2(1);
1665 ok(isNaN(tmp), "Math.atan2(1) is not NaN");
1667 tmp = Math.exp(0);
1668 ok(tmp === 1, "Math.exp(0) = " + tmp);
1670 tmp = Math.exp(1);
1671 ok(Math.floor(tmp*100) === 271, "Math.exp(1) = " + tmp);
1673 tmp = Math.exp(-1);
1674 ok(Math.floor(tmp*100) === 36, "Math.exp(-1) = " + tmp);
1676 tmp = Math.exp(true);
1677 ok(Math.floor(tmp*100) === 271, "Math.exp(true) = " + tmp);
1679 tmp = Math.exp(1, 1);
1680 ok(Math.floor(tmp*100) === 271, "Math.exp(1, 1) = " + tmp);
1682 tmp = Math.exp();
1683 ok(isNaN(tmp), "Math.exp() is not NaN");
1685 tmp = Math.exp(NaN);
1686 ok(isNaN(tmp), "Math.exp(NaN) is not NaN");
1688 tmp = Math.exp(Infinity);
1689 ok(tmp === Infinity, "Math.exp(Infinity) = " + tmp);
1691 tmp = Math.exp(-Infinity);
1692 ok(tmp === 0, "Math.exp(-Infinity) = " + tmp);
1694 tmp = Math.log(1);
1695 ok(Math.floor(tmp*100) === 0, "Math.log(1) = " + tmp);
1697 tmp = Math.log(-1);
1698 ok(isNaN(tmp), "Math.log(-1) is not NaN");
1700 tmp = Math.log(true);
1701 ok(Math.floor(tmp*100) === 0, "Math.log(true) = " + tmp);
1703 tmp = Math.log(1, 1);
1704 ok(Math.floor(tmp*100) === 0, "Math.log(1, 1) = " + tmp);
1706 tmp = Math.log();
1707 ok(isNaN(tmp), "Math.log() is not NaN");
1709 tmp = Math.log(NaN);
1710 ok(isNaN(tmp), "Math.log(NaN) is not NaN");
1712 tmp = Math.log(Infinity);
1713 ok(tmp === Infinity, "Math.log(Infinity) = " + tmp);
1715 tmp = Math.log(-Infinity);
1716 ok(isNaN(tmp), "Math.log(-Infinity) is not NaN");
1718 tmp = Math.sin(0);
1719 ok(tmp === 0, "Math.sin(0) = " + tmp);
1721 tmp = Math.sin(Math.PI/2);
1722 ok(tmp === 1, "Math.sin(Math.PI/2) = " + tmp);
1724 tmp = Math.sin(-Math.PI/2);
1725 ok(tmp === -1, "Math.sin(-Math.PI/2) = " + tmp);
1727 tmp = Math.sin(Math.PI/3, 2);
1728 ok(Math.floor(tmp*100) === 86, "Math.sin(Math.PI/3, 2) = " + tmp);
1730 tmp = Math.sin(true);
1731 ok(Math.floor(tmp*100) === 84, "Math.sin(true) = " + tmp);
1733 tmp = Math.sin(false);
1734 ok(tmp === 0, "Math.sin(false) = " + tmp);
1736 tmp = Math.sin();
1737 ok(isNaN(tmp), "Math.sin() is not NaN");
1739 tmp = Math.sin(NaN);
1740 ok(isNaN(tmp), "Math.sin(NaN) is not NaN");
1742 tmp = Math.sin(Infinity);
1743 ok(isNaN(tmp), "Math.sin(Infinity) is not NaN");
1745 tmp = Math.sin(-Infinity);
1746 ok(isNaN(tmp), "Math.sin(-Infinity) is not NaN");
1748 tmp = Math.sqrt(0);
1749 ok(tmp === 0, "Math.sqrt(0) = " + tmp);
1751 tmp = Math.sqrt(4);
1752 ok(tmp === 2, "Math.sqrt(4) = " + tmp);
1754 tmp = Math.sqrt(-1);
1755 ok(isNaN(tmp), "Math.sqrt(-1) is not NaN");
1757 tmp = Math.sqrt(2, 2);
1758 ok(Math.floor(tmp*100) === 141, "Math.sqrt(2, 2) = " + tmp);
1760 tmp = Math.sqrt(true);
1761 ok(tmp === 1, "Math.sqrt(true) = " + tmp);
1763 tmp = Math.sqrt(false);
1764 ok(tmp === 0, "Math.sqrt(false) = " + tmp);
1766 tmp = Math.sqrt();
1767 ok(isNaN(tmp), "Math.sqrt() is not NaN");
1769 tmp = Math.sqrt(NaN);
1770 ok(isNaN(tmp), "Math.sqrt(NaN) is not NaN");
1772 tmp = Math.sqrt(Infinity);
1773 ok(tmp === Infinity, "Math.sqrt(Infinity) = " + tmp);
1775 tmp = Math.sqrt(-Infinity);
1776 ok(isNaN(tmp), "Math.sqrt(-Infinity) is not NaN");
1778 tmp = Math.tan(0);
1779 ok(tmp === 0, "Math.tan(0) = " + tmp);
1781 tmp = Math.tan(Math.PI);
1782 ok(Math.floor(tmp*100) === -1, "Math.tan(Math.PI) = " + tmp);
1784 tmp = Math.tan(2, 2);
1785 ok(Math.floor(tmp*100) === -219, "Math.tan(2, 2) = " + tmp);
1787 tmp = Math.tan(true);
1788 ok(Math.floor(tmp*100) === 155, "Math.tan(true) = " + tmp);
1790 tmp = Math.tan(false);
1791 ok(tmp === 0, "Math.tan(false) = " + tmp);
1793 tmp = Math.tan();
1794 ok(isNaN(tmp), "Math.tan() is not NaN");
1796 tmp = Math.tan(NaN);
1797 ok(isNaN(tmp), "Math.tan(NaN) is not NaN");
1799 tmp = Math.tan(Infinity);
1800 ok(isNaN(tmp), "Math.tan(Infinity) is not NaN");
1802 tmp = Math.tan(-Infinity);
1803 ok(isNaN(tmp), "Math.tan(-Infinity) is not NaN");
1805 (function() {
1806     if(invokeVersion < 2)
1807         return;
1809     var stringify_tests = [
1810         [[true], "true"],
1811         [[false], "false"],
1812         [[null], "null"],
1813         [[1], "1"],
1814         [["test"], "\"test\""],
1815         [["test\"\\\b\f\n\r\t\u0002 !"], "\"test\\\"\\\\\\b\\f\\n\\r\\t\\u0002 !\""],
1816         [[NaN], "null"],
1817         [[Infinity], "null"],
1818         [[-Infinity], "null"],
1819         [[{prop1: true, prop2: "string"}], "{\"prop1\":true,\"prop2\":\"string\"}"],
1820         [[{prop1: true, prop2: testObj, prop3: undefined}], "{\"prop1\":true}"],
1821         [[{prop1: true, prop2: {prop: "string"}},undefined,"  "],
1822                 "{\n  \"prop1\": true,\n  \"prop2\": {\n    \"prop\": \"string\"\n  }\n}"],
1823         [[{ },undefined," "], "{}"],
1824         [[[,2,undefined,3,{ },]],"[null,2,null,3,{},null]"],
1825         [[[,2,undefined,3,{prop:0},],undefined,"  "],"[\n  null,\n  2,\n  null,\n  3,\n  {\n    \"prop\": 0\n  },\n  null\n]"]
1826     ];
1828     var i, s, v;
1830     for(i=0; i < stringify_tests.length; i++) {
1831         s = JSON.stringify.apply(null, stringify_tests[i][0]);
1832         ok(s === stringify_tests[i][1],
1833            "["+i+"] stringify(" + stringify_tests[i][0] + ") returned " + s + " expected " + stringify_tests[i][1]);
1834     }
1836     s = JSON.stringify(testObj);
1837     ok(s === undefined || s === "undefined" /* broken on some old versions */,
1838        "stringify(testObj) returned " + s + " expected undfined");
1840     s = JSON.stringify(undefined);
1841     ok(s === undefined || s === "undefined" /* broken on some old versions */,
1842        "stringify(undefined) returned " + s + " expected undfined");
1844     var parse_tests = [
1845         ["true", true],
1846         ["   \nnull  ", null],
1847         ["{}", {}],
1848         ["\"\\r\\n test\\u1111\"", "\r\n test\u1111"],
1849         ["{\"x\" :\n true}", {x:true}],
1850         ["{\"x y\": {}, \"z\": {\"x\":null}}", {"x y":{}, z:{x:null}}],
1851         ["[]", []],
1852         ["[false,{},{\"x\": []}]", [false,{},{x:[]}]],
1853         ["0", 0],
1854         ["- 1", -1],
1855         ["1e2147483648", Infinity]
1856     ];
1858     function json_cmp(x, y) {
1859         if(x === y)
1860             return true;
1862         if(!(x instanceof Object) || !(y instanceof Object))
1863             return false;
1865         for(var prop in x) {
1866             if(!x.hasOwnProperty(prop))
1867                 continue;
1868             if(!x.hasOwnProperty(prop))
1869                 return false;
1870             if(!json_cmp(x[prop], y[prop]))
1871                 return false;
1872         }
1874         for(var prop in y) {
1875             if(!x.hasOwnProperty(prop) && y.hasOwnProperty(prop))
1876                 return false;
1877         }
1879         return true;
1880     }
1882     for(i=0; i < parse_tests.length; i++) {
1883         v = JSON.parse(parse_tests[i][0]);
1884         ok(json_cmp(v, parse_tests[i][1]), "parse[" + i + "] returned " + v + ", expected " + parse_tests[i][1]);
1885     }
1886 })();
1888 var func = function  (a) {
1889         var a = 1;
1890         if(a) return;
1891     };
1892 ok(func.toString() === "function  (a) {\n        var a = 1;\n        if(a) return;\n    }",
1893    "func.toString() = " + func.toString());
1894 ok("" + func === "function  (a) {\n        var a = 1;\n        if(a) return;\n    }",
1895    "'' + func.toString() = " + func);
1897 ok(func.valueOf === Object.prototype.valueOf, "func.valueOf !== Object.prototype.valueOf");
1898 ok(func === func.valueOf(), "func !== func.valueOf()");
1900 function testFuncToString(x,y) {
1901     return x+y;
1903 ok(testFuncToString.toString() === "function testFuncToString(x,y) {\n    return x+y;\n}",
1904    "testFuncToString.toString() = " + testFuncToString.toString());
1905 ok("" + testFuncToString === "function testFuncToString(x,y) {\n    return x+y;\n}",
1906    "'' + testFuncToString = " + testFuncToString);
1908 tmp = new Object();
1910 function callTest(argc) {
1911     ok(this === tmp, "this !== tmp\n");
1912     ok(arguments.length === argc+1, "arguments.length = " + arguments.length + " expected " + (argc+1));
1913     for(var i=1; i <= argc; i++)
1914         ok(arguments[i] === i, "arguments[i] = " + arguments[i]);
1915     var a = arguments;
1916     for(var i=1; i <= argc; i++)
1917         ok(a[i] === i, "a[i] = " + a[i]);
1920 callTest.call(tmp, 1, 1);
1921 callTest.call(tmp, 2, 1, 2);
1922 callTest.call(tmp, 3, 1, 2, 3);
1924 callTest.apply(tmp, [1, 1]);
1925 callTest.apply(tmp, [2, 1, 2]);
1926 callTest.apply(tmp, [3, 1, 2, 3]);
1927 (function () { callTest.apply(tmp, arguments); })(2,1,2);
1929 function callTest2() {
1930     ok(this === tmp, "this !== tmp\n");
1931     ok(arguments.length === 0, "callTest2: arguments.length = " + arguments.length + " expected 0");
1934 callTest2.call(tmp);
1935 callTest2.apply(tmp, []);
1936 callTest2.apply(tmp);
1937 (function () { callTest2.apply(tmp, arguments); })();
1939 function callTest3() {
1940     testThis(this);
1941     ok(arguments.length === 0, "arguments.length = " + arguments.length + " expected 0");
1944 callTest3.call();
1945 callTest3.call(undefined);
1946 callTest3.call(null);
1947 callTest3.apply();
1948 callTest3.apply(undefined);
1949 callTest3.apply(null);
1951 tmp = Number.prototype.toString.call(3);
1952 ok(tmp === "3", "Number.prototype.toString.call(3) = " + tmp);
1954 var func = new Function("return 3;");
1956 tmp = func();
1957 ok(tmp === 3, "func() = " + tmp);
1958 ok(func.call() === 3, "func.call() = " + tmp);
1959 ok(func.length === 0, "func.length = " + func.length);
1960 tmp = func.toString();
1961 ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp);
1963 func = new Function("x", "return x+2;");
1964 tmp = func(1);
1965 ok(tmp === 3, "func(1) = " + tmp);
1966 tmp = func.toString();
1967 ok(tmp === "function anonymous(x) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1969 tmp = (new Function("x ", "return x+2;")).toString();
1970 ok(tmp === "function anonymous(x ) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1972 func = new Function("x", "y", "return x+y");
1973 tmp = func(1,3);
1974 ok(tmp === 4, "func(1,3) = " + tmp);
1975 tmp = func.toString();
1976 ok(tmp === "function anonymous(x, y) {\nreturn x+y\n}", "func.toString() = " + tmp);
1978 func = new Function(" x, \ty", "\tz", "return x+y+z;");
1979 tmp = func(1,3,2);
1980 ok(tmp === 6, "func(1,3,2) = " + tmp);
1981 ok(func.length === 3, "func.length = " + func.length);
1982 tmp = func.toString();
1983 ok(tmp === "function anonymous( x, \ty, \tz) {\nreturn x+y+z;\n}", "func.toString() = " + tmp);
1985 func = new Function();
1986 tmp = func();
1987 ok(tmp === undefined, "func() = " + tmp);
1988 tmp = func.toString();
1989 ok(tmp == "function anonymous() {\n\n}", "func.toString() = " + tmp);
1991 // Function constructor called as function
1992 func = Function("return 3;");
1994 tmp = func();
1995 ok(tmp === 3, "func() = " + tmp);
1996 ok(func.call() === 3, "func.call() = " + tmp);
1997 ok(func.length === 0, "func.length = " + func.length);
1998 tmp = func.toString();
1999 ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp);
2001 func = (function() {
2002         var tmp = 3;
2003         return new Function("return tmp;");
2004     })();
2005 tmp = 2;
2006 tmp = func();
2007 ok(tmp === 2, "func() = " + tmp);
2009 var date = new Date();
2011 date = new Date(100);
2012 ok(date.getTime() === 100, "date.getTime() = " + date.getTime());
2013 ok(Date.prototype.getTime() === 0, "date.prototype.getTime() = " + Date.prototype.getTime());
2014 date = new Date(8.64e15);
2015 ok(date.getTime() === 8.64e15, "date.getTime() = " + date.getTime());
2016 date = new Date(8.64e15+1);
2017 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
2018 date = new Date(Infinity);
2019 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
2020 date = new Date("3 July 2009 22:28:00 UTC+0100");
2021 ok(date.getTime() === 1246656480000, "date.getTime() = " + date.getTime());
2022 date = new Date(1984, 11, 29, 13, 51, 24, 120);
2023 ok(date.getFullYear() === 1984, "date.getFullYear() = " + date.getFullYear());
2024 ok(date.getMonth() === 11, "date.getMonth() = " + date.getMonth());
2025 ok(date.getDate() === 29, "date.getDate() = " + date.getDate());
2026 ok(date.getHours() === 13, "date.getHours() = " + date.getHours());
2027 ok(date.getMinutes() === 51, "date.getMinutes() = " + date.getMinutes());
2028 ok(date.getSeconds() === 24, "date.getSeconds() = " + date.getSeconds());
2029 ok(date.getMilliseconds() === 120, "date.getMilliseconds() = " + date.getMilliseconds());
2030 date = new Date(731, -32, 40, -1, 70, 65, -13);
2031 ok(date.getFullYear() === 728, "date.getFullYear() = " + date.getFullYear());
2032 ok(date.getMonth() === 5, "date.getMonth() = " + date.getMonth());
2033 ok(date.getDate() === 9, "date.getDate() = " + date.getDate());
2034 ok(date.getHours() === 0, "date.getHours() = " + date.getHours());
2035 ok(date.getMinutes() === 11, "date.getMinutes() = " + date.getMinutes());
2036 ok(date.getSeconds() === 4, "date.getSeconds() = " + date.getSeconds());
2037 ok(date.getMilliseconds() === 987, "date.getMilliseconds() = " + date.getMilliseconds());
2039 ok(date.setTime(123) === 123, "date.setTime(123) !== 123");
2040 ok(date.setTime("123", NaN) === 123, "date.setTime(\"123\") !== 123");
2041 ok(isNaN(date.setTime(NaN)), "date.setTime(NaN) is not NaN");
2043 ok(date.setTime(0) === date.getTime(), "date.setTime(0) !== date.getTime()");
2044 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
2045 ok(date.getUTCMonth() === 0, "date.getUTCMonth() = " + date.getUTCMonth());
2046 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
2047 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
2048 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
2049 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
2050 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
2051 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2053 date.setTime(60*24*60*60*1000);
2054 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
2055 ok(date.getUTCMonth() === 2, "date.getUTCMonth() = " + date.getUTCMonth());
2056 ok(date.getUTCDate() === 2, "date.getUTCDate() = " + date.getUTCDate());
2057 ok(date.getUTCDay() === 1, "date.getUTCDay() = " + date.getUTCDay());
2058 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
2059 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
2060 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
2061 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2063 date.setTime(59*24*60*60*1000 + 4*365*24*60*60*1000 + 60*60*1000 + 2*60*1000 + 2*1000 + 640);
2064 ok(date.getUTCFullYear() === 1974, "date.getUTCFullYear() = " + date.getUTCFullYear());
2065 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2066 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2067 ok(date.getUTCDate() === 28, "date.getUTCDate() = " + date.getUTCDate());
2068 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
2069 ok(date.getUTCHours() === 1, "date.getUTCHours() = " + date.getUTCHours());
2070 ok(date.getUTCMinutes() === 2, "date.getUTCMinutes() = " + date.getUTCMinutes());
2071 ok(date.getUTCSeconds() === 2, "date.getUTCSeconds() = " + date.getUTCSeconds());
2072 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2074 tmp = date.setYear(96);
2075 ok(date.getYear() === 96, "date.getYear() = " + date.getYear());
2076 ok(date.getFullYear() === 1996, "date.getFullYear() = " + date.getYear());
2077 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2078 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2079 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2081 tmp = date.setYear(2010);
2082 ok(tmp === date.getTime(), "date.setYear(2010) = " + tmp);
2083 ok(date.getYear() === 2010, "date.getYear() = " + date.getYear());
2084 ok(date.getFullYear() === 2010, "date.getFullYear() = " + date.getYear());
2085 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2086 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
2087 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2089 date.setTime(Infinity);
2090 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
2091 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
2092 ok(isNaN(date.getUTCDate()), "date.getUTCDate() is not NaN");
2093 ok(isNaN(date.getUTCDay()), "date.getUTCDay() is not NaN");
2094 ok(isNaN(date.getUTCHours()), "date.getUTCHours() is not NaN");
2095 ok(isNaN(date.getUTCMinutes()), "date.getUTCMinutes() is not NaN");
2096 ok(isNaN(date.getUTCSeconds()), "date.getUTCSeconds() is not NaN");
2097 ok(isNaN(date.getUTCMilliseconds()), "date.getUTCMilliseconds() is not NaN");
2098 ok(isNaN(date.setMilliseconds(0)), "date.setMilliseconds() is not NaN");
2100 date.setTime(0);
2101 tmp = date.setYear(NaN);
2102 ok(isNaN(tmp), "date.setYear(NaN) = " + tmp);
2103 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
2104 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
2106 date.setTime(0);
2107 date.setUTCMilliseconds(-10, 2);
2108 ok(date.getUTCMilliseconds() === 990, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2109 date.setUTCMilliseconds(10);
2110 ok(date.getUTCMilliseconds() === 10, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
2111 date.setUTCSeconds(-10);
2112 ok(date.getUTCSeconds() === 50, "date.getUTCSeconds() = " + date.getUTCSeconds());
2113 date.setUTCMinutes(-10);
2114 ok(date.getUTCMinutes() === 50, "date.getUTCMinutes() = " + date.getUTCMinutes());
2115 date.setUTCHours(-10);
2116 ok(date.getUTCHours() === 14, "date.getUTCHours() = " + date.getUTCHours());
2117 date.setUTCHours(-123);
2118 ok(date.getTime() === -612549990, "date.getTime() = " + date.getTime());
2119 date.setUTCHours(20);
2120 ok(date.getUTCHours() === 20, "date.getUTCHours() = " + date.getUTCHours());
2121 date.setUTCDate(32);
2122 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
2123 date.setUTCMonth(22, 37);
2124 ok(date.getTime() === 60987050010, "date.getTime() = " + date.getTime());
2125 date.setUTCFullYear(83, 21, 321);
2126 ok(date.getTime() === -59464984149990, "date.getTime() = " + date.getTime());
2127 ok(Math.abs(date) === 59464984149990, "Math.abs(date) = " + Math.abs(date));
2128 ok(getVT(date+1) === "VT_BSTR", "getVT(date+1) = " + getVT(date+1));
2130 ok(isNaN(Date.parse()), "Date.parse() is not NaN");
2131 ok(isNaN(Date.parse("")), "Date.parse(\"\") is not NaN");
2132 ok(isNaN(Date.parse("Jan Jan 20 2009")), "Date.parse(\"Jan Jan 20 2009\") is not NaN");
2133 ok(Date.parse("Jan 20 2009 UTC") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC\") = " + Date.parse("Jan 20 2009 UTC"));
2134 ok(Date.parse("Jan 20 2009 GMT") === 1232409600000, "Date.parse(\"Jan 20 2009 GMT\") = " + Date.parse("Jan 20 2009 GMT"));
2135 ok(Date.parse("Jan 20 2009 UTC-0") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC-0\") = " + Date.parse("Jan 20 2009 UTC-0"));
2136 ok(Date.parse("Jan 20 2009 UTC+0000") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC+0000\") = " + Date.parse("Jan 20 2009 UTC+0000"));
2137 ok(Date.parse("Jan 20 2009 UTC-1") === 1232413200000, "Date.parse(\"Jan 20 2009 UTC-1\") = " + Date.parse("Jan 20 2009 UTC-1"));
2138 ok(Date.parse("Jan 20 2009 UTC+1") === 1232406000000, "Date.parse(\"Jan 20 2009 UTC+1\") = " + Date.parse("Jan 20 2009 UTC+1"));
2139 ok(Date.parse("Ju 13 79 UTC") === 300672000000, "Date.parse(\"Ju 13 79 UTC\") = " + Date.parse("Ju 13 79 UTC"));
2140 ok(Date.parse("12Au91 UTC") === 681955200000, "Date.parse(\"12Au91 UTC\") = " + Date.parse("12Au91 UTC"));
2141 ok(Date.parse("7/02/17 UTC") === -1656806400000, "Date.parse(\"7/02/17 UTC\") = " + Date.parse("7/02/17 UTC"));
2142 ok(Date.parse("Se001   70 12:31:17 UTC") === 21040277000, "Date.parse(\"Se001   70 12:31:17 UTC\") = " + Date.parse("Se001   70 12:31:17 UTC"));
2143 ok(Date.parse("February 31   UTC, 2000 12:31:17 PM") === 952000277000,
2144         "Date.parse(\"February 31   UTC, 2000 12:31:17 PM\") = " + Date.parse("February 31   UTC, 2000 12:31:17 PM"));
2145 ok(Date.parse("71 11:32AM Dec 12 UTC BC ") === -64346358480000, "Date.parse(\"71 11:32AM Dec 12 UTC BC \") = " + Date.parse("71 11:32AM Dec 12 UTC BC "));
2146 ok(Date.parse("23/71/2000 11::32::UTC") === 1010662320000, "Date.parse(\"23/71/2000 11::32::UTC\") = " + Date.parse("23/71/2000 11::32::UTC"));
2147 ok(Date.parse("1970/01/01") === Date.parse("01/01/1970"), "Date.parse(\"1970/01/01\") = " + Date.parse("1970/01/01"));
2148 ok(Date.parse("71/12/14") === Date.parse("12/14/1971"), "Date.parse(\"71/12/14\") = " + Date.parse("71/12/14"));
2149 ok(Date.parse("Tue, 22 Mar 2016 09:57:55 -0300") === Date.parse("Tue, 22 Mar 2016 09:57:55 GMT-0300"),
2150         "Date.parse(\"Tue, 22 Mar 2016 09:57:55 -0300\") = " + Date.parse("Tue, 22 Mar 2016 09:57:55 -0300"));
2151 ok(Date.parse("Tue, 22 Mar 2016 09:57:55 +0400") === Date.parse("Tue, 22 Mar 2016 09:57:55 UTC+0400"),
2152         "Date.parse(\"Tue, 22 Mar 2016 09:57:55 +0400\") = " + Date.parse("Tue, 22 Mar 2016 09:57:55 +0400"));
2154 tmp = (new Date()).toGMTString();
2155 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2156 tmp = (new Date()).toLocaleDateString();
2157 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2158 tmp = (new Date(1600, 1, 1, 0, 0, 0, 0)).toLocaleDateString();
2159 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2160 tmp = (new Date(1600, 1, 1, 0, 0, 0, 0)).toLocaleString();
2161 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2162 tmp = (new Date()).toLocaleTimeString();
2163 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2164 tmp = (new Date()).toString();
2165 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2166 tmp = (new Date()).toTimeString();
2167 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2168 tmp = (new Date()).toUTCString();
2169 ok(tmp.indexOf(String.fromCharCode(0)) == -1, "invalid null byte");
2171 ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI));
2172 ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI);
2173 Math.PI = "test";
2174 ok(Math.floor(Math.PI*100) === 314, "modified Math.PI = " + Math.PI);
2176 ok(typeof(Math.E) === "number", "typeof(Math.E) = " + typeof(Math.E));
2177 ok(Math.floor(Math.E*100) === 271, "Math.E = " + Math.E);
2178 Math.E = "test";
2179 ok(Math.floor(Math.E*100) === 271, "modified Math.E = " + Math.E);
2181 ok(typeof(Math.LOG2E) === "number", "typeof(Math.LOG2E) = " + typeof(Math.LOG2E));
2182 ok(Math.floor(Math.LOG2E*100) === 144, "Math.LOG2E = " + Math.LOG2E);
2183 Math.LOG2E = "test";
2184 ok(Math.floor(Math.LOG2E*100) === 144, "modified Math.LOG2E = " + Math.LOG2E);
2186 ok(typeof(Math.LOG10E) === "number", "typeof(Math.LOG10E) = " + typeof(Math.LOG10E));
2187 ok(Math.floor(Math.LOG10E*100) === 43, "Math.LOG10E = " + Math.LOG10E);
2188 Math.LOG10E = "test";
2189 ok(Math.floor(Math.LOG10E*100) === 43, "modified Math.LOG10E = " + Math.LOG10E);
2191 ok(typeof(Math.LN2) === "number", "typeof(Math.LN2) = " + typeof(Math.LN2));
2192 ok(Math.floor(Math.LN2*100) === 69, "Math.LN2 = " + Math.LN2);
2193 Math.LN2 = "test";
2194 ok(Math.floor(Math.LN2*100) === 69, "modified Math.LN2 = " + Math.LN2);
2196 ok(typeof(Math.LN10) === "number", "typeof(Math.LN10) = " + typeof(Math.LN10));
2197 ok(Math.floor(Math.LN10*100) === 230, "Math.LN10 = " + Math.LN10);
2198 Math.LN10 = "test";
2199 ok(Math.floor(Math.LN10*100) === 230, "modified Math.LN10 = " + Math.LN10);
2201 ok(typeof(Math.SQRT2) === "number", "typeof(Math.SQRT2) = " + typeof(Math.SQRT2));
2202 ok(Math.floor(Math.SQRT2*100) === 141, "Math.SQRT2 = " + Math.SQRT2);
2203 Math.SQRT2 = "test";
2204 ok(Math.floor(Math.SQRT2*100) === 141, "modified Math.SQRT2 = " + Math.SQRT2);
2206 ok(typeof(Math.SQRT1_2) === "number", "typeof(Math.SQRT1_2) = " + typeof(Math.SQRT1_2));
2207 ok(Math.floor(Math.SQRT1_2*100) === 70, "Math.SQRT1_2 = " + Math.SQRT1_2);
2208 Math.SQRT1_2 = "test";
2209 ok(Math.floor(Math.SQRT1_2*100) === 70, "modified Math.SQRT1_2 = " + Math.SQRT1_2);
2211 ok(isNaN.toString() === "\nfunction isNaN() {\n    [native code]\n}\n",
2212    "isNaN.toString = '" + isNaN.toString() + "'");
2213 ok(Array.toString() === "\nfunction Array() {\n    [native code]\n}\n",
2214    "isNaN.toString = '" + Array.toString() + "'");
2215 ok(Function.toString() === "\nfunction Function() {\n    [native code]\n}\n",
2216    "isNaN.toString = '" + Function.toString() + "'");
2217 ok(Function.prototype.toString() === "\nfunction prototype() {\n    [native code]\n}\n",
2218    "isNaN.toString = '" + Function.prototype.toString() + "'");
2219 ok("".substr.toString() === "\nfunction substr() {\n    [native code]\n}\n",
2220    "''.substr.toString = '" + "".substr.toString() + "'");
2222 var bool = new Boolean();
2223 ok(bool.toString() === "false", "bool.toString() = " + bool.toString());
2224 var bool = new Boolean("false");
2225 ok(bool.toString() === "true", "bool.toString() = " + bool.toString());
2226 ok(bool.valueOf() === Boolean(1), "bool.valueOf() = " + bool.valueOf());
2227 ok(bool.toLocaleString() === bool.toString(), "bool.toLocaleString() = " + bool.toLocaleString());
2229 ok(ActiveXObject instanceof Function, "ActiveXObject is not instance of Function");
2230 ok(ActiveXObject.prototype instanceof Object, "ActiveXObject.prototype is not instance of Object");
2232 ok(Error.prototype !== TypeError.prototype, "Error.prototype === TypeError.prototype");
2233 ok(RangeError.prototype !== TypeError.prototype, "RangeError.prototype === TypeError.prototype");
2234 ok(Error.prototype.toLocaleString === Object.prototype.toLocaleString,
2235         "Error.prototype.toLocaleString !== Object.prototype.toLocaleString");
2236 err = new Error();
2237 ok(err.valueOf === Object.prototype.valueOf, "err.valueOf !== Object.prototype.valueOf");
2238 ok(Error.prototype.name === "Error", "Error.prototype.name = " + Error.prototype.name);
2239 ok(err.name === "Error", "err.name = " + err.name);
2240 EvalError.prototype.message = "test";
2241 ok(EvalError.prototype.message === "test", "EvalError.prototype.message = " + EvalError.prototype.message);
2242 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
2243 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error"), "err.toString() = " + err.toString());
2244 err = new EvalError();
2245 ok(EvalError.prototype.name === "EvalError", "EvalError.prototype.name = " + EvalError.prototype.name);
2246 ok(err.name === "EvalError", "err.name = " + err.name);
2247 ok(err.toString === Error.prototype.toString, "err.toString !== Error.prototype.toString");
2248 ok(err.message === "", "err.message != ''");
2249 err.message = date;
2250 ok(err.message === date, "err.message != date");
2251 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "EvalError: "+err.message),
2252    "err.toString() = " + err.toString());
2253 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
2254 err = new RangeError();
2255 ok(RangeError.prototype.name === "RangeError", "RangeError.prototype.name = " + RangeError.prototype.name);
2256 ok(err.name === "RangeError", "err.name = " + err.name);
2257 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "RangeError"), "err.toString() = " + err.toString());
2258 err = new ReferenceError();
2259 ok(ReferenceError.prototype.name === "ReferenceError", "ReferenceError.prototype.name = " + ReferenceError.prototype.name);
2260 ok(err.name === "ReferenceError", "err.name = " + err.name);
2261 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "ReferenceError"), "err.toString() = " + err.toString());
2262 err = new SyntaxError();
2263 ok(SyntaxError.prototype.name === "SyntaxError", "SyntaxError.prototype.name = " + SyntaxError.prototype.name);
2264 ok(err.name === "SyntaxError", "err.name = " + err.name);
2265 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "SyntaxError"), "err.toString() = " + err.toString());
2266 err = new TypeError();
2267 ok(TypeError.prototype.name === "TypeError", "TypeError.prototype.name = " + TypeError.prototype.name);
2268 ok(err.name === "TypeError", "err.name = " + err.name);
2269 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "TypeError"), "err.toString() = " + err.toString());
2270 err = new URIError();
2271 ok(URIError.prototype.name === "URIError", "URIError.prototype.name = " + URIError.prototype.name);
2272 ok(err.name === "URIError", "err.name = " + err.name);
2273 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "URIError"), "err.toString() = " + err.toString());
2274 err = new Error("message");
2275 ok(err.message === "message", "err.message !== 'message'");
2276 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error: message"), "err.toString() = " + err.toString());
2277 err = new Error(123);
2278 ok(err.number === 123, "err.number = " + err.number);
2279 err.number = 254;
2280 ok(err.number === 254, "err.number = " + err.number);
2281 err = new Error(0, "message");
2282 ok(err.number === 0, "err.number = " + err.number);
2283 ok(err.message === "message", "err.message = " + err.message);
2284 ok(err.description === "message", "err.description = " + err.description);
2285 err = new Error();
2286 ok(err.number === 0, "err.number = " + err.number);
2287 ok(err.description === "", "err.description = " + err.description);
2288 err.description = 5;
2289 ok(err.description === 5, "err.description = " + err.description);
2290 ok(err.message === "", "err.message = " + err.message);
2291 err.message = 4;
2292 ok(err.message === 4, "err.message = " + err.message);
2294 ok(!("number" in Error), "number is in Error");
2296 tmp = new Object();
2297 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2298 tmp.toString = function() { return "test"; };
2299 ok(tmp.hasOwnProperty("toString") === true, "toString own property should exist");
2300 ok(tmp.hasOwnProperty("nonExisting") === false, "nonExisting property should not exist");
2302 tmp = Error.prototype.toString.call(tmp);
2303 ok(tmp === "[object Error]", "Error.prototype.toString.call(tmp) = " + tmp);
2305 tmp = function() { return 0; };
2306 tmp[0] = true;
2307 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2308 ok(tmp.hasOwnProperty("0") === true, "hasOwnProperty(0) returned false");
2309 ok(tmp.hasOwnProperty() === false, "hasOwnProperty() returned true");
2311 ok(Object.prototype.hasOwnProperty.call(testObj) === false, "hasOwnProperty without name returned true");
2313 if(invokeVersion >= 2) {
2314     obj = new Object();
2315     obj.name = "test";
2316     tmp = Error.prototype.toString.call(obj);
2317     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2319     obj = new Object();
2320     obj.name = 6;
2321     obj.message = false;
2322     tmp = Error.prototype.toString.call(obj);
2323     ok(tmp === "6: false", "Error.prototype.toString.call(obj) = " + tmp);
2325     obj = new Object();
2326     obj.message = "test";
2327     tmp = Error.prototype.toString.call(obj);
2328     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2330     obj = new Object();
2331     obj.name = "";
2332     obj.message = "test";
2333     tmp = Error.prototype.toString.call(obj);
2334     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2337 tmp = Error.prototype.toString.call(testObj);
2338 ok(tmp === "[object Error]", "Error.prototype.toString.call(testObj) = " + tmp);
2340 err = new Error();
2341 err.name = null;
2342 ok(err.name === null, "err.name = " + err.name + " expected null");
2343 if(invokeVersion >= 2)
2344     ok(err.toString() === "null", "err.toString() = " + err.toString());
2346 err = new Error();
2347 err.message = false;
2348 ok(err.message === false, "err.message = " + err.message + " expected false");
2349 if(invokeVersion >= 2)
2350     ok(err.toString() === "Error: false", "err.toString() = " + err.toString());
2352 err = new Error();
2353 err.message = new Object();
2354 err.message.toString = function() { return ""; };
2355 if(invokeVersion >= 2)
2356     ok(err.toString() === "Error", "err.toString() = " + err.toString());
2358 err = new Error();
2359 err.message = undefined;
2360 if(invokeVersion >= 2)
2361     ok(err.toString() === "Error", "err.toString() = " + err.toString());
2363 var exception_array = {
2364     E_INVALID_LENGTH:  { type: "RangeError",  number: -2146823259 },
2366     E_NOT_DATE:            { type: "TypeError",   number: -2146823282 },
2367     E_NOT_BOOL:            { type: "TypeError",   number: -2146823278 },
2368     E_ARG_NOT_OPT:         { type: "TypeError",   number: -2146827839 },
2369     E_NO_PROPERTY:         { type: "TypeError",   number: -2146827850 },
2370     E_NOT_NUM:             { type: "TypeError",   number: -2146823287 },
2371     E_INVALID_CALL_ARG:    { type: "TypeError",   number: -2146828283 },
2372     E_NOT_FUNC:            { type: "TypeError",   number: -2146823286 },
2373     E_OBJECT_EXPECTED:     { type: "TypeError", number: -2146823281 },
2374     E_OBJECT_REQUIRED:     { type: "TypeError", number: -2146827864 },
2375     E_UNSUPPORTED_ACTION:  { type: "TypeError", number: -2146827843 },
2376     E_NOT_VBARRAY:         { type: "TypeError", number: -2146823275 },
2377     E_INVALID_DELETE:      { type: "TypeError", number: -2146823276 },
2378     E_UNDEFINED:           { type: "TypeError", number: -2146823279 },
2379     E_JSCRIPT_EXPECTED:    { type: "TypeError", number: -2146823274 },
2380     E_NOT_ARRAY:           { type: "TypeError", number: -2146823257 },
2382     E_SYNTAX_ERROR:      { type: "SyntaxError",  number: -2146827286 },
2383     E_LBRACKET:          { type: "SyntaxError",  number: -2146827283 },
2384     E_RBRACKET:          { type: "SyntaxError",  number: -2146827282 },
2385     E_SEMICOLON:         { type: "SyntaxError",  number: -2146827284 },
2386     E_UNTERMINATED_STR:  { type: "SyntaxError",  number: -2146827273 },
2387     E_DISABLED_CC:       { type: "SyntaxError",  number: -2146827258 },
2388     E_INVALID_BREAK:     { type: "SyntaxError",  number: -2146827269 },
2389     E_INVALID_CONTINUE:  { type: "SyntaxError",  number: -2146827268 },
2390     E_LABEL_NOT_FOUND:   { type: "SyntaxError",  number: -2146827262 },
2391     E_LABEL_REDEFINED:   { type: "SyntaxError",  number: -2146827263 },
2392     E_MISPLACED_RETURN:  { type: "SyntaxError",  number: -2146827270 },
2394     E_ILLEGAL_ASSIGN:  { type: "ReferenceError", number: -2146823280 },
2396     E_PRECISION_OUT_OF_RANGE:        {type: "RangeError", number: -2146823261 },
2397     E_FRACTION_DIGITS_OUT_OF_RANGE:  {type: "RangeError", number: -2146823262 },
2398     E_SUBSCRIPT_OUT_OF_RANGE:        {type: "RangeError", number: -2146828279 },
2400     E_REGEXP_SYNTAX_ERROR:  { type: "RegExpError", number: -2146823271 },
2402     E_URI_INVALID_CHAR:     { type: "URIError", number: -2146823264 },
2403     E_URI_INVALID_CODING:   { type: "URIError", number: -2146823263 }
2406 function testException(func, id) {
2407     var ex = exception_array[id];
2408     var ret = "", num = "";
2410     try {
2411         func();
2412     } catch(e) {
2413         ret = e.name;
2414         num = e.number;
2415     }
2417     ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString());
2418     ok(num === ex.number, "Exception test, num = " + num + ", expected " + ex.number + ". Executed function: " + func.toString());
2421 // RangeError tests
2422 testException(function() {Array(-3);}, "E_INVALID_LENGTH");
2423 testException(function() {createArray().lbound("aaa");}, "E_SUBSCRIPT_OUT_OF_RANGE");
2424 testException(function() {createArray().lbound(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2425 testException(function() {createArray().getItem(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2427 // TypeError tests
2428 testException(function() {date.setTime();}, "E_ARG_NOT_OPT");
2429 testException(function() {date.setYear();}, "E_ARG_NOT_OPT");
2430 testException(function() {arr.test();}, "E_NO_PROPERTY");
2431 testException(function() {Number.prototype.toString.call(arr);}, "E_NOT_NUM");
2432 testException(function() {Number.prototype.toFixed.call(arr);}, "E_NOT_NUM");
2433 testException(function() {(new Number(3)).toString(1);}, "E_INVALID_CALL_ARG");
2434 testException(function() {(new Number(3)).toFixed(21);}, "E_FRACTION_DIGITS_OUT_OF_RANGE");
2435 testException(function() {(new Number(1)).toPrecision(0);}, "E_PRECISION_OUT_OF_RANGE");
2436 testException(function() {not_existing_variable.something();}, "E_UNDEFINED");
2437 testException(function() {date();}, "E_NOT_FUNC");
2438 testException(function() {arr();}, "E_NOT_FUNC");
2439 testException(function() {(new Object) instanceof (new Object);}, "E_NOT_FUNC");
2440 testException(function() {eval("nonexistingfunc()")}, "E_OBJECT_EXPECTED");
2441 testException(function() {(new Object()) instanceof 3;}, "E_NOT_FUNC");
2442 testException(function() {(new Object()) instanceof null;}, "E_NOT_FUNC");
2443 testException(function() {(new Object()) instanceof nullDisp;}, "E_NOT_FUNC");
2444 testException(function() {"test" in 3;}, "E_OBJECT_EXPECTED");
2445 testException(function() {"test" in null;}, "E_OBJECT_EXPECTED");
2446 testException(function() {"test" in nullDisp;}, "E_OBJECT_EXPECTED");
2447 testException(function() {new 3;}, "E_UNSUPPORTED_ACTION");
2448 testException(function() {new null;}, "E_OBJECT_EXPECTED");
2449 testException(function() {new nullDisp;}, "E_NO_PROPERTY");
2450 testException(function() {new VBArray();}, "E_NOT_VBARRAY");
2451 testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBARRAY");
2452 testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY");
2453 testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED");
2454 testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED");
2455 testException(function() {delete (new Object());}, "E_INVALID_DELETE");
2456 testException(function() {delete false;}, "E_INVALID_DELETE");
2457 testException(function() {undefined.toString();}, "E_OBJECT_EXPECTED");
2458 testException(function() {null.toString();}, "E_OBJECT_EXPECTED");
2460 obj = new Object();
2461 obj.prop = 1;
2462 tmp = false;
2463 testException(function() {delete ((tmp = true) ? obj.prop : obj.prop);}, "E_INVALID_DELETE");
2464 ok(tmp, "delete (..) expression not evaluated");
2466 //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED");
2467 //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED");
2470 // SyntaxError tests
2471 function testSyntaxError(code, id) {
2472     var ex = exception_array[id];
2473     var ret = "", num = "";
2475     try {
2476         eval(code);
2477     } catch(e) {
2478         ret = e.name;
2479         num = e.number;
2480     }
2482     ok(ret === ex.type, "Syntax exception test, ret = " + ret + ", expected " + ex.type +". Executed code: " + code);
2483     ok(num === ex.number, "Syntax exception test, num = " + num + ", expected " + ex.number + ". Executed code: " + code);
2486 testSyntaxError("for(i=0;) {}", "E_SYNTAX_ERROR");
2487 testSyntaxError("function {};", "E_LBRACKET");
2488 testSyntaxError("if", "E_LBRACKET");
2489 testSyntaxError("do i=0; while", "E_LBRACKET");
2490 testSyntaxError("while", "E_LBRACKET");
2491 testSyntaxError("for", "E_LBRACKET");
2492 testSyntaxError("with", "E_LBRACKET");
2493 testSyntaxError("switch", "E_LBRACKET");
2494 testSyntaxError("if(false", "E_RBRACKET");
2495 testSyntaxError("for(i=0; i<10; i++", "E_RBRACKET");
2496 testSyntaxError("while(true", "E_RBRACKET");
2497 testSyntaxError("for(i=0", "E_SEMICOLON");
2498 testSyntaxError("for(i=0;i<10", "E_SEMICOLON");
2499 testSyntaxError("while(", "E_SYNTAX_ERROR");
2500 testSyntaxError("if(", "E_SYNTAX_ERROR");
2501 testSyntaxError("'unterminated", "E_UNTERMINATED_STR");
2502 testSyntaxError("*", "E_SYNTAX_ERROR");
2503 testSyntaxError("@_jscript_version", "E_DISABLED_CC");
2504 testSyntaxError("@a", "E_DISABLED_CC");
2505 testSyntaxError("/* @cc_on @*/ @_jscript_version", "E_DISABLED_CC");
2506 testSyntaxError("ok(false, 'unexpected execution'); break;", "E_INVALID_BREAK");
2507 testSyntaxError("ok(false, 'unexpected execution'); continue;", "E_INVALID_CONTINUE");
2508 testSyntaxError("ok(false, 'unexpected execution'); while(true) break unknown_label;", "E_LABEL_NOT_FOUND");
2509 testSyntaxError("ok(false, 'unexpected execution'); some_label: continue some_label;", "E_INVALID_CONTINUE");
2510 testSyntaxError("ok(false, 'unexpected execution'); while(true) continue some_label;", "E_LABEL_NOT_FOUND");
2511 testSyntaxError("ok(false, 'unexpected execution'); some_label: { while(true) continue some_label; }", "E_INVALID_CONTINUE");
2512 testSyntaxError("ok(false, 'unexpected execution'); some_label: { some_label: while(true); }", "E_LABEL_REDEFINED");
2513 testSyntaxError("return;", "E_MISPLACED_RETURN");
2514 testSyntaxError("001.5;", "E_SEMICOLON");
2515 testSyntaxError("001.5", "E_SEMICOLON");
2516 testSyntaxError("0a", "E_SEMICOLON");
2517 testSyntaxError("01a", "E_SEMICOLON");
2518 testSyntaxError("0x1r", "E_SEMICOLON");
2519 testSyntaxError("1a", "E_SEMICOLON");
2520 testSyntaxError("1_", "E_SEMICOLON");
2522 // ReferenceError tests
2523 testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN");
2525 tmp = false;
2526 testException(function() {test = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2527 ok(tmp, "expr value on invalid assign not evaluated");
2529 tmp = false;
2530 testException(function() {(tmp = true) = false;}, "E_ILLEGAL_ASSIGN");
2531 ok(tmp, "expr assign not evaluated");
2533 tmp = false;
2534 testException(function() {true = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2535 ok(tmp, "expr value assign not evaluated");
2537 tmp = "";
2538 testException(function() {(tmp = tmp+"1") = (tmp = tmp+"2");}, "E_ILLEGAL_ASSIGN");
2539 ok(tmp === "12", "assign evaluated in unexpected order");
2541 tmp = false;
2542 testException(function() { ((tmp = true) && false)++; }, "E_ILLEGAL_ASSIGN")
2543 ok(tmp, "incremented expression not evaluated");
2545 // RegExpError tests
2546 testException(function() {RegExp(/a/, "g");}, "E_REGEXP_SYNTAX_ERROR");
2548 // URIError tests
2549 testException(function() {encodeURI('\udcaa');}, "E_URI_INVALID_CHAR");
2550 testException(function() {encodeURIComponent('\udcaa');}, "E_URI_INVALID_CHAR");
2551 testException(function() {decodeURI('%');}, "E_URI_INVALID_CODING");
2552 testException(function() {decodeURI('%aaaa');}, "E_URI_INVALID_CODING");
2554 function testThisExcept(func, e) {
2555     testException(function() {func.call(new Object())}, e);
2558 function testBoolThis(func) {
2559     testThisExcept(Boolean.prototype[func], "E_NOT_BOOL");
2562 testBoolThis("toString");
2563 testBoolThis("valueOf");
2565 function testDateThis(func) {
2566     testThisExcept(Date.prototype[func], "E_NOT_DATE");
2569 testDateThis("getDate");
2570 testDateThis("getDay");
2571 testDateThis("getFullYear");
2572 testDateThis("getHours");
2573 testDateThis("getMilliseconds");
2574 testDateThis("getMinutes");
2575 testDateThis("getMonth");
2576 testDateThis("getSeconds");
2577 testDateThis("getTime");
2578 testDateThis("getTimezoneOffset");
2579 testDateThis("getUTCDate");
2580 testDateThis("getUTCDay");
2581 testDateThis("getUTCFullYear");
2582 testDateThis("getUTCHours");
2583 testDateThis("getUTCMilliseconds");
2584 testDateThis("getUTCMinutes");
2585 testDateThis("getUTCMonth");
2586 testDateThis("getUTCSeconds");
2587 testDateThis("getYear");
2588 testDateThis("setDate");
2589 testDateThis("setFullYear");
2590 testDateThis("setHours");
2591 testDateThis("setMilliseconds");
2592 testDateThis("setMinutes");
2593 testDateThis("setMonth");
2594 testDateThis("setSeconds");
2595 testDateThis("setTime");
2596 testDateThis("setUTCDate");
2597 testDateThis("setUTCFullYear");
2598 testDateThis("setUTCHours");
2599 testDateThis("setUTCMilliseconds");
2600 testDateThis("setUTCMinutes");
2601 testDateThis("setUTCMonth");
2602 testDateThis("setUTCSeconds");
2603 testDateThis("setYear");
2604 testDateThis("toDateString");
2605 testDateThis("toLocaleDateString");
2606 testDateThis("toLocaleString");
2607 testDateThis("toLocaleTimeString");
2608 testDateThis("toString");
2609 testDateThis("toTimeString");
2610 testDateThis("toUTCString");
2611 testDateThis("valueOf");
2613 function testArrayThis(func) {
2614     testThisExcept(Array.prototype[func], "E_NOT_ARRAY");
2617 testArrayThis("toString");
2619 function testFunctionThis(func) {
2620     testThisExcept(Function.prototype[func], "E_NOT_FUNC");
2623 testFunctionThis("toString");
2624 testFunctionThis("call");
2625 testFunctionThis("apply");
2627 function testArrayHostThis(func) {
2628     testException(function() { Array.prototype[func].call(testObj); }, "E_JSCRIPT_EXPECTED");
2631 testArrayHostThis("push");
2632 testArrayHostThis("shift");
2633 testArrayHostThis("slice");
2634 testArrayHostThis("splice");
2635 testArrayHostThis("unshift");
2636 testArrayHostThis("reverse");
2637 testArrayHostThis("join");
2638 testArrayHostThis("pop");
2639 testArrayHostThis("sort");
2641 function testObjectInherit(obj, constr, ts, tls, vo) {
2642     ok(obj instanceof Object, "obj is not instance of Object");
2643     ok(obj instanceof constr, "obj is not instance of its constructor");
2645     ok(obj.hasOwnProperty === Object.prototype.hasOwnProperty,
2646        "obj.hasOwnProperty !== Object.prototype.hasOwnProprty");
2647     ok(obj.isPrototypeOf === Object.prototype.isPrototypeOf,
2648        "obj.isPrototypeOf !== Object.prototype.isPrototypeOf");
2649     ok(obj.propertyIsEnumerable === Object.prototype.propertyIsEnumerable,
2650        "obj.propertyIsEnumerable !== Object.prototype.propertyIsEnumerable");
2652     if(ts)
2653         ok(obj.toString === Object.prototype.toString,
2654            "obj.toString !== Object.prototype.toString");
2655     else
2656         ok(obj.toString != Object.prototype.toString,
2657            "obj.toString == Object.prototype.toString");
2659     if(tls)
2660         ok(obj.toLocaleString === Object.prototype.toLocaleString,
2661            "obj.toLocaleString !== Object.prototype.toLocaleString");
2662     else
2663         ok(obj.toLocaleString != Object.prototype.toLocaleString,
2664            "obj.toLocaleString == Object.prototype.toLocaleString");
2666     if(vo)
2667         ok(obj.valueOf === Object.prototype.valueOf,
2668            "obj.valueOf !== Object.prototype.valueOf");
2669     else
2670         ok(obj.valueOf != Object.prototype.valueOf,
2671            "obj.valueOf == Object.prototype.valueOf");
2673     ok(obj._test === "test", "obj.test = " + obj._test);
2676 Object.prototype._test = "test";
2677 testObjectInherit(new String("test"), String, false, true, false);
2678 testObjectInherit(/test/g, RegExp, false, true, true);
2679 testObjectInherit(new Number(1), Number, false, false, false);
2680 testObjectInherit(new Date(), Date, false, false, false);
2681 testObjectInherit(new Boolean(true), Boolean, false, true, false);
2682 testObjectInherit(new Array(), Array, false, false, true);
2683 testObjectInherit(new Error(), Error, false, true, true);
2684 testObjectInherit(testObjectInherit, Function, false, true, true);
2685 testObjectInherit(Math, Object, true, true, true);
2687 (function() { testObjectInherit(arguments, Object, true, true, true); })();
2689 function testFunctions(obj, arr) {
2690     var l;
2692     for(var i=0; i<arr.length; i++) {
2693         l = obj[arr[i][0]].length;
2694         ok(l === arr[i][1], arr[i][0] + ".length = " + l);
2696         ok(obj.propertyIsEnumerable(arr[i][0]) === false, arr[i][0] + " is enumerable");
2697     }
2700 testFunctions(Boolean.prototype, [
2701         ["valueOf", 0],
2702         ["toString", 0]
2703     ]);
2705 testFunctions(Number.prototype, [
2706         ["valueOf", 0],
2707         ["toString", 1],
2708         ["toExponential", 1],
2709         ["toLocaleString", 0],
2710         ["toPrecision", 1]
2711     ]);
2713 testFunctions(String.prototype, [
2714         ["valueOf", 0],
2715         ["toString", 0],
2716         ["anchor", 1],
2717         ["big", 0],
2718         ["blink", 0],
2719         ["bold", 0],
2720         ["charAt", 1],
2721         ["charCodeAt", 1],
2722         ["concat", 1],
2723         ["fixed", 0],
2724         ["fontcolor", 1],
2725         ["fontsize", 1],
2726         ["indexOf", 2],
2727         ["italics", 0],
2728         ["lastIndexOf", 2],
2729         ["link", 1],
2730         ["localeCompare", 1],
2731         ["match", 1],
2732         ["replace", 1],
2733         ["search", 0],
2734         ["slice", 0],
2735         ["small", 0],
2736         ["split", 2],
2737         ["strike", 0],
2738         ["sub", 0],
2739         ["substr", 2],
2740         ["substring", 2],
2741         ["sup", 0],
2742         ["toLocaleLowerCase", 0],
2743         ["toLocaleUpperCase", 0],
2744         ["toLowerCase", 0],
2745         ["toUpperCase", 0]
2746     ]);
2748 testFunctions(RegExp.prototype, [
2749         ["toString", 0],
2750         ["exec", 1],
2751         ["test", 1]
2752     ]);
2754 testFunctions(Date.prototype, [
2755         ["getDate", 0],
2756         ["getDay", 0],
2757         ["getFullYear", 0],
2758         ["getHours", 0],
2759         ["getMilliseconds", 0],
2760         ["getMinutes", 0],
2761         ["getMonth", 0],
2762         ["getSeconds", 0],
2763         ["getTime", 0],
2764         ["getTimezoneOffset", 0],
2765         ["getUTCDate", 0],
2766         ["getUTCDay", 0],
2767         ["getUTCFullYear", 0],
2768         ["getUTCHours", 0],
2769         ["getUTCMilliseconds", 0],
2770         ["getUTCMinutes", 0],
2771         ["getUTCMonth", 0],
2772         ["getUTCSeconds", 0],
2773         ["getYear", 0],
2774         ["setDate", 1],
2775         ["setFullYear", 3],
2776         ["setHours", 4],
2777         ["setMilliseconds", 1],
2778         ["setMinutes", 3],
2779         ["setMonth", 2],
2780         ["setSeconds", 2],
2781         ["setTime", 1],
2782         ["setUTCDate", 1],
2783         ["setUTCFullYear", 3],
2784         ["setUTCHours", 4],
2785         ["setUTCMilliseconds", 1],
2786         ["setUTCMinutes", 3],
2787         ["setUTCMonth", 2],
2788         ["setUTCSeconds", 2],
2789         ["setYear", 1],
2790         ["toDateString", 0],
2791         ["toLocaleDateString", 0],
2792         ["toLocaleString", 0],
2793         ["toLocaleTimeString", 0],
2794         ["toString", 0],
2795         ["toTimeString", 0],
2796         ["toUTCString", 0],
2797         ["toGMTString", 0],
2798         ["valueOf", 0]
2799     ]);
2801 testFunctions(Array.prototype, [
2802         ["concat", 1],
2803         ["join", 1],
2804         ["push", 1],
2805         ["pop", 0],
2806         ["reverse", 0],
2807         ["shift", 0],
2808         ["slice", 2],
2809         ["sort", 1],
2810         ["splice", 2],
2811         ["toLocaleString", 0],
2812         ["toString", 0],
2813         ["unshift", 1]
2814     ]);
2816 testFunctions(Error.prototype, [
2817         ["toString", 0]
2818     ]);
2820 testFunctions(Math, [
2821         ["abs", 1],
2822         ["acos", 1],
2823         ["asin", 1],
2824         ["atan", 1],
2825         ["atan2", 2],
2826         ["ceil", 1],
2827         ["cos", 1],
2828         ["exp", 1],
2829         ["floor", 1],
2830         ["log", 1],
2831         ["max", 2],
2832         ["min", 2],
2833         ["pow", 2],
2834         ["random", 0],
2835         ["round", 1],
2836         ["sin", 1],
2837         ["sqrt", 1],
2838         ["tan", 1]
2839     ]);
2841 testFunctions(Object.prototype, [
2842         ["hasOwnProperty", 1],
2843         ["isPrototypeOf", 1],
2844         ["propertyIsEnumerable", 1],
2845         ["toLocaleString", 0],
2846         ["toString", 0],
2847         ["valueOf", 0]
2848     ]);
2850 testFunctions(Function.prototype, [
2851         ["apply", 2],
2852         ["call", 1],
2853         ["toString", 0]
2854     ]);
2856 testFunctions(VBArray.prototype, [
2857         ["dimensions", 0],
2858         ["getItem", 1],
2859         ["lbound", 0],
2860         ["toArray", 0],
2861         ["ubound", 0]
2864 if(invokeVersion < 2)
2865     ok(typeof(JSON) === "undefined", "JSON is not undefined");
2866 else
2867     testFunctions(JSON, [
2868         ["parse", 2],
2869         ["stringify", 3]
2870     ]);
2872 ok(ActiveXObject.length == 1, "ActiveXObject.length = " + ActiveXObject.length);
2873 ok(Array.length == 1, "Array.length = " + Array.length);
2874 ok(Boolean.length == 1, "Boolean.length = " + Boolean.length);
2875 ok(CollectGarbage.length == 0, "CollectGarbage.length = " + CollectGarbage.length);
2876 ok(Date.length == 7, "Date.length = " + Date.length);
2877 ok(Enumerator.length == 7, "Enumerator.length = " + Enumerator.length);
2878 ok(Error.length == 1, "Error.length = " + Error.length);
2879 ok(EvalError.length == 1, "EvalError.length = " + EvalError.length);
2880 ok(RegExpError.length == 1, "RegExpError.length = " + RegExpError.length);
2881 ok(Function.length == 1, "Function.length = " + Function.length);
2882 ok(GetObject.length == 2, "GetObject.length = " + GetObject.length);
2883 ok(Number.length == 1, "Number.length = " + Number.length);
2884 ok(Object.length == 0, "Object.length = " + Object.length);
2885 ok(RangeError.length == 1, "RangeError.length = " + RangeError.length);
2886 ok(ReferenceError.length == 1, "ReferenceError.length = " + ReferenceError.length);
2887 ok(RegExp.length == 2, "RegExp.length = " + RegExp.length);
2888 ok(ScriptEngine.length == 0, "ScriptEngine.length = " + ScriptEngine.length);
2889 ok(ScriptEngineBuildVersion.length == 0,
2890     "ScriptEngineBuildVersion.length = " + ScriptEngineBuildVersion.length);
2891 ok(ScriptEngineMajorVersion.length == 0,
2892     "ScriptEngineMajorVersion.length = " + ScriptEngineMajorVersion.length);
2893 ok(ScriptEngineMinorVersion.length == 0,
2894     "ScriptEngineMinorVersion.length = " + ScriptEngineMinorVersion.length);
2895 ok(String.length == 1, "String.length = " + String.length);
2896 ok(SyntaxError.length == 1, "SyntaxError.length = " + SyntaxError.length);
2897 ok(TypeError.length == 1, "TypeError.length = " + TypeError.length);
2898 ok(URIError.length == 1, "URIError.length = " + URIError.length);
2899 ok(VBArray.length == 1, "VBArray.length = " + VBArray.length);
2900 ok(decodeURI.length == 1, "decodeURI.length = " + decodeURI.length);
2901 ok(decodeURIComponent.length == 1, "decodeURIComponent.length = " + decodeURIComponent.length);
2902 ok(encodeURI.length == 1, "encodeURI.length = " + encodeURI.length);
2903 ok(encodeURIComponent.length == 1, "encodeURIComponent.length = " + encodeURIComponent.length);
2904 ok(escape.length == 1, "escape.length = " + escape.length);
2905 ok(eval.length == 1, "eval.length = " + eval.length);
2906 ok(isFinite.length == 1, "isFinite.length = " + isFinite.length);
2907 ok(isNaN.length == 1, "isNaN.length = " + isNaN.length);
2908 ok(parseFloat.length == 1, "parseFloat.length = " + parseFloat.length);
2909 ok(parseInt.length == 2, "parseInt.length = " + parseInt.length);
2910 ok(unescape.length == 1, "unescape.length = " + unescape.length);
2912 String.length = 3;
2913 ok(String.length == 1, "String.length = " + String.length);
2915 var tmp = createArray();
2916 ok(getVT(tmp) == "VT_ARRAY|VT_VARIANT", "getVT(createArray()) = " + getVT(tmp));
2917 ok(getVT(VBArray(tmp)) == "VT_ARRAY|VT_VARIANT", "getVT(VBArray(tmp)) = " + getVT(VBArray(tmp)));
2918 tmp = new VBArray(tmp);
2919 tmp = new VBArray(VBArray(createArray()));
2920 ok(tmp.dimensions() == 2, "tmp.dimensions() = " + tmp.dimensions());
2921 ok(tmp.lbound() == 0, "tmp.lbound() = " + tmp.lbound());
2922 ok(tmp.lbound(1) == 0, "tmp.lbound(1) = " + tmp.lbound(1));
2923 ok(tmp.lbound(2, 1) == 2, "tmp.lbound(2, 1) = " + tmp.lbound(2, 1));
2924 ok(tmp.ubound() == 4, "tmp.ubound() = " + tmp.ubound());
2925 ok(tmp.ubound("2") == 3, "tmp.ubound(\"2\") = " + tmp.ubound("2"));
2926 ok(tmp.getItem(1, 2) == 3, "tmp.getItem(1, 2) = " + tmp.getItem(1, 2));
2927 ok(tmp.getItem(2, 3) == 33, "tmp.getItem(2, 3) = " + tmp.getItem(2, 3));
2928 ok(tmp.getItem(3, 2) == 13, "tmp.getItem(3, 2) = " + tmp.getItem(3, 2));
2929 ok(tmp.toArray() == "2,3,12,13,22,23,32,33,42,43", "tmp.toArray() = " + tmp.toArray());
2930 ok(createArray().toArray() == "2,3,12,13,22,23,32,33,42,43",
2931         "createArray.toArray()=" + createArray().toArray());
2933 reportSuccess();