Add AppDefaults app selection to control panel
[wine/gsoc-2012-control.git] / dlls / jscript / tests / api.js
blobc998fa64fb701ff54f581f4e722c1f29544f50c7
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 i = parseInt("0");
30 ok(i === 0, "parseInt('0') = " + i);
31 i = parseInt("123");
32 ok(i === 123, "parseInt('123') = " + i);
33 i = parseInt("-123");
34 ok(i === -123, "parseInt('-123') = " + i);
35 i = parseInt("0xff");
36 ok(i === 0xff, "parseInt('0xff') = " + i);
37 i = parseInt("11", 8);
38 ok(i === 9, "parseInt('11', 8) = " + i);
39 i = parseInt("1j", 22);
40 ok(i === 41, "parseInt('1j', 32) = " + i);
41 i = parseInt("123", 0);
42 ok(i === 123, "parseInt('123', 0) = " + i);
43 i = parseInt("123", 10, "test");
44 ok(i === 123, "parseInt('123', 10, 'test') = " + i);
45 i = parseInt("11", "8");
46 ok(i === 9, "parseInt('11', '8') = " + i);
47 i = parseInt("010");
48 ok(i === 8, "parseInt('010') = " + i);
49 i = parseInt("");
50 ok(isNaN(i), "parseInt('') = " + i);
51 i = parseInt("0x");
52 ok(isNaN(i), "parseInt('0x') = " + i);
53 i = parseInt("+");
54 ok(isNaN(i), "parseInt('+') = " + i);
55 i = parseInt("-");
56 ok(isNaN(i), "parseInt('-') = " + i);
57 i = parseInt("0x10", 11);
58 ok(i === 0, "parseInt('0x10', 11) = " + i);
59 i = parseInt("010", 7);
60 ok(i === 7, "parseInt('010', 7) = " + i);
61 i = parseInt("123abc");
62 ok(i === 123, "parseInt('123abc') = " + i);
63 i = parseInt("   \t123abc");
64 ok(i === 123, "parseInt('   \\t123abc') = " + i);
65 i = parseInt("abc");
66 ok(isNaN(i), "parseInt('123abc') = " + i);
67 i = parseInt("-12", 11);
68 ok(i === -13, "parseInt('-12') = " + i);
69 i = parseInt("-0x10");
70 ok(i === -16, "parseInt('-0x10') = " + i);
71 i = parseInt("-010");
72 ok(i === -8, "parseInt('-010') = " + i);
73 i = parseInt("123", 0);
74 ok(i === 123, "parseInt('123', 0) = " + i);
75 i = parseInt("0x10", 0);
76 ok(i === 16, "parseInt('123', 0) = " + i);
77 i = parseInt("0x10", 10);
78 ok(i === 0, "parseInt('0x10', 10) = " + i);
79 i = parseInt("0xz");
80 ok(isNaN(i), "parseInt('0xz') = " + i);
81 i = parseInt("1", 1);
82 ok(isNaN(i), "parseInt('1', 1) = " + i);
83 i = parseInt("1", -1);
84 ok(isNaN(i), "parseInt('1', -1) = " + i);
85 i = parseInt("1", 37);
86 ok(isNaN(i), "parseInt('1', 37) = " + i);
87 i = parseInt("1", 36);
88 ok(i === 1, "parseInt('1', 36) = " + i);
90 tmp = encodeURI("abc");
91 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
92 tmp = encodeURI("{abc}");
93 ok(tmp === "%7Babc%7D", "encodeURI('{abc}') = " + tmp);
94 tmp = encodeURI("");
95 ok(tmp === "", "encodeURI('') = " + tmp);
96 tmp = encodeURI("\01\02\03\04");
97 ok(tmp === "%01%02%03%04", "encodeURI('\\01\\02\\03\\04') = " + tmp);
98 tmp = encodeURI("{#@}");
99 ok(tmp === "%7B#@%7D", "encodeURI('{#@}') = " + tmp);
100 tmp = encodeURI("\xa1 ");
101 ok(tmp === "%C2%A1%20", "encodeURI(\\xa1 ) = " + tmp);
102 tmp = encodeURI("\xffff");
103 ok(tmp.length === 8, "encodeURI('\\xffff').length = " + tmp.length);
104 tmp = encodeURI("abcABC123;/?:@&=+$,-_.!~*'()");
105 ok(tmp === "abcABC123;/?:@&=+$,-_.!~*'()", "encodeURI('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
106 tmp = encodeURI("%");
107 ok(tmp === "%25", "encodeURI('%') = " + tmp);
108 tmp = encodeURI();
109 ok(tmp === "undefined", "encodeURI() = " + tmp);
110 tmp = encodeURI("abc", "test");
111 ok(tmp === "abc", "encodeURI('abc') = " + tmp);
113 tmp = decodeURI("abc");
114 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
115 tmp = decodeURI("{abc}");
116 ok(tmp === "{abc}", "decodeURI('{abc}') = " + tmp);
117 tmp = decodeURI("");
118 ok(tmp === "", "decodeURI('') = " + tmp);
119 tmp = decodeURI("\01\02\03\04");
120 ok(tmp === "\01\02\03\04", "decodeURI('\\01\\02\\03\\04') = " + tmp);
121 tmp = decodeURI();
122 ok(tmp === "undefined", "decodeURI() = " + tmp);
123 tmp = decodeURI("abc", "test");
124 ok(tmp === "abc", "decodeURI('abc') = " + tmp);
125 tmp = decodeURI("%7babc%7d");
126 ok(tmp === "{abc}", "decodeURI('%7Babc%7D') = " + tmp);
127 tmp = decodeURI("%01%02%03%04");
128 ok(tmp === "\01\02\03\04", "decodeURI('%01%02%03%04') = " + tmp);
129 tmp = decodeURI("%C2%A1%20");
130 ok(tmp === "\xa1 ", "decodeURI('%C2%A1%20') = " + tmp);
131 tmp = decodeURI("%C3%BFff");
132 ok(tmp.length === 3, "decodeURI('%C3%BFff').length = " + tmp.length);
134 tmp = encodeURIComponent("abc");
135 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
136 dec = decodeURIComponent(tmp);
137 ok(dec === "abc", "decodeURIComponent('" + tmp + "') = " + dec);
138 tmp = encodeURIComponent("{abc}");
139 ok(tmp === "%7Babc%7D", "encodeURIComponent('{abc}') = " + tmp);
140 dec = decodeURIComponent(tmp);
141 ok(dec === "{abc}", "decodeURIComponent('" + tmp + "') = " + dec);
142 tmp = encodeURIComponent("");
143 ok(tmp === "", "encodeURIComponent('') = " + tmp);
144 dec = decodeURIComponent(tmp);
145 ok(dec === "", "decodeURIComponent('" + tmp + "') = " + dec);
146 tmp = encodeURIComponent("\01\02\03\04");
147 ok(tmp === "%01%02%03%04", "encodeURIComponent('\\01\\02\\03\\04') = " + tmp);
148 dec = decodeURIComponent(tmp);
149 ok(dec === "\01\02\03\04", "decodeURIComponent('" + tmp + "') = " + dec);
150 tmp = encodeURIComponent("{#@}");
151 ok(tmp === "%7B%23%40%7D", "encodeURIComponent('{#@}') = " + tmp);
152 dec = decodeURIComponent(tmp);
153 ok(dec === "{#@}", "decodeURIComponent('" + tmp + "') = " + dec);
154 tmp = encodeURIComponent("\xa1 ");
155 ok(tmp === "%C2%A1%20", "encodeURIComponent(\\xa1 ) = " + tmp);
156 dec = decodeURIComponent(tmp);
157 ok(dec === "\xa1 ", "decodeURIComponent('" + tmp + "') = " + dec);
158 tmp = encodeURIComponent("\xffff");
159 ok(tmp.length === 8, "encodeURIComponent('\\xffff').length = " + tmp.length);
160 dec = decodeURIComponent(tmp);
161 ok(dec === "\xffff", "decodeURIComponent('" + tmp + "') = " + dec);
162 tmp = encodeURIComponent("abcABC123;/?:@&=+$,-_.!~*'()");
163 ok(tmp === "abcABC123%3B%2F%3F%3A%40%26%3D%2B%24%2C-_.!~*'()", "encodeURIComponent('abcABC123;/?:@&=+$,-_.!~*'()') = " + tmp);
164 dec = decodeURIComponent(tmp);
165 ok(dec === "abcABC123;/?:@&=+$,-_.!~*'()", "decodeURIComponent('" + tmp + "') = " + dec);
166 tmp = encodeURIComponent();
167 ok(tmp === "undefined", "encodeURIComponent() = " + tmp);
168 tmp = encodeURIComponent("abc", "test");
169 ok(tmp === "abc", "encodeURIComponent('abc') = " + tmp);
170 dec = decodeURIComponent();
171 ok(dec === "undefined", "decodeURIComponent() = " + dec);
172 dec = decodeURIComponent("abc", "test");
173 ok(dec === "abc", "decodeURIComponent('abc') = " + dec);
175 tmp = escape("abc");
176 ok(tmp === "abc", "escape('abc') = " + tmp);
177 tmp = escape("");
178 ok(tmp === "", "escape('') = " + tmp);
179 tmp = escape("a1b c!d+e@*-_+./,");
180 ok(tmp === "a1b%20c%21d+e@*-_+./%2C", "escape('a1b c!d+e@*-_+./,') = " + tmp);
181 tmp = escape();
182 ok(tmp === "undefined", "escape() = " + tmp);
183 tmp = escape('\u1234\123\xf3');
184 ok(tmp == "%u1234S%F3", "escape('\u1234\123\xf3') = " + tmp);
186 tmp = unescape("abc");
187 ok(tmp === "abc", "unescape('abc') = " + tmp);
188 tmp = unescape("");
189 ok(tmp === "", "unescape('') = " + tmp);
190 tmp = unescape("%%%");
191 ok(tmp === "%%%", "unescape('%%%') = " + tmp);
192 tmp = unescape();
193 ok(tmp === "undefined", "unescape() = " + tmp);
194 tmp = unescape("%54%65s%u0074");
195 ok(tmp === "Test", "unescape('%54%65s%u0074') = " + tmp);
197 tmp = "aA1~`!@#$%^&*()_+=-][{}';:/.,<>?\|";
198 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));
199 ok(unescape(escape(tmp)) === tmp, "unescape(escape('" + tmp + "')) = " + unescape(escape(tmp)));
201 ok(Object.prototype.hasOwnProperty('toString'), "Object.prototype.hasOwnProperty('toString') is false");
202 ok(Object.prototype.hasOwnProperty('isPrototypeOf'), "Object.prototype.hasOwnProperty('isPrototypeOf') is false");
203 ok(Function.prototype.hasOwnProperty('call'), "Function.prototype.hasOwnProperty('call') is false");
205 obj = new Object();
207 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
208 ok(!obj.hasOwnProperty('isPrototypeOf'), "obj.hasOwnProperty('isPrototypeOf') is true");
209 ok(!Object.hasOwnProperty('toString'), "Object.hasOwnProperty('toString') is true");
210 ok(!Object.hasOwnProperty('isPrototypeOf'), "Object.hasOwnProperty('isPrototypeOf') is true");
211 ok(!parseFloat.hasOwnProperty('call'), "parseFloat.hasOwnProperty('call') is true");
212 ok(!Function.hasOwnProperty('call'), "Function.hasOwnProperty('call') is true");
214 obj = new Array();
215 ok(Array.prototype.hasOwnProperty('sort'), "Array.prototype.hasOwnProperty('sort') is false");
216 ok(Array.prototype.hasOwnProperty('length'), "Array.prototype.hasOwnProperty('length') is false");
217 ok(!obj.hasOwnProperty('sort'), "obj.hasOwnProperty('sort') is true");
218 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is true");
220 obj = new Boolean(false);
221 ok(!obj.hasOwnProperty('toString'), "obj.hasOwnProperty('toString') is true");
222 ok(!Boolean.hasOwnProperty('toString'), "Boolean.hasOwnProperty('toString') is true");
223 ok(Boolean.prototype.hasOwnProperty('toString'), "Boolean.prototype.hasOwnProperty('toString') is false");
225 obj = new Date();
226 ok(!obj.hasOwnProperty('getTime'), "obj.hasOwnProperty('getTime') is true");
227 ok(!Date.hasOwnProperty('getTime'), "Date.hasOwnProperty('getTime') is true");
228 ok(Date.prototype.hasOwnProperty('getTime'), "Date.prototype.hasOwnProperty('getTime') is false");
230 obj = new Number();
231 ok(!obj.hasOwnProperty('toFixed'), "obj.hasOwnProperty('toFixed') is true");
232 ok(!Number.hasOwnProperty('toFixed'), "Number.hasOwnProperty('toFixed') is true");
233 ok(Number.prototype.hasOwnProperty('toFixed'), "Number.prototype.hasOwnProperty('toFixed') is false");
235 obj = /x/;
236 ok(!obj.hasOwnProperty('exec'), "obj.hasOwnProperty('exec') is true");
237 ok(obj.hasOwnProperty('source'), "obj.hasOwnProperty('source') is false");
238 ok(!RegExp.hasOwnProperty('exec'), "RegExp.hasOwnProperty('exec') is true");
239 ok(!RegExp.hasOwnProperty('source'), "RegExp.hasOwnProperty('source') is true");
240 ok(RegExp.prototype.hasOwnProperty('source'), "RegExp.prototype.hasOwnProperty('source') is false");
242 obj = new String();
243 ok(!obj.hasOwnProperty('charAt'), "obj.hasOwnProperty('charAt') is true");
244 ok(obj.hasOwnProperty('length'), "obj.hasOwnProperty('length') is false");
245 ok(!String.hasOwnProperty('charAt'), "String.hasOwnProperty('charAt') is true");
246 ok(String.prototype.hasOwnProperty('charAt'), "String.prototype.hasOwnProperty('charAt') is false");
247 ok(String.prototype.hasOwnProperty('length'), "String.prototype.hasOwnProperty('length') is false");
249 tmp = "" + new Object();
250 ok(tmp === "[object Object]", "'' + new Object() = " + tmp);
251 (tmp = new Array).f = Object.prototype.toString;
252 ok(tmp.f() === "[object Array]", "tmp.f() = " + tmp.f());
253 (tmp = new Boolean).f = Object.prototype.toString;
254 ok(tmp.f() === "[object Boolean]", "tmp.f() = " + tmp.f());
255 (tmp = new Date).f = Object.prototype.toString;
256 ok(tmp.f() === "[object Date]", "tmp.f() = " + tmp.f());
257 (tmp = function() {}).f = Object.prototype.toString;
258 ok(tmp.f() === "[object Function]", "tmp.f() = " + tmp.f());
259 Math.f = Object.prototype.toString;
260 ok(Math.f() === "[object Math]", "tmp.f() = " + tmp.f());
261 (tmp = new Number).f = Object.prototype.toString;
262 ok(tmp.f() === "[object Number]", "tmp.f() = " + tmp.f());
263 (tmp = new RegExp("")).f = Object.prototype.toString;
264 ok(tmp.f() === "[object RegExp]", "tmp.f() = " + tmp.f());
265 (tmp = new String).f = Object.prototype.toString;
266 ok(tmp.f() === "[object String]", "tmp.f() = " + tmp.f());
267 tmp = Object.prototype.toString.call(testObj);
268 ok(tmp === "[object Object]", "toString.call(testObj) = " + tmp);
269 tmp = Object.prototype.toString.call(this);
270 ok(tmp === "[object Object]", "toString.call(this) = " + tmp);
271 (function () { tmp = Object.prototype.toString.call(arguments); })();
272 ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp);
273 tmp = Object.prototype.toString.call(new VBArray(createArray()));
274 ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp);
276 function TSTestConstr() {}
277 TSTestConstr.prototype = { toString: function() { return "test"; } };
278 obj = new TSTestConstr();
279 ok(obj.toString() === "test", "obj.toString() = " + obj.toString());
281 ok(Object(1) instanceof Number, "Object(1) is not instance of Number");
282 ok(Object("") instanceof String, "Object('') is not instance of String");
283 ok(Object(false) instanceof Boolean, "Object(false) is not instance of Boolean");
285 obj = new Object();
286 ok(Object(obj) === obj, "Object(obj) !== obj");
288 ok(typeof(Object()) === "object", "typeof(Object()) !== 'object'");
289 ok(typeof(Object(undefined)) === "object", "typeof(Object(undefined)) !== 'object'");
290 ok(typeof(Object(null)) === "object", "typeof(Object(null)) !== 'object'");
292 var obj = new Object();
293 obj.toString = function (x) {
294     ok(arguments.length === 0, "arguments.length = " + arguments.length);
295     return "test";
297 ok((tmp = obj.toLocaleString()) === "test", "obj.toLocaleString() = " + tmp);
298 ok((tmp = obj.toLocaleString(1)) === "test", "obj.toLocaleString(1) = " + tmp);
299 ok(obj === obj.valueOf(), "obj !== obj.valueOf");
301 ok("".length === 0, "\"\".length = " + "".length);
302 ok(getVT("".length) == "VT_I4", "\"\".length = " + "".length);
303 ok("abc".length === 3, "\"abc\".length = " + "abc".length);
304 ok(String.prototype.length === 0, "String.prototype.length = " + String.prototype.length);
306 tmp = "".toString();
307 ok(tmp === "", "''.toString() = " + tmp);
308 tmp = "test".toString();
309 ok(tmp === "test", "''.toString() = " + tmp);
310 tmp = "test".toString(3);
311 ok(tmp === "test", "''.toString(3) = " + tmp);
313 tmp = "".valueOf();
314 ok(tmp === "", "''.valueOf() = " + tmp);
315 tmp = "test".valueOf();
316 ok(tmp === "test", "''.valueOf() = " + tmp);
317 tmp = "test".valueOf(3);
318 ok(tmp === "test", "''.valueOf(3) = " + tmp);
320 var str = new String("test");
321 ok(str.toString() === "test", "str.toString() = " + str.toString());
322 var str = new String();
323 ok(str.toString() === "", "str.toString() = " + str.toString());
324 var str = new String("test", "abc");
325 ok(str.toString() === "test", "str.toString() = " + str.toString());
327 var strObj = new Object();
328 strObj.toString = function() { return "abcd" };
329 strObj.substr = String.prototype.substr;
330 strObj.lastIndexOf = String.prototype.lastIndexOf;
332 tmp = "value " + str;
333 ok(tmp === "value test", "'value ' + str = " + tmp);
335 tmp = String();
336 ok(tmp === "", "String() = " + tmp);
337 tmp = String(false);
338 ok(tmp === "false", "String(false) = " + tmp);
339 tmp = String(null);
340 ok(tmp === "null", "String(null) = " + tmp);
341 tmp = String("test");
342 ok(tmp === "test", "String('test') = " + tmp);
343 tmp = String("test", "abc");
344 ok(tmp === "test", "String('test','abc') = " + tmp);
346 tmp = "abc".charAt(0);
347 ok(tmp === "a", "'abc',charAt(0) = " + tmp);
348 tmp = "abc".charAt(1);
349 ok(tmp === "b", "'abc',charAt(1) = " + tmp);
350 tmp = "abc".charAt(2);
351 ok(tmp === "c", "'abc',charAt(2) = " + tmp);
352 tmp = "abc".charAt(3);
353 ok(tmp === "", "'abc',charAt(3) = " + tmp);
354 tmp = "abc".charAt(4);
355 ok(tmp === "", "'abc',charAt(4) = " + tmp);
356 tmp = "abc".charAt();
357 ok(tmp === "a", "'abc',charAt() = " + tmp);
358 tmp = "abc".charAt(-1);
359 ok(tmp === "", "'abc',charAt(-1) = " + tmp);
360 tmp = "abc".charAt(0,2);
361 ok(tmp === "a", "'abc',charAt(0.2) = " + tmp);
362 tmp = "abc".charAt(NaN);
363 ok(tmp === "a", "'abc',charAt(NaN) = " + tmp);
364 tmp = "abc".charAt(bigInt);
365 ok(tmp === "", "'abc',charAt(bigInt) = " + tmp);
367 tmp = "abc".charCodeAt(0);
368 ok(tmp === 0x61, "'abc'.charCodeAt(0) = " + tmp);
369 tmp = "abc".charCodeAt(1);
370 ok(tmp === 0x62, "'abc'.charCodeAt(1) = " + tmp);
371 tmp = "abc".charCodeAt(2);
372 ok(tmp === 0x63, "'abc'.charCodeAt(2) = " + tmp);
373 tmp = "abc".charCodeAt();
374 ok(tmp === 0x61, "'abc'.charCodeAt() = " + tmp);
375 tmp = "abc".charCodeAt(true);
376 ok(tmp === 0x62, "'abc'.charCodeAt(true) = " + tmp);
377 tmp = "abc".charCodeAt(0,2);
378 ok(tmp === 0x61, "'abc'.charCodeAt(0,2) = " + tmp);
379 tmp = "\u49F4".charCodeAt(0);
380 ok(tmp === 0x49F4, "'\u49F4'.charCodeAt(0) = " + tmp);
381 tmp = "\052".charCodeAt(0);
382 ok(tmp === 0x2A, "'\052'.charCodeAt(0) = " + tmp);
383 tmp = "\xa2".charCodeAt(0);
384 ok(tmp === 0xA2, "'\xa2'.charCodeAt(0) = " + tmp);
385 tmp = "abc".charCodeAt(bigInt);
386 ok(isNaN(tmp), "'abc'.charCodeAt(bigInt) = " + tmp);
388 tmp = "abcd".substring(1,3);
389 ok(tmp === "bc", "'abcd'.substring(1,3) = " + tmp);
390 tmp = "abcd".substring(-1,3);
391 ok(tmp === "abc", "'abcd'.substring(-1,3) = " + tmp);
392 tmp = "abcd".substring(1,6);
393 ok(tmp === "bcd", "'abcd'.substring(1,6) = " + tmp);
394 tmp = "abcd".substring(3,1);
395 ok(tmp === "bc", "'abcd'.substring(3,1) = " + tmp);
396 tmp = "abcd".substring(2,2);
397 ok(tmp === "", "'abcd'.substring(2,2) = " + tmp);
398 tmp = "abcd".substring(true,"3");
399 ok(tmp === "bc", "'abcd'.substring(true,'3') = " + tmp);
400 tmp = "abcd".substring(1,3,2);
401 ok(tmp === "bc", "'abcd'.substring(1,3,2) = " + tmp);
402 tmp = "abcd".substring();
403 ok(tmp === "abcd", "'abcd'.substring() = " + tmp);
405 tmp = "abcd".substr(1,3);
406 ok(tmp === "bcd", "'abcd'.substr(1,3) = " + tmp);
407 tmp = "abcd".substr(-1,3);
408 ok(tmp === "abc", "'abcd'.substr(-1,3) = " + tmp);
409 tmp = "abcd".substr(1,6);
410 ok(tmp === "bcd", "'abcd'.substr(1,6) = " + tmp);
411 tmp = "abcd".substr(2,-1);
412 ok(tmp === "", "'abcd'.substr(3,1) = " + tmp);
413 tmp = "abcd".substr(2,0);
414 ok(tmp === "", "'abcd'.substr(2,2) = " + tmp);
415 tmp = "abcd".substr(true,"3");
416 ok(tmp === "bcd", "'abcd'.substr(true,'3') = " + tmp);
417 tmp = "abcd".substr(1,3,2);
418 ok(tmp === "bcd", "'abcd'.substr(1,3,2) = " + tmp);
419 tmp = "abcd".substr();
420 ok(tmp === "abcd", "'abcd'.substr() = " + tmp);
421 tmp = strObj.substr(1,1);
422 ok(tmp === "b", "'abcd'.substr(1,3) = " + tmp);
424 tmp = "abcd".slice(1,3);
425 ok(tmp === "bc", "'abcd'.slice(1,3) = " + tmp);
426 tmp = "abcd".slice(1,-1);
427 ok(tmp === "bc", "'abcd'.slice(1,-1) = " + tmp);
428 tmp = "abcd".slice(-3,3);
429 ok(tmp === "bc", "'abcd'.slice(-3,3) = " + tmp);
430 tmp = "abcd".slice(-6,3);
431 ok(tmp === "abc", "'abcd'.slice(-6,3) = " + tmp);
432 tmp = "abcd".slice(3,1);
433 ok(tmp === "", "'abcd'.slice(3,1) = " + tmp);
434 tmp = "abcd".slice(true,3);
435 ok(tmp === "bc", "'abcd'.slice(true,3) = " + tmp);
436 tmp = "abcd".slice();
437 ok(tmp === "abcd", "'abcd'.slice() = " + tmp);
438 tmp = "abcd".slice(1);
439 ok(tmp === "bcd", "'abcd'.slice(1) = " + tmp);
441 tmp = "abc".concat(["d",1],2,false);
442 ok(tmp === "abcd,12false", "concat returned " + tmp);
443 var arr = new Array(2,"a");
444 arr.concat = String.prototype.concat;
445 tmp = arr.concat("d");
446 ok(tmp === "2,ad", "arr.concat = " + tmp);
448 m = "a+bcabc".match("a+");
449 ok(typeof(m) === "object", "typeof m is not object");
450 ok(m.length === 1, "m.length is not 1");
451 ok(m["0"] === "a", "m[0] is not \"a\"");
453 r = "- [test] -".replace("[test]", "success");
454 ok(r === "- success -", "r = " + r + " expected '- success -'");
456 r = "- [test] -".replace("[test]", "success", "test");
457 ok(r === "- success -", "r = " + r + " expected '- success -'");
459 r = "test".replace();
460 ok(r === "test", "r = " + r + " expected 'test'");
462 function replaceFunc3(m, off, str) {
463     ok(arguments.length === 3, "arguments.length = " + arguments.length);
464     ok(m === "[test]", "m = " + m + " expected [test]");
465     ok(off === 1, "off = " + off + " expected 0");
466     ok(str === "-[test]-", "str = " + arguments[3]);
467     return "ret";
470 r = "-[test]-".replace("[test]", replaceFunc3);
471 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
473 r = "-[test]-".replace("[test]", replaceFunc3, "test");
474 ok(r === "-ret-", "r = " + r + " expected '-ret-'");
476 r = "x,x,x".replace("x", "y");
477 ok(r === "y,x,x", "r = " + r + " expected 'y,x,x'");
479 r = "x,x,x".replace("", "y");
480 ok(r === "yx,x,x", "r = " + r + " expected 'yx,x,x'");
482 r = "x,x,x".replace("", "");
483 ok(r === "x,x,x", "r = " + r + " expected 'x,x,x'");
485 r = "1,2,3".split(",");
486 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
487 ok(r.length === 3, "r.length = " + r.length);
488 ok(r[0] === "1", "r[0] = " + r[0]);
489 ok(r[1] === "2", "r[1] = " + r[1]);
490 ok(r[2] === "3", "r[2] = " + r[2]);
493 r = "1,2,3".split(",*");
494 ok(r.length === 1, "r.length = " + r.length);
495 ok(r[0] === "1,2,3", "r[0] = " + r[0]);
497 r = "123".split("");
498 ok(r.length === 3, "r.length = " + r.length);
499 ok(r[0] === "1", "r[0] = " + r[0]);
500 ok(r[1] === "2", "r[1] = " + r[1]);
501 ok(r[2] === "3", "r[2] = " + r[2]);
503 r = "123".split(2);
504 ok(r.length === 2, "r.length = " + r.length);
505 ok(r[0] === "1", "r[0] = " + r[0]);
506 ok(r[1] === "3", "r[1] = " + r[1]);
508 r = "1,2,".split(",");
509 ok(typeof(r) === "object", "typeof(r) = " + typeof(r));
510 ok(r.length === 3, "r.length = " + r.length);
511 ok(r[0] === "1", "r[0] = " + r[0]);
512 ok(r[1] === "2", "r[1] = " + r[1]);
513 ok(r[2] === "", "r[2] = " + r[2]);
515 tmp = "abcd".indexOf("bc",0);
516 ok(tmp === 1, "indexOf = " + tmp);
517 tmp = "abcd".indexOf("bc",1);
518 ok(tmp === 1, "indexOf = " + tmp);
519 tmp = "abcd".indexOf("bc");
520 ok(tmp === 1, "indexOf = " + tmp);
521 tmp = "abcd".indexOf("ac");
522 ok(tmp === -1, "indexOf = " + tmp);
523 tmp = "abcd".indexOf("bc",2);
524 ok(tmp === -1, "indexOf = " + tmp);
525 tmp = "abcd".indexOf("a",0);
526 ok(tmp === 0, "indexOf = " + tmp);
527 tmp = "abcd".indexOf("bc",0,"test");
528 ok(tmp === 1, "indexOf = " + tmp);
529 tmp = "abcd".indexOf();
530 ok(tmp == -1, "indexOf = " + tmp);
531 tmp = "abcd".indexOf("b", bigInt);
532 ok(tmp == -1, "indexOf = " + tmp);
534 tmp = "abcd".lastIndexOf("bc",1);
535 ok(tmp === 1, "lastIndexOf = " + tmp);
536 tmp = "abcd".lastIndexOf("bc",2);
537 ok(tmp === 1, "lastIndexOf = " + tmp);
538 tmp = "abcd".lastIndexOf("bc");
539 ok(tmp === 1, "lastIndexOf = " + tmp);
540 tmp = "abcd".lastIndexOf("ac");
541 ok(tmp === -1, "lastIndexOf = " + tmp);
542 tmp = "abcd".lastIndexOf("d",10);
543 ok(tmp === 3, "lastIndexOf = " + tmp);
544 tmp = "abcd".lastIndexOf("bc",0,"test");
545 ok(tmp === -1, "lastIndexOf = " + tmp);
546 tmp = "abcd".lastIndexOf();
547 ok(tmp === -1, "lastIndexOf = " + tmp);
548 tmp = "aaaa".lastIndexOf("a",2);
549 ok(tmp == 2, "lastIndexOf = " + tmp);
550 tmp = strObj.lastIndexOf("b");
551 ok(tmp === 1, "lastIndexOf = " + tmp);
552 tmp = "bbb".lastIndexOf("b", bigInt);
553 ok(tmp === 2, "lastIndexOf = " + tmp);
555 tmp = "".toLowerCase();
556 ok(tmp === "", "''.toLowerCase() = " + tmp);
557 tmp = "test".toLowerCase();
558 ok(tmp === "test", "''.toLowerCase() = " + tmp);
559 tmp = "test".toLowerCase(3);
560 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
561 tmp = "tEsT".toLowerCase();
562 ok(tmp === "test", "''.toLowerCase() = " + tmp);
563 tmp = "tEsT".toLowerCase(3);
564 ok(tmp === "test", "''.toLowerCase(3) = " + tmp);
566 tmp = "".toUpperCase();
567 ok(tmp === "", "''.toUpperCase() = " + tmp);
568 tmp = "TEST".toUpperCase();
569 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
570 tmp = "TEST".toUpperCase(3);
571 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
572 tmp = "tEsT".toUpperCase();
573 ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
574 tmp = "tEsT".toUpperCase(3);
575 ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
577 tmp = "".anchor();
578 ok(tmp === "<A NAME=\"undefined\"></A>", "''.anchor() = " + tmp);
579 tmp = "".anchor(3);
580 ok(tmp === "<A NAME=\"3\"></A>", "''.anchor(3) = " + tmp);
581 tmp = "".anchor("red");
582 ok(tmp === "<A NAME=\"red\"></A>", "''.anchor('red') = " + tmp);
583 tmp = "test".anchor();
584 ok(tmp === "<A NAME=\"undefined\">test</A>", "'test'.anchor() = " + tmp);
585 tmp = "test".anchor(3);
586 ok(tmp === "<A NAME=\"3\">test</A>", "'test'.anchor(3) = " + tmp);
587 tmp = "test".anchor("green");
588 ok(tmp === "<A NAME=\"green\">test</A>", "'test'.anchor('green') = " + tmp);
590 tmp = "".big();
591 ok(tmp === "<BIG></BIG>", "''.big() = " + tmp);
592 tmp = "".big(3);
593 ok(tmp === "<BIG></BIG>", "''.big(3) = " + tmp);
594 tmp = "test".big();
595 ok(tmp === "<BIG>test</BIG>", "'test'.big() = " + tmp);
596 tmp = "test".big(3);
597 ok(tmp === "<BIG>test</BIG>", "'test'.big(3) = " + tmp);
599 tmp = "".blink();
600 ok(tmp === "<BLINK></BLINK>", "''.blink() = " + tmp);
601 tmp = "".blink(3);
602 ok(tmp === "<BLINK></BLINK>", "''.blink(3) = " + tmp);
603 tmp = "test".blink();
604 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink() = " + tmp);
605 tmp = "test".blink(3);
606 ok(tmp === "<BLINK>test</BLINK>", "'test'.blink(3) = " + tmp);
608 tmp = "".bold();
609 ok(tmp === "<B></B>", "''.bold() = " + tmp);
610 tmp = "".bold(3);
611 ok(tmp === "<B></B>", "''.bold(3) = " + tmp);
612 tmp = "test".bold();
613 ok(tmp === "<B>test</B>", "'test'.bold() = " + tmp);
614 tmp = "test".bold(3);
615 ok(tmp === "<B>test</B>", "'test'.bold(3) = " + tmp);
617 tmp = "".fixed();
618 ok(tmp === "<TT></TT>", "''.fixed() = " + tmp);
619 tmp = "".fixed(3);
620 ok(tmp === "<TT></TT>", "''.fixed(3) = " + tmp);
621 tmp = "test".fixed();
622 ok(tmp === "<TT>test</TT>", "'test'.fixed() = " + tmp);
623 tmp = "test".fixed(3);
624 ok(tmp === "<TT>test</TT>", "'test'.fixed(3) = " + tmp);
626 tmp = "".fontcolor();
627 ok(tmp === "<FONT COLOR=\"undefined\"></FONT>", "''.fontcolor() = " + tmp);
628 tmp = "".fontcolor(3);
629 ok(tmp === "<FONT COLOR=\"3\"></FONT>", "''.fontcolor(3) = " + tmp);
630 tmp = "".fontcolor("red");
631 ok(tmp === "<FONT COLOR=\"red\"></FONT>", "''.fontcolor('red') = " + tmp);
632 tmp = "test".fontcolor();
633 ok(tmp === "<FONT COLOR=\"undefined\">test</FONT>", "'test'.fontcolor() = " + tmp);
634 tmp = "test".fontcolor(3);
635 ok(tmp === "<FONT COLOR=\"3\">test</FONT>", "'test'.fontcolor(3) = " + tmp);
636 tmp = "test".fontcolor("green");
637 ok(tmp === "<FONT COLOR=\"green\">test</FONT>", "'test'.fontcolor('green') = " + tmp);
639 tmp = "".fontsize();
640 ok(tmp === "<FONT SIZE=\"undefined\"></FONT>", "''.fontsize() = " + tmp);
641 tmp = "".fontsize(3);
642 ok(tmp === "<FONT SIZE=\"3\"></FONT>", "''.fontsize(3) = " + tmp);
643 tmp = "".fontsize("red");
644 ok(tmp === "<FONT SIZE=\"red\"></FONT>", "''.fontsize('red') = " + tmp);
645 tmp = "test".fontsize();
646 ok(tmp === "<FONT SIZE=\"undefined\">test</FONT>", "'test'.fontsize() = " + tmp);
647 tmp = "test".fontsize(3);
648 ok(tmp === "<FONT SIZE=\"3\">test</FONT>", "'test'.fontsize(3) = " + tmp);
649 tmp = "test".fontsize("green");
650 ok(tmp === "<FONT SIZE=\"green\">test</FONT>", "'test'.fontsize('green') = " + tmp);
652 tmp = ("".fontcolor()).fontsize();
653 ok(tmp === "<FONT SIZE=\"undefined\"><FONT COLOR=\"undefined\"></FONT></FONT>", "(''.fontcolor()).fontsize() = " + tmp);
655 tmp = "".italics();
656 ok(tmp === "<I></I>", "''.italics() = " + tmp);
657 tmp = "".italics(3);
658 ok(tmp === "<I></I>", "''.italics(3) = " + tmp);
659 tmp = "test".italics();
660 ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp);
661 tmp = "test".italics(3);
662 ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp);
664 tmp = "".link();
665 ok(tmp === "<A HREF=\"undefined\"></A>", "''.link() = " + tmp);
666 tmp = "".link(3);
667 ok(tmp === "<A HREF=\"3\"></A>", "''.link(3) = " + tmp);
668 tmp = "".link("red");
669 ok(tmp === "<A HREF=\"red\"></A>", "''.link('red') = " + tmp);
670 tmp = "test".link();
671 ok(tmp === "<A HREF=\"undefined\">test</A>", "'test'.link() = " + tmp);
672 tmp = "test".link(3);
673 ok(tmp === "<A HREF=\"3\">test</A>", "'test'.link(3) = " + tmp);
674 tmp = "test".link("green");
675 ok(tmp === "<A HREF=\"green\">test</A>", "'test'.link('green') = " + tmp);
677 tmp = "".small();
678 ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp);
679 tmp = "".small(3);
680 ok(tmp === "<SMALL></SMALL>", "''.small(3) = " + tmp);
681 tmp = "test".small();
682 ok(tmp === "<SMALL>test</SMALL>", "'test'.small() = " + tmp);
683 tmp = "test".small(3);
684 ok(tmp === "<SMALL>test</SMALL>", "'test'.small(3) = " + tmp);
686 tmp = "".strike();
687 ok(tmp === "<STRIKE></STRIKE>", "''.strike() = " + tmp);
688 tmp = "".strike(3);
689 ok(tmp === "<STRIKE></STRIKE>", "''.strike(3) = " + tmp);
690 tmp = "test".strike();
691 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike() = " + tmp);
692 tmp = "test".strike(3);
693 ok(tmp === "<STRIKE>test</STRIKE>", "'test'.strike(3) = " + tmp);
695 tmp = "".sub();
696 ok(tmp === "<SUB></SUB>", "''.sub() = " + tmp);
697 tmp = "".sub(3);
698 ok(tmp === "<SUB></SUB>", "''.sub(3) = " + tmp);
699 tmp = "test".sub();
700 ok(tmp === "<SUB>test</SUB>", "'test'.sub() = " + tmp);
701 tmp = "test".sub(3);
702 ok(tmp === "<SUB>test</SUB>", "'test'.sub(3) = " + tmp);
704 tmp = "".sup();
705 ok(tmp === "<SUP></SUP>", "''.sup() = " + tmp);
706 tmp = "".sup(3);
707 ok(tmp === "<SUP></SUP>", "''.sup(3) = " + tmp);
708 tmp = "test".sup();
709 ok(tmp === "<SUP>test</SUP>", "'test'.sup() = " + tmp);
710 tmp = "test".sup(3);
711 ok(tmp === "<SUP>test</SUP>", "'test'.sup(3) = " + tmp);
713 ok(String.fromCharCode() === "", "String.fromCharCode() = " + String.fromCharCode());
714 ok(String.fromCharCode(65,"66",67) === "ABC", "String.fromCharCode(65,'66',67) = " + String.fromCharCode(65,"66",67));
715 ok(String.fromCharCode(1024*64+65, -1024*64+65) === "AA",
716         "String.fromCharCode(1024*64+65, -1024*64+65) = " + String.fromCharCode(1024*64+65, -1024*64+65));
717 ok(String.fromCharCode(65, NaN, undefined).length === 3,
718         "String.fromCharCode(65, NaN, undefined).length = " + String.fromCharCode(65, NaN, undefined).length);
720 var arr = new Array();
721 ok(typeof(arr) === "object", "arr () is not object");
722 ok((arr.length === 0), "arr.length is not 0");
723 ok(arr["0"] === undefined, "arr[0] is not undefined");
725 var arr = new Array(1, 2, "test");
726 ok(typeof(arr) === "object", "arr (1,2,test) is not object");
727 ok((arr.length === 3), "arr.length is not 3");
728 ok(arr["0"] === 1, "arr[0] is not 1");
729 ok(arr["1"] === 2, "arr[1] is not 2");
730 ok(arr["2"] === "test", "arr[2] is not \"test\"");
732 arr["7"] = true;
733 ok((arr.length === 8), "arr.length is not 8");
735 tmp = "" + [];
736 ok(tmp === "", "'' + [] = " + tmp);
737 tmp = "" + [1,true];
738 ok(tmp === "1,true", "'' + [1,true] = " + tmp);
740 var arr = new Array(6);
741 ok(typeof(arr) === "object", "arr (6) is not object");
742 ok((arr.length === 6), "arr.length is not 6");
743 ok(arr["0"] === undefined, "arr[0] is not undefined");
745 ok(arr.push() === 6, "arr.push() !== 6");
746 ok(arr.push(1) === 7, "arr.push(1) !== 7");
747 ok(arr[6] === 1, "arr[6] != 1");
748 ok(arr.length === 7, "arr.length != 10");
749 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
750 ok(arr[8] === "b", "arr[8] != 'b'");
751 ok(arr.length === 10, "arr.length != 10");
753 var arr = new Object();
754 arr.push = Array.prototype.push;
756 arr.length = 6;
758 ok(arr.push() === 6, "arr.push() !== 6");
759 ok(arr.push(1) === 7, "arr.push(1) !== 7");
760 ok(arr[6] === 1, "arr[6] != 1");
761 ok(arr.length === 7, "arr.length != 10");
762 ok(arr.push(true, 'b', false) === 10, "arr.push(true, 'b', false) !== 10");
763 ok(arr[8] === "b", "arr[8] != 'b'");
764 ok(arr.length === 10, "arr.length != 10");
766 arr.pop = Array.prototype.pop;
767 ok(arr.pop() === false, "arr.pop() !== false");
768 ok(arr[8] === "b", "arr[8] !== 'b'");
769 ok(arr.pop() === 'b', "arr.pop() !== 'b'");
770 ok(arr[8] === undefined, "arr[8] !== undefined");
772 arr = [3,4,5];
773 tmp = arr.pop();
774 ok(arr.length === 2, "arr.length = " + arr.length);
775 ok(tmp === 5, "pop() = " + tmp);
776 tmp = arr.pop(2);
777 ok(arr.length === 1, "arr.length = " + arr.length);
778 ok(tmp === 4, "pop() = " + tmp);
779 tmp = arr.pop();
780 ok(arr.length === 0, "arr.length = " + arr.length);
781 ok(tmp === 3, "pop() = " + tmp);
782 for(tmp in arr)
783     ok(false, "not deleted " + tmp);
784 tmp = arr.pop();
785 ok(arr.length === 0, "arr.length = " + arr.length);
786 ok(tmp === undefined, "tmp = " + tmp);
787 arr = new Object();
788 arr.pop = Array.prototype.pop;
789 tmp = arr.pop();
790 ok(arr.length === 0, "arr.length = " + arr.length);
791 ok(tmp === undefined, "tmp = " + tmp);
792 arr = [,,,,,];
793 tmp = arr.pop();
794 ok(arr.length === 5, "arr.length = " + arr.length);
795 ok(tmp === undefined, "tmp = " + tmp);
797 arr = [1,2,null,false,undefined,,"a"];
799 tmp = arr.join();
800 ok(tmp === "1,2,,false,,,a", "arr.join() = " + tmp);
801 tmp = arr.join(";");
802 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
803 tmp = arr.join(";","test");
804 ok(tmp === "1;2;;false;;;a", "arr.join(';') = " + tmp);
805 tmp = arr.join("");
806 ok(tmp === "12falsea", "arr.join('') = " + tmp);
808 tmp = arr.toString();
809 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
810 tmp = arr.toString("test");
811 ok(tmp === "1,2,,false,,,a", "arr.toString() = " + tmp);
813 arr = new Object();
814 arr.length = 3;
815 arr[0] = "aa";
816 arr[2] = 2;
817 arr[7] = 3;
818 arr.join = Array.prototype.join;
819 tmp = arr.join(",");
820 ok(arr.length === 3, "arr.length = " + arr.length);
821 ok(tmp === "aa,,2", "tmp = " + tmp);
823 arr = [5,true,2,-1,3,false,"2.5"];
824 tmp = arr.sort(function(x,y) { return y-x; });
825 ok(tmp === arr, "tmp !== arr");
826 tmp = [5,3,"2.5",2,true,false,-1];
827 for(var i=0; i < arr.length; i++)
828     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
830 arr = [5,false,2,0,"abc",3,"a",-1];
831 tmp = arr.sort();
832 ok(tmp === arr, "tmp !== arr");
833 tmp = [-1,0,2,3,5,"a","abc",false];
834 for(var i=0; i < arr.length; i++)
835     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
837 arr = ["a", "b", "ab"];
838 tmp = ["a", "ab", "b"];
839 ok(arr.sort() === arr, "arr.sort() !== arr");
840 for(var i=0; i < arr.length; i++)
841     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
843 arr = new Object();
844 arr.length = 3;
845 arr[0] = 1;
846 arr[2] = "aa";
847 arr.sort = Array.prototype.sort;
848 tmp = arr.sort();
849 ok(arr === tmp, "tmp !== arr");
850 ok(arr[0]===1 && arr[1]==="aa" && arr[2]===undefined, "arr is sorted incorrectly");
852 tmp = [["bb","aa"],["ab","aa"]].sort().toString();
853 ok(tmp === "ab,aa,bb,aa", "sort() = " + tmp);
855 tmp = [["bb","aa"],"ab"].sort().toString();
856 ok(tmp === "ab,bb,aa", "sort() = " + tmp);
858 tmp = [["bb","aa"],"cc"].sort().toString();
859 ok(tmp === "bb,aa,cc", "sort() = " + tmp);
861 tmp = [2,"1"].sort().toString();
862 ok(tmp === "1,2", "sort() = " + tmp);
864 tmp = ["2",1].sort().toString();
865 ok(tmp === "1,2", "sort() = " + tmp);
867 tmp = [,,0,"z"].sort().toString();
868 ok(tmp === "0,z,,", "sort() = " + tmp);
870 tmp = ["a,b",["a","a"],["a","c"]].sort().toString();
871 ok(tmp === "a,a,a,b,a,c", "sort() = " + tmp);
873 arr = ["1", "2", "3"];
874 arr.length = 1;
875 ok(arr.length === 1, "arr.length = " + arr.length);
876 arr.length = 3;
877 ok(arr.length === 3, "arr.length = " + arr.length);
878 ok(arr.toString() === "1,,", "arr.toString() = " + arr.toString());
880 arr = Array("a","b","c");
881 ok(arr.toString() === "a,b,c", "arr.toString() = " + arr.toString());
883 ok(arr.valueOf === Object.prototype.valueOf, "arr.valueOf !== Object.prototype.valueOf");
884 ok(arr === arr.valueOf(), "arr !== arr.valueOf");
886 arr = [1,2,3];
887 tmp = arr.reverse();
888 ok(tmp === arr, "tmp !== arr");
889 ok(arr.length === 3, "arr.length = " + arr.length);
890 ok(arr.toString() === "3,2,1", "arr.toString() = " + arr.toString());
892 arr = [];
893 arr[3] = 5;
894 arr[5] = 1;
895 tmp = arr.reverse();
896 ok(tmp === arr, "tmp !== arr");
897 ok(arr.length === 6, "arr.length = " + arr.length);
898 ok(arr.toString() === "1,,5,,,", "arr.toString() = " + arr.toString());
900 arr = new Object();
901 arr.length = 3;
902 arr[0] = "aa";
903 arr[2] = 2;
904 arr[7] = 3;
905 arr.reverse = Array.prototype.reverse;
906 tmp = arr.reverse();
907 ok(tmp === arr, "tmp !== arr");
908 ok(arr.length === 3, "arr.length = " + arr.length);
909 ok(arr[0] === 2 && arr[1] === undefined && arr[2] === "aa", "unexpected array");
911 arr = [1,2,3];
912 tmp = arr.unshift(0);
913 ok(tmp === (invokeVersion < 2 ? undefined : 4), "[1,2,3].unshift(0) returned " +tmp);
914 ok(arr.length === 4, "arr.length = " + arr.length);
915 ok(arr.toString() === "0,1,2,3", "arr.toString() = " + arr.toString());
917 arr = new Array(3);
918 arr[0] = 1;
919 arr[2] = 3;
920 tmp = arr.unshift(-1,0);
921 ok(tmp === (invokeVersion < 2 ? undefined : 5), "unshift returned " +tmp);
922 ok(arr.length === 5, "arr.length = " + arr.length);
923 ok(arr.toString() === "-1,0,1,,3", "arr.toString() = " + arr.toString());
925 arr = [1,2,3];
926 tmp = arr.unshift();
927 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
928 ok(arr.length === 3, "arr.length = " + arr.length);
929 ok(arr.toString() === "1,2,3", "arr.toString() = " + arr.toString());
931 arr = new Object();
932 arr.length = 2;
933 arr[0] = 1;
934 arr[1] = 2;
935 tmp = Array.prototype.unshift.call(arr, 0);
936 ok(tmp === (invokeVersion < 2 ? undefined : 3), "unshift returned " +tmp);
937 ok(arr.length === 3, "arr.length = " + arr.length);
938 ok(arr[0] === 0 && arr[1] === 1 && arr[2] === 2, "unexpected array");
940 arr = [1,2,,4];
941 tmp = arr.shift();
942 ok(tmp === 1, "[1,2,,4].shift() = " + tmp);
943 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
945 arr = [];
946 tmp = arr.shift();
947 ok(tmp === undefined, "[].shift() = " + tmp);
948 ok(arr.toString() === "", "arr = " + arr.toString());
950 arr = [1,2,,4];
951 tmp = arr.shift(2);
952 ok(tmp === 1, "[1,2,,4].shift(2) = " + tmp);
953 ok(arr.toString() === "2,,4", "arr = " + arr.toString());
955 arr = [1,];
956 tmp = arr.shift();
957 ok(tmp === 1, "[1,].shift() = " + tmp);
958 ok(arr.toString() === "", "arr = " + arr.toString());
960 obj = new Object();
961 obj[0] = "test";
962 obj[2] = 3;
963 obj.length = 3;
964 tmp = Array.prototype.shift.call(obj);
965 ok(tmp === "test", "obj.shift() = " + tmp);
966 ok(obj.length == 2, "obj.length = " + obj.length);
967 ok(obj[1] === 3, "obj[1] = " + obj[1]);
969 var num = new Number(6);
970 arr = [0,1,2];
971 tmp = arr.concat(3, [4,5], num);
972 ok(tmp !== arr, "tmp === arr");
973 for(var i=0; i<6; i++)
974     ok(tmp[i] === i, "tmp[" + i + "] = " + tmp[i]);
975 ok(tmp[6] === num, "tmp[6] !== num");
976 ok(tmp.length === 7, "tmp.length = " + tmp.length);
978 arr = [].concat();
979 ok(arr.length === 0, "arr.length = " + arr.length);
981 arr = [1,];
982 tmp = arr.concat([2]);
983 ok(tmp.length === 3, "tmp.length = " + tmp.length);
984 ok(tmp[1] === undefined, "tmp[1] = " + tmp[1]);
986 arr = [1,false,'a',null,undefined,'a'];
987 ok(arr.slice(0,6).toString() === "1,false,a,,,a", "arr.slice(0,6).toString() = " + arr.slice(0,6));
988 ok(arr.slice(0,6).length === 6, "arr.slice(0,6).length = " + arr.slice(0,6).length);
989 ok(arr.slice().toString() === "1,false,a,,,a", "arr.slice().toString() = " + arr.slice());
990 ok(arr.slice("abc").toString() === "1,false,a,,,a", "arr.slice(\"abc\").toString() = " + arr.slice("abc"));
991 ok(arr.slice(3,8).toString() === ",,a", "arr.slice(3,8).toString() = " + arr.slice(3,8));
992 ok(arr.slice(3,8).length === 3, "arr.slice(3,8).length = " + arr.slice(3,8).length);
993 ok(arr.slice(1).toString() === "false,a,,,a", "arr.slice(1).toString() = " + arr.slice(1));
994 ok(arr.slice(-2).toString() === ",a", "arr.slice(-2).toString() = " + arr.slice(-2));
995 ok(arr.slice(3,1).toString() === "", "arr.slice(3,1).toString() = " + arr.slice(3,1));
996 tmp = arr.slice(0,6);
997 for(var i=0; i < arr.length; i++)
998     ok(arr[i] === tmp[i], "arr[" + i + "] = " + arr[i] + " expected " + tmp[i]);
999 arr[12] = 2;
1000 ok(arr.slice(5).toString() === "a,,,,,,,2", "arr.slice(5).toString() = " + arr.slice(5).toString());
1001 ok(arr.slice(5).length === 8, "arr.slice(5).length = " + arr.slice(5).length);
1003 arr = [1,2,3,4,5];
1004 tmp = arr.splice(2,2);
1005 ok(tmp.toString() == "3,4", "arr.splice(2,2) returned " + tmp.toString());
1006 ok(arr.toString() == "1,2,5", "arr.splice(2,2) is " + arr.toString());
1008 arr = [1,2,3,4,5];
1009 tmp = arr.splice(2,2,"a");
1010 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a') returned " + tmp.toString());
1011 ok(arr.toString() == "1,2,a,5", "arr.splice(2,2,'a') is " + arr.toString());
1013 arr = [1,2,3,4,5];
1014 tmp = arr.splice(2,2,'a','b','c');
1015 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1016 ok(arr.toString() == "1,2,a,b,c,5", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1018 arr = [1,2,3,4,];
1019 tmp = arr.splice(2,2,'a','b','c');
1020 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b','c') returned " + tmp.toString());
1021 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1023 arr = [1,2,3,4,];
1024 arr.splice(2,2,'a','b','c');
1025 ok(arr.toString() == "1,2,a,b,c,", "arr.splice(2,2,'a','b','c') is " + arr.toString());
1027 arr = [1,2,3,4,5];
1028 tmp = arr.splice(2,2,'a','b');
1029 ok(tmp.toString() == "3,4", "arr.splice(2,2,'a','b') returned " + tmp.toString());
1030 ok(arr.toString() == "1,2,a,b,5", "arr.splice(2,2,'a','b') is " + arr.toString());
1032 arr = [1,2,3,4,5];
1033 tmp = arr.splice(-1,2);
1034 ok(tmp.toString() == "5", "arr.splice(-1,2) returned " + tmp.toString());
1035 ok(arr.toString() == "1,2,3,4", "arr.splice(-1,2) is " + arr.toString());
1037 arr = [1,2,3,4,5];
1038 tmp = arr.splice(-10,3);
1039 ok(tmp.toString() == "1,2,3", "arr.splice(-10,3) returned " + tmp.toString());
1040 ok(arr.toString() == "4,5", "arr.splice(-10,3) is " + arr.toString());
1042 arr = [1,2,3,4,5];
1043 tmp = arr.splice(-10,100);
1044 ok(tmp.toString() == "1,2,3,4,5", "arr.splice(-10,100) returned " + tmp.toString());
1045 ok(arr.toString() == "", "arr.splice(-10,100) is " + arr.toString());
1047 arr = [1,2,3,4,5];
1048 tmp = arr.splice(2,-1);
1049 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1050 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1052 arr = [1,2,3,4,5];
1053 tmp = arr.splice(2);
1054 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1055 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1057 arr = [1,2,3,4,5];
1058 tmp = arr.splice();
1059 ok(tmp.toString() == "", "arr.splice(2,-1) returned " + tmp.toString());
1060 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2,-1) is " + arr.toString());
1062 arr = [1,2,3,4,5];
1063 tmp = arr.splice(bigInt);
1064 ok(tmp.toString() == "", "arr.splice(bigInt) returned " + tmp.toString());
1065 ok(arr.toString() == "1,2,3,4,5", "arr.splice(bigInt) is " + arr.toString());
1067 arr = [1,2,3,4,5];
1068 tmp = arr.splice(-bigInt);
1069 ok(tmp.toString() == "", "arr.splice(-bigInt) returned " + tmp.toString());
1070 ok(arr.toString() == "1,2,3,4,5", "arr.splice(-bigInt) is " + arr.toString());
1072 if(invokeVersion >= 2) {
1073     arr = [1,2,3,4,5];
1074     tmp = arr.splice(2, bigInt);
1075     ok(tmp.toString() == "3,4,5", "arr.splice(2, bigInt) returned " + tmp.toString());
1076     ok(arr.toString() == "1,2", "arr.splice(2, bigInt) is " + arr.toString());
1079 arr = [1,2,3,4,5];
1080 tmp = arr.splice(2, -bigInt);
1081 ok(tmp.toString() == "", "arr.splice(2, -bigInt) returned " + tmp.toString());
1082 ok(arr.toString() == "1,2,3,4,5", "arr.splice(2, -bigInt) is " + arr.toString());
1084 obj = new Object();
1085 obj.length = 3;
1086 obj[0] = 1;
1087 obj[1] = 2;
1088 obj[2] = 3;
1089 tmp = Array.prototype.splice.call(obj, 1, 1, 'a', 'b');
1090 ok(tmp.toString() === "2", "obj.splice returned " + tmp);
1091 ok(obj.length === 4, "obj.length = " + obj.length);
1092 ok(obj[0] === 1, "obj[0] = " + obj[0]);
1093 ok(obj[1] === 'a', "obj[1] = " + obj[1]);
1094 ok(obj[2] === 'b', "obj[2] = " + obj[2]);
1095 ok(obj[3] === 3, "obj[3] = " + obj[3]);
1097 obj = new Object();
1098 obj.length = 3;
1099 obj[0] = 1;
1100 obj[1] = 2;
1101 obj[2] = 3;
1102 tmp = Array.prototype.slice.call(obj, 1, 2);
1103 ok(tmp.length === 1, "tmp.length = " + tmp.length);
1104 ok(tmp[0] === 2, "tmp[0] = " + tmp[0]);
1106 tmp = (new Number(2)).toString();
1107 ok(tmp === "2", "num(2).toString = " + tmp);
1108 tmp = (new Number()).toString();
1109 ok(tmp === "0", "num().toString = " + tmp);
1110 tmp = (new Number(5.5)).toString(2);
1111 ok(tmp === "101.1", "num(5.5).toString(2) = " + tmp);
1113 tmp = (new Number(3)).toFixed(3);
1114 ok(tmp === "3.000", "num(3).toFixed(3) = " + tmp);
1115 tmp = (new Number(1.76)).toFixed(1);
1116 ok(tmp === "1.8", "num(1.76).toFixed(1) = " + tmp);
1117 tmp = (new Number(7.92)).toFixed(5);
1118 ok(tmp === "7.92000", "num(7.92).toFixed(5) = " + tmp);
1119 tmp = (new Number(2.88)).toFixed();
1120 ok(tmp === "3", "num(2.88).toFixed = " + tmp);
1121 tmp = (new Number(-2.5)).toFixed();
1122 ok(tmp === "-3", "num(-2.5).toFixed = " + tmp);
1123 tmp = (new Number(1000000000000000128)).toFixed(0);
1124 //todo_wine ok(tmp === "1000000000000000100", "num(1000000000000000128) = " + tmp);
1125 tmp = (new Number(3.14).toFixed(NaN));
1126 ok(tmp === "3", "num(3.14).toFixed = " + tmp);
1127 tmp = (new Number(0.95).toFixed(1));
1128 ok(tmp === "1.0", "num(0.95).toFixed(1) = " + tmp);
1129 tmp = (new Number(1e900)).toFixed(0);
1130 ok(tmp === "Infinity", "num(1000000000000000128) = " + tmp);
1131 tmp = (new Number(0.12345678901234567890123)).toFixed(20);
1132 ok(tmp === "0.12345678901234568000", "num(0.12345678901234567890123) = " + tmp);
1134 tmp = (new Number(2)).toExponential(3);
1135 ok(tmp === "2.000e+0", "num(2).toExponential(3) = " + tmp);
1136 tmp = (new Number(1.17e-32)).toExponential(20);
1137 ok(tmp === "1.17000000000000000000e-32", "num(1.17e-32).toExponential(20) = " + tmp);
1138 tmp = (new Number(0)).toExponential(7);
1139 ok(tmp === "0.0000000e+0", "num(0).toExponential(7) = " + tmp);
1140 tmp = (new Number(0)).toExponential(0);
1141 ok(tmp === "0e+0", "num(0).toExponential() = " + tmp);
1142 tmp = (new Number(-13.7567)).toExponential();
1143 ok(tmp === "-1.37567e+1", "num(-13.7567).toExponential() = " + tmp);
1144 tmp = (new Number(-32.1)).toExponential();
1145 ok(tmp === "-3.21e+1", "num(-32.1).toExponential() = " + tmp);
1146 tmp = (new Number(4723.4235)).toExponential();
1147 ok(tmp === "4.7234235e+3", "num(4723.4235).toExponential() = " + tmp);
1149 tmp = (new Number(5)).toPrecision(12);
1150 ok(tmp == "5.00000000000", "num(5).toPrecision(12) = " + tmp);
1151 tmp = (new Number(7.73)).toPrecision(7);
1152 ok(tmp == "7.730000", "num(7.73).toPrecision(7) = " + tmp);
1153 tmp = (new Number(-127547.47472)).toPrecision(17);
1154 ok(tmp == "-127547.47472000000", "num(-127547.47472).toPrecision(17) = " + tmp);
1155 tmp = (new Number(0)).toPrecision(3);
1156 ok(tmp == "0.00", "num(0).toPrecision(3) = " + tmp);
1157 tmp = (new Number(42345.52342465464562334)).toPrecision(15);
1158 ok(tmp == "42345.5234246546", "num(42345.52342465464562334).toPrecision(15) = " + tmp);
1159 tmp = (new Number(1.182e30)).toPrecision(5);
1160 ok(tmp == "1.1820e+30", "num(1.182e30)).toPrecision(5) = " + tmp);
1161 tmp = (new Number(1.123)).toPrecision();
1162 ok(tmp == "1.123", "num(1.123).toPrecision() = " + tmp);
1164 ok(Number() === 0, "Number() = " + Number());
1165 ok(Number(false) === 0, "Number(false) = " + Number(false));
1166 ok(Number("43") === 43, "Number('43') = " + Number("43"));
1168 tmp = (new Number(1)).valueOf();
1169 ok(tmp === 1, "(new Number(1)).valueOf = " + tmp);
1170 tmp = (new Number(1,2)).valueOf();
1171 ok(tmp === 1, "(new Number(1,2)).valueOf = " + tmp);
1172 tmp = (new Number()).valueOf();
1173 ok(tmp === 0, "(new Number()).valueOf = " + tmp);
1174 tmp = Number.prototype.valueOf();
1175 ok(tmp === 0, "Number.prototype.valueOf = " + tmp);
1177 function equals(val, base) {
1178     var i;
1179     var num = 0;
1180     var str = val.toString(base);
1182     for(i=0; i<str.length; i++) {
1183         if(str.substring(i, i+1) == '(') break;
1184         if(str.substring(i, i+1) == '.') break;
1185         num = num*base + parseInt(str.substring(i, i+1));
1186     }
1188     if(str.substring(i, i+1) == '.') {
1189         var mult = base;
1190         for(i++; i<str.length; i++) {
1191             if(str.substring(i, i+1) == '(') break;
1192             num += parseInt(str.substring(i, i+1))/mult;
1193             mult *= base;
1194         }
1195     }
1197     if(str.substring(i, i+1) == '(') {
1198         exp = parseInt(str.substring(i+2));
1199         num *= Math.pow(base, exp);
1200     }
1202     ok(num>val-val/1000 && num<val+val/1000, "equals: num = " + num);
1205 ok((10).toString(11) === "a", "(10).toString(11) = " + (10).toString(11));
1206 ok((213213433).toString(17) === "8e2ddcb", "(213213433).toString(17) = " + (213213433).toString(17));
1207 ok((-3254343).toString(33) === "-2oicf", "(-3254343).toString(33) = " + (-3254343).toString(33));
1208 ok((NaN).toString(12) === "NaN", "(NaN).toString(11) = " + (NaN).toString(11));
1209 ok((Infinity).toString(13) === "Infinity", "(Infinity).toString(11) = " + (Infinity).toString(11));
1210 for(i=2; i<10; i++) {
1211     equals(1.123, i);
1212     equals(2305843009200000000, i);
1213     equals(5.123, i);
1214     equals(21711, i);
1215     equals(1024*1024*1024*1024*1024*1024*1.9999, i);
1216     equals(748382, i);
1217     equals(0.6, i);
1218     equals(4.65661287308e-10, i);
1219     ok((0).toString(i) === "0", "(0).toString("+i+") = " + (0).toString(i));
1222 ok(parseFloat('123') === 123, "parseFloat('123') = " + parseFloat('123'));
1223 ok(parseFloat('-13.7') === -13.7, "parseFloat('-13.7') = " + parseFloat('-13.7'));
1224 ok(parseFloat('-0.01e-2') === -0.01e-2, "parseFloat('-0.01e-2') = " + parseFloat('-0.01e-2'));
1225 ok(parseFloat('-12e+5') === -12e+5, "parseFloat('-12e+5') = " + parseFloat('-12e+5'));
1226 ok(parseFloat('1E5 not parsed') === 1E5, "parseFloat('1E5 not parsed') = " + parseFloat('1E5 not parsed'));
1227 ok(isNaN(parseFloat('not a number')), "parseFloat('not a number') is not NaN");
1228 ok(parseFloat('+13.2e-3') === 13.2e-3, "parseFloat('+13.2e-3') = " + parseFloat('+13.2e-3'));
1229 ok(parseFloat('.12') === 0.12, "parseFloat('.12') = " + parseFloat('.12'));
1230 ok(parseFloat('1e') === 1, "parseFloat('1e') = " + parseFloat('1e'));
1232 tmp = Math.min(1);
1233 ok(tmp === 1, "Math.min(1) = " + tmp);
1235 tmp = Math.min(1, false);
1236 ok(tmp === 0, "Math.min(1, false) = " + tmp);
1238 tmp = Math.min();
1239 ok(tmp === Infinity, "Math.min() = " + tmp);
1241 tmp = Math.min(1, NaN, -Infinity, false);
1242 ok(isNaN(tmp), "Math.min(1, NaN, -Infinity, false) is not NaN");
1244 tmp = Math.min(1, false, true, null, -3);
1245 ok(tmp === -3, "Math.min(1, false, true, null, -3) = " + tmp);
1247 tmp = Math.max(1);
1248 ok(tmp === 1, "Math.max(1) = " + tmp);
1250 tmp = Math.max(true, 0);
1251 ok(tmp === 1, "Math.max(true, 0) = " + tmp);
1253 tmp = Math.max(-2, false, true, null, 1);
1254 ok(tmp === 1, "Math.max(-2, false, true, null, 1) = " + tmp);
1256 tmp = Math.max();
1257 ok(tmp === -Infinity, "Math.max() = " + tmp);
1259 tmp = Math.max(true, NaN, 0);
1260 ok(isNaN(tmp), "Math.max(true, NaN, 0) is not NaN");
1262 tmp = Math.round(0.5);
1263 ok(tmp === 1, "Math.round(0.5) = " + tmp);
1265 tmp = Math.round(-0.5);
1266 ok(tmp === 0, "Math.round(-0.5) = " + tmp);
1268 tmp = Math.round(1.1);
1269 ok(tmp === 1, "Math.round(1.1) = " + tmp);
1271 tmp = Math.round(true);
1272 ok(tmp === 1, "Math.round(true) = " + tmp);
1274 tmp = Math.round(1.1, 3, 4);
1275 ok(tmp === 1, "Math.round(1.1, 3, 4) = " + tmp);
1277 tmp = Math.round();
1278 ok(isNaN(tmp), "Math.round() is not NaN");
1280 tmp = Math.ceil(0.5);
1281 ok(tmp === 1, "Math.ceil(0.5) = " + tmp);
1283 tmp = Math.ceil(-0.5);
1284 ok(tmp === 0, "Math.ceil(-0.5) = " + tmp);
1286 tmp = Math.ceil(1.1);
1287 ok(tmp === 2, "Math.round(1.1) = " + tmp);
1289 tmp = Math.ceil(true);
1290 ok(tmp === 1, "Math.ceil(true) = " + tmp);
1292 tmp = Math.ceil(1.1, 3, 4);
1293 ok(tmp === 2, "Math.ceil(1.1, 3, 4) = " + tmp);
1295 tmp = Math.ceil();
1296 ok(isNaN(tmp), "ceil() is not NaN");
1298 tmp = Math.floor(0.5);
1299 ok(tmp === 0, "Math.floor(0.5) = " + tmp);
1301 tmp = Math.floor(-0.5);
1302 ok(tmp === -1, "Math.floor(-0.5) = " + tmp);
1304 tmp = Math.floor(1.1);
1305 ok(tmp === 1, "Math.floor(1.1) = " + tmp);
1307 tmp = Math.floor(true);
1308 ok(tmp === 1, "Math.floor(true) = " + tmp);
1310 tmp = Math.floor(1.1, 3, 4);
1311 ok(tmp === 1, "Math.floor(1.1, 3, 4) = " + tmp);
1313 tmp = Math.floor();
1314 ok(isNaN(tmp), "floor is not NaN");
1316 tmp = Math.abs(3);
1317 ok(tmp === 3, "Math.abs(3) = " + tmp);
1319 tmp = Math.abs(-3);
1320 ok(tmp === 3, "Math.abs(-3) = " + tmp);
1322 tmp = Math.abs(true);
1323 ok(tmp === 1, "Math.abs(true) = " + tmp);
1325 tmp = Math.abs();
1326 ok(isNaN(tmp), "Math.abs() is not NaN");
1328 tmp = Math.abs(NaN);
1329 ok(isNaN(tmp), "Math.abs() is not NaN");
1331 tmp = Math.abs(-Infinity);
1332 ok(tmp === Infinity, "Math.abs(-Infinite) = " + tmp);
1334 tmp = Math.abs(-3, 2);
1335 ok(tmp === 3, "Math.abs(-3, 2) = " + tmp);
1337 tmp = Math.cos(0);
1338 ok(tmp === 1, "Math.cos(0) = " + tmp);
1340 tmp = Math.cos(Math.PI/2);
1341 ok(Math.floor(tmp*100) === 0, "Math.cos(Math.PI/2) = " + tmp);
1343 tmp = Math.cos(-Math.PI/2);
1344 ok(Math.floor(tmp*100) === 0, "Math.cos(-Math.PI/2) = " + tmp);
1346 tmp = Math.cos(Math.PI/3, 2);
1347 ok(Math.floor(tmp*100) === 50, "Math.cos(Math.PI/3, 2) = " + tmp);
1349 tmp = Math.cos(true);
1350 ok(Math.floor(tmp*100) === 54, "Math.cos(true) = " + tmp);
1352 tmp = Math.cos(false);
1353 ok(tmp === 1, "Math.cos(false) = " + tmp);
1355 tmp = Math.cos();
1356 ok(isNaN(tmp), "Math.cos() is not NaN");
1358 tmp = Math.cos(NaN);
1359 ok(isNaN(tmp), "Math.cos(NaN) is not NaN");
1361 tmp = Math.cos(Infinity);
1362 ok(isNaN(tmp), "Math.cos(Infinity) is not NaN");
1364 tmp = Math.cos(-Infinity);
1365 ok(isNaN(tmp), "Math.cos(-Infinity) is not NaN");
1367 tmp = Math.pow(2, 2);
1368 ok(tmp === 4, "Math.pow(2, 2) = " + tmp);
1370 tmp = Math.pow(4, 0.5);
1371 ok(tmp === 2, "Math.pow(2, 2) = " + tmp);
1373 tmp = Math.pow(2, 2, 3);
1374 ok(tmp === 4, "Math.pow(2, 2, 3) = " + tmp);
1376 tmp = Math.pow(2);
1377 ok(isNaN(tmp), "Math.pow(2) is not NaN");
1379 tmp = Math.pow();
1380 ok(isNaN(tmp), "Math.pow() is not NaN");
1382 tmp = Math.random();
1383 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1384 ok(0 <= tmp && tmp <= 1, "Math.random() = " + tmp);
1386 tmp = Math.random(100);
1387 ok(typeof(tmp) == "number", "typeof(tmp) = " + typeof(tmp));
1388 ok(0 <= tmp && tmp <= 1, "Math.random(100) = " + tmp);
1390 tmp = Math.acos(0);
1391 ok(Math.floor(tmp*100) === 157, "Math.acos(0) = " + tmp);
1393 tmp = Math.acos(1);
1394 ok(Math.floor(tmp*100) === 0, "Math.acos(1) = " + tmp);
1396 tmp = Math.acos(-1);
1397 ok(Math.floor(tmp*100) === 314, "Math.acos(-1) = " + tmp);
1399 tmp = Math.acos(Math.PI/4, 2);
1400 ok(Math.floor(tmp*100) === 66, "Math.acos(Math.PI/4, 2) = " + tmp);
1402 tmp = Math.acos(true);
1403 ok(Math.floor(tmp*100) === 0, "Math.acos(true) = " + tmp);
1405 tmp = Math.acos(false);
1406 ok(Math.floor(tmp*100) === 157, "Math.acos(false) = " + tmp);
1408 tmp = Math.acos(1.1);
1409 ok(isNaN(tmp), "Math.acos(1.1) is not NaN");
1411 tmp = Math.acos();
1412 ok(isNaN(tmp), "Math.acos() is not NaN");
1414 tmp = Math.acos(NaN);
1415 ok(isNaN(tmp), "Math.acos(NaN) is not NaN");
1417 tmp = Math.acos(Infinity);
1418 ok(isNaN(tmp), "Math.acos(Infinity) is not NaN");
1420 tmp = Math.acos(-Infinity);
1421 ok(isNaN(tmp), "Math.acos(-Infinity) is not NaN");
1423 tmp = Math.asin(0);
1424 ok(Math.floor(tmp*100) === 0, "Math.asin(0) = " + tmp);
1426 tmp = Math.asin(1);
1427 ok(Math.floor(tmp*100) === 157, "Math.asin(1) = " + tmp);
1429 tmp = Math.asin(-1);
1430 ok(Math.floor(tmp*100) === -158, "Math.asin(-1) = " + tmp);
1432 tmp = Math.asin(Math.PI/4, 2);
1433 ok(Math.floor(tmp*100) === 90, "Math.asin(Math.PI/4, 2) = " + tmp);
1435 tmp = Math.asin(true);
1436 ok(Math.floor(tmp*100) === 157, "Math.asin(true) = " + tmp);
1438 tmp = Math.asin(false);
1439 ok(Math.floor(tmp*100) === 0, "Math.asin(false) = " + tmp);
1441 tmp = Math.asin(1.1);
1442 ok(isNaN(tmp), "Math.asin(1.1) is not NaN");
1444 tmp = Math.asin();
1445 ok(isNaN(tmp), "Math.asin() is not NaN");
1447 tmp = Math.asin(NaN);
1448 ok(isNaN(tmp), "Math.asin(NaN) is not NaN");
1450 tmp = Math.asin(Infinity);
1451 ok(isNaN(tmp), "Math.asin(Infinity) is not NaN");
1453 tmp = Math.asin(-Infinity);
1454 ok(isNaN(tmp), "Math.asin(-Infinity) is not NaN");
1456 tmp = Math.atan(0);
1457 ok(Math.floor(tmp*100) === 0, "Math.atan(0) = " + tmp);
1459 tmp = Math.atan(1);
1460 ok(Math.floor(tmp*100) === 78, "Math.atan(1) = " + tmp);
1462 tmp = Math.atan(-1);
1463 ok(Math.floor(tmp*100) === -79, "Math.atan(-1) = " + tmp);
1465 tmp = Math.atan(true);
1466 ok(Math.floor(tmp*100) === 78, "Math.atan(true) = " + tmp);
1468 tmp = Math.atan(false);
1469 ok(Math.floor(tmp*100) === 0, "Math.atan(false) = " + tmp);
1471 tmp = Math.atan();
1472 ok(isNaN(tmp), "Math.atan() is not NaN");
1474 tmp = Math.atan(NaN);
1475 ok(isNaN(tmp), "Math.atan(NaN) is not NaN");
1477 tmp = Math.atan(Infinity);
1478 ok(Math.floor(tmp*100) === 157, "Math.atan(Infinity) = " + tmp);
1480 tmp = Math.atan(-Infinity);
1481 ok(Math.floor(tmp*100) === -158, "Math.atan(Infinity) = " + tmp);
1483 tmp = Math.atan2(0, 0);
1484 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 0) = " + tmp);
1486 tmp = Math.atan2(0, 1);
1487 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, 1) = " + tmp);
1489 tmp = Math.atan2(0, Infinity);
1490 ok(Math.floor(tmp*100) === 0, "Math.atan2(0, Infinity) = " + tmp);
1492 tmp = Math.atan2(0, -1);
1493 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -1) = " + tmp);
1495 tmp = Math.atan2(0, -Infinity);
1496 ok(Math.floor(tmp*100) === 314, "Math.atan2(0, -Infinity) = " + tmp);
1498 tmp = Math.atan2(1, 0);
1499 ok(Math.floor(tmp*100) === 157, "Math.atan2(1, 0) = " + tmp);
1501 tmp = Math.atan2(Infinity, 0);
1502 ok(Math.floor(tmp*100) === 157, "Math.atan2(Infinity, 0) = " + tmp);
1504 tmp = Math.atan2(-1, 0);
1505 ok(Math.floor(tmp*100) === -158, "Math.atan2(-1, 0) = " + tmp);
1507 tmp = Math.atan2(-Infinity, 0);
1508 ok(Math.floor(tmp*100) === -158, "Math.atan2(-Infinity, 0) = " + tmp);
1510 tmp = Math.atan2(1, 1);
1511 ok(Math.floor(tmp*100) === 78, "Math.atan2(1, 1) = " + tmp);
1513 tmp = Math.atan2(-1, -1);
1514 ok(Math.floor(tmp*100) === -236, "Math.atan2(-1, -1) = " + tmp);
1516 tmp = Math.atan2(-1, 1);
1517 ok(Math.floor(tmp*100) === -79, "Math.atan2(-1, 1) = " + tmp);
1519 tmp = Math.atan2(Infinity, Infinity);
1520 ok(Math.floor(tmp*100) === 78, "Math.atan2(Infinity, Infinity) = " + tmp);
1522 tmp = Math.atan2(Infinity, -Infinity, 1);
1523 ok(Math.floor(tmp*100) === 235, "Math.atan2(Infinity, -Infinity, 1) = " + tmp);
1525 tmp = Math.atan2();
1526 ok(isNaN(tmp), "Math.atan2() is not NaN");
1528 tmp = Math.atan2(1);
1529 ok(isNaN(tmp), "Math.atan2(1) is not NaN");
1531 tmp = Math.exp(0);
1532 ok(tmp === 1, "Math.exp(0) = " + tmp);
1534 tmp = Math.exp(1);
1535 ok(Math.floor(tmp*100) === 271, "Math.exp(1) = " + tmp);
1537 tmp = Math.exp(-1);
1538 ok(Math.floor(tmp*100) === 36, "Math.exp(-1) = " + tmp);
1540 tmp = Math.exp(true);
1541 ok(Math.floor(tmp*100) === 271, "Math.exp(true) = " + tmp);
1543 tmp = Math.exp(1, 1);
1544 ok(Math.floor(tmp*100) === 271, "Math.exp(1, 1) = " + tmp);
1546 tmp = Math.exp();
1547 ok(isNaN(tmp), "Math.exp() is not NaN");
1549 tmp = Math.exp(NaN);
1550 ok(isNaN(tmp), "Math.exp(NaN) is not NaN");
1552 tmp = Math.exp(Infinity);
1553 ok(tmp === Infinity, "Math.exp(Infinity) = " + tmp);
1555 tmp = Math.exp(-Infinity);
1556 ok(tmp === 0, "Math.exp(-Infinity) = " + tmp);
1558 tmp = Math.log(1);
1559 ok(Math.floor(tmp*100) === 0, "Math.log(1) = " + tmp);
1561 tmp = Math.log(-1);
1562 ok(isNaN(tmp), "Math.log(-1) is not NaN");
1564 tmp = Math.log(true);
1565 ok(Math.floor(tmp*100) === 0, "Math.log(true) = " + tmp);
1567 tmp = Math.log(1, 1);
1568 ok(Math.floor(tmp*100) === 0, "Math.log(1, 1) = " + tmp);
1570 tmp = Math.log();
1571 ok(isNaN(tmp), "Math.log() is not NaN");
1573 tmp = Math.log(NaN);
1574 ok(isNaN(tmp), "Math.log(NaN) is not NaN");
1576 tmp = Math.log(Infinity);
1577 ok(tmp === Infinity, "Math.log(Infinity) = " + tmp);
1579 tmp = Math.log(-Infinity);
1580 ok(isNaN(tmp), "Math.log(-Infinity) is not NaN");
1582 tmp = Math.sin(0);
1583 ok(tmp === 0, "Math.sin(0) = " + tmp);
1585 tmp = Math.sin(Math.PI/2);
1586 ok(tmp === 1, "Math.sin(Math.PI/2) = " + tmp);
1588 tmp = Math.sin(-Math.PI/2);
1589 ok(tmp === -1, "Math.sin(-Math.PI/2) = " + tmp);
1591 tmp = Math.sin(Math.PI/3, 2);
1592 ok(Math.floor(tmp*100) === 86, "Math.sin(Math.PI/3, 2) = " + tmp);
1594 tmp = Math.sin(true);
1595 ok(Math.floor(tmp*100) === 84, "Math.sin(true) = " + tmp);
1597 tmp = Math.sin(false);
1598 ok(tmp === 0, "Math.sin(false) = " + tmp);
1600 tmp = Math.sin();
1601 ok(isNaN(tmp), "Math.sin() is not NaN");
1603 tmp = Math.sin(NaN);
1604 ok(isNaN(tmp), "Math.sin(NaN) is not NaN");
1606 tmp = Math.sin(Infinity);
1607 ok(isNaN(tmp), "Math.sin(Infinity) is not NaN");
1609 tmp = Math.sin(-Infinity);
1610 ok(isNaN(tmp), "Math.sin(-Infinity) is not NaN");
1612 tmp = Math.sqrt(0);
1613 ok(tmp === 0, "Math.sqrt(0) = " + tmp);
1615 tmp = Math.sqrt(4);
1616 ok(tmp === 2, "Math.sqrt(4) = " + tmp);
1618 tmp = Math.sqrt(-1);
1619 ok(isNaN(tmp), "Math.sqrt(-1) is not NaN");
1621 tmp = Math.sqrt(2, 2);
1622 ok(Math.floor(tmp*100) === 141, "Math.sqrt(2, 2) = " + tmp);
1624 tmp = Math.sqrt(true);
1625 ok(tmp === 1, "Math.sqrt(true) = " + tmp);
1627 tmp = Math.sqrt(false);
1628 ok(tmp === 0, "Math.sqrt(false) = " + tmp);
1630 tmp = Math.sqrt();
1631 ok(isNaN(tmp), "Math.sqrt() is not NaN");
1633 tmp = Math.sqrt(NaN);
1634 ok(isNaN(tmp), "Math.sqrt(NaN) is not NaN");
1636 tmp = Math.sqrt(Infinity);
1637 ok(tmp === Infinity, "Math.sqrt(Infinity) = " + tmp);
1639 tmp = Math.sqrt(-Infinity);
1640 ok(isNaN(tmp), "Math.sqrt(-Infinity) is not NaN");
1642 tmp = Math.tan(0);
1643 ok(tmp === 0, "Math.tan(0) = " + tmp);
1645 tmp = Math.tan(Math.PI);
1646 ok(Math.floor(tmp*100) === -1, "Math.tan(Math.PI) = " + tmp);
1648 tmp = Math.tan(2, 2);
1649 ok(Math.floor(tmp*100) === -219, "Math.tan(2, 2) = " + tmp);
1651 tmp = Math.tan(true);
1652 ok(Math.floor(tmp*100) === 155, "Math.tan(true) = " + tmp);
1654 tmp = Math.tan(false);
1655 ok(tmp === 0, "Math.tan(false) = " + tmp);
1657 tmp = Math.tan();
1658 ok(isNaN(tmp), "Math.tan() is not NaN");
1660 tmp = Math.tan(NaN);
1661 ok(isNaN(tmp), "Math.tan(NaN) is not NaN");
1663 tmp = Math.tan(Infinity);
1664 ok(isNaN(tmp), "Math.tan(Infinity) is not NaN");
1666 tmp = Math.tan(-Infinity);
1667 ok(isNaN(tmp), "Math.tan(-Infinity) is not NaN");
1669 var func = function  (a) {
1670         var a = 1;
1671         if(a) return;
1672     };
1673 ok(func.toString() === "function  (a) {\n        var a = 1;\n        if(a) return;\n    }",
1674    "func.toString() = " + func.toString());
1675 ok("" + func === "function  (a) {\n        var a = 1;\n        if(a) return;\n    }",
1676    "'' + func.toString() = " + func);
1678 ok(func.valueOf === Object.prototype.valueOf, "func.valueOf !== Object.prototype.valueOf");
1679 ok(func === func.valueOf(), "func !== func.valueOf()");
1681 function testFuncToString(x,y) {
1682     return x+y;
1684 ok(testFuncToString.toString() === "function testFuncToString(x,y) {\n    return x+y;\n}",
1685    "testFuncToString.toString() = " + testFuncToString.toString());
1686 ok("" + testFuncToString === "function testFuncToString(x,y) {\n    return x+y;\n}",
1687    "'' + testFuncToString = " + testFuncToString);
1689 tmp = new Object();
1691 function callTest(argc) {
1692     ok(this === tmp, "this !== tmp\n");
1693     ok(arguments.length === argc+1, "arguments.length = " + arguments.length + " expected " + (argc+1));
1694     for(var i=1; i <= argc; i++)
1695         ok(arguments[i] === i, "arguments[i] = " + arguments[i]);
1698 callTest.call(tmp, 1, 1);
1699 callTest.call(tmp, 2, 1, 2);
1700 callTest.call(tmp, 3, 1, 2, 3);
1702 callTest.apply(tmp, [1, 1]);
1703 callTest.apply(tmp, [2, 1, 2]);
1704 callTest.apply(tmp, [3, 1, 2, 3]);
1705 (function () { callTest.apply(tmp, arguments); })(2,1,2);
1707 function callTest2() {
1708     ok(this === tmp, "this !== tmp\n");
1709     ok(arguments.length === 0, "callTest2: arguments.length = " + arguments.length + " expected 0");
1712 callTest2.call(tmp);
1713 callTest2.apply(tmp, []);
1714 callTest2.apply(tmp);
1715 (function () { callTest2.apply(tmp, arguments); })();
1717 function callTest3() {
1718     testThis(this);
1719     ok(arguments.length === 0, "arguments.length = " + arguments.length + " expected 0");
1722 callTest3.call();
1723 callTest3.call(undefined);
1724 callTest3.call(null);
1725 callTest3.apply();
1726 callTest3.apply(undefined);
1727 callTest3.apply(null);
1729 tmp = Number.prototype.toString.call(3);
1730 ok(tmp === "3", "Number.prototype.toString.call(3) = " + tmp);
1732 var func = new Function("return 3;");
1734 tmp = func();
1735 ok(tmp === 3, "func() = " + tmp);
1736 ok(func.call() === 3, "func.call() = " + tmp);
1737 ok(func.length === 0, "func.length = " + func.length);
1738 tmp = func.toString();
1739 ok(tmp === "function anonymous() {\nreturn 3;\n}", "func.toString() = " + tmp);
1741 func = new Function("x", "return x+2;");
1742 tmp = func(1);
1743 ok(tmp === 3, "func(1) = " + tmp);
1744 tmp = func.toString();
1745 ok(tmp === "function anonymous(x) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1747 tmp = (new Function("x ", "return x+2;")).toString();
1748 ok(tmp === "function anonymous(x ) {\nreturn x+2;\n}", "func.toString() = " + tmp);
1750 func = new Function("x", "y", "return x+y");
1751 tmp = func(1,3);
1752 ok(tmp === 4, "func(1,3) = " + tmp);
1753 tmp = func.toString();
1754 ok(tmp === "function anonymous(x, y) {\nreturn x+y\n}", "func.toString() = " + tmp);
1756 func = new Function(" x, \ty", "\tz", "return x+y+z;");
1757 tmp = func(1,3,2);
1758 ok(tmp === 6, "func(1,3,2) = " + tmp);
1759 ok(func.length === 3, "func.length = " + func.length);
1760 tmp = func.toString();
1761 ok(tmp === "function anonymous( x, \ty, \tz) {\nreturn x+y+z;\n}", "func.toString() = " + tmp);
1763 func = new Function();
1764 tmp = func();
1765 ok(tmp === undefined, "func() = " + tmp);
1766 tmp = func.toString();
1767 ok(tmp == "function anonymous() {\n\n}", "func.toString() = " + tmp);
1769 func = (function() {
1770         var tmp = 3;
1771         return new Function("return tmp;");
1772     })();
1773 tmp = 2;
1774 tmp = func();
1775 ok(tmp === 2, "func() = " + tmp);
1777 var date = new Date();
1779 date = new Date(100);
1780 ok(date.getTime() === 100, "date.getTime() = " + date.getTime());
1781 ok(Date.prototype.getTime() === 0, "date.prototype.getTime() = " + Date.prototype.getTime());
1782 date = new Date(8.64e15);
1783 ok(date.getTime() === 8.64e15, "date.getTime() = " + date.getTime());
1784 date = new Date(8.64e15+1);
1785 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
1786 date = new Date(Infinity);
1787 ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
1788 date = new Date("3 July 2009 22:28:00 UTC+0100");
1789 ok(date.getTime() === 1246656480000, "date.getTime() = " + date.getTime());
1790 date = new Date(1984, 11, 29, 13, 51, 24, 120);
1791 ok(date.getFullYear() === 1984, "date.getFullYear() = " + date.getFullYear());
1792 ok(date.getMonth() === 11, "date.getMonth() = " + date.getMonth());
1793 ok(date.getDate() === 29, "date.getDate() = " + date.getDate());
1794 ok(date.getHours() === 13, "date.getHours() = " + date.getHours());
1795 ok(date.getMinutes() === 51, "date.getMinutes() = " + date.getMinutes());
1796 ok(date.getSeconds() === 24, "date.getSeconds() = " + date.getSeconds());
1797 ok(date.getMilliseconds() === 120, "date.getMilliseconds() = " + date.getMilliseconds());
1798 date = new Date(731, -32, 40, -1, 70, 65, -13);
1799 ok(date.getFullYear() === 728, "date.getFullYear() = " + date.getFullYear());
1800 ok(date.getMonth() === 5, "date.getMonth() = " + date.getMonth());
1801 ok(date.getDate() === 9, "date.getDate() = " + date.getDate());
1802 ok(date.getHours() === 0, "date.getHours() = " + date.getHours());
1803 ok(date.getMinutes() === 11, "date.getMinutes() = " + date.getMinutes());
1804 ok(date.getSeconds() === 4, "date.getSeconds() = " + date.getSeconds());
1805 ok(date.getMilliseconds() === 987, "date.getMilliseconds() = " + date.getMilliseconds());
1807 ok(date.setTime(123) === 123, "date.setTime(123) !== 123");
1808 ok(date.setTime("123", NaN) === 123, "date.setTime(\"123\") !== 123");
1809 ok(isNaN(date.setTime(NaN)), "date.setTime(NaN) is not NaN");
1811 ok(date.setTime(0) === date.getTime(), "date.setTime(0) !== date.getTime()");
1812 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
1813 ok(date.getUTCMonth() === 0, "date.getUTCMonth() = " + date.getUTCMonth());
1814 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
1815 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
1816 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
1817 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
1818 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
1819 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1821 date.setTime(60*24*60*60*1000);
1822 ok(date.getUTCFullYear() === 1970, "date.getUTCFullYear() = " + date.getUTCFullYear());
1823 ok(date.getUTCMonth() === 2, "date.getUTCMonth() = " + date.getUTCMonth());
1824 ok(date.getUTCDate() === 2, "date.getUTCDate() = " + date.getUTCDate());
1825 ok(date.getUTCDay() === 1, "date.getUTCDay() = " + date.getUTCDay());
1826 ok(date.getUTCHours() === 0, "date.getUTCHours() = " + date.getUTCHours());
1827 ok(date.getUTCMinutes() === 0, "date.getUTCMinutes() = " + date.getUTCMinutes());
1828 ok(date.getUTCSeconds() === 0, "date.getUTCSeconds() = " + date.getUTCSeconds());
1829 ok(date.getUTCMilliseconds() === 0, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1831 date.setTime(59*24*60*60*1000 + 4*365*24*60*60*1000 + 60*60*1000 + 2*60*1000 + 2*1000 + 640);
1832 ok(date.getUTCFullYear() === 1974, "date.getUTCFullYear() = " + date.getUTCFullYear());
1833 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1834 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1835 ok(date.getUTCDate() === 28, "date.getUTCDate() = " + date.getUTCDate());
1836 ok(date.getUTCDay() === 4, "date.getUTCDay() = " + date.getUTCDay());
1837 ok(date.getUTCHours() === 1, "date.getUTCHours() = " + date.getUTCHours());
1838 ok(date.getUTCMinutes() === 2, "date.getUTCMinutes() = " + date.getUTCMinutes());
1839 ok(date.getUTCSeconds() === 2, "date.getUTCSeconds() = " + date.getUTCSeconds());
1840 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1842 tmp = date.setYear(96);
1843 ok(date.getYear() === 96, "date.getYear() = " + date.getYear());
1844 ok(date.getFullYear() === 1996, "date.getFullYear() = " + date.getYear());
1845 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1846 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1847 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1849 tmp = date.setYear(2010);
1850 ok(tmp === date.getTime(), "date.setYear(2010) = " + tmp);
1851 ok(date.getYear() === 2010, "date.getYear() = " + date.getYear());
1852 ok(date.getFullYear() === 2010, "date.getFullYear() = " + date.getYear());
1853 ok(date.getUTCMonth() === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1854 ok(date.getUTCMonth(123) === 1, "date.getUTCMonth() = " + date.getUTCMonth());
1855 ok(date.getUTCMilliseconds() === 640, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1857 date.setTime(Infinity);
1858 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
1859 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
1860 ok(isNaN(date.getUTCDate()), "date.getUTCDate() is not NaN");
1861 ok(isNaN(date.getUTCDay()), "date.getUTCDay() is not NaN");
1862 ok(isNaN(date.getUTCHours()), "date.getUTCHours() is not NaN");
1863 ok(isNaN(date.getUTCMinutes()), "date.getUTCMinutes() is not NaN");
1864 ok(isNaN(date.getUTCSeconds()), "date.getUTCSeconds() is not NaN");
1865 ok(isNaN(date.getUTCMilliseconds()), "date.getUTCMilliseconds() is not NaN");
1866 ok(isNaN(date.setMilliseconds(0)), "date.setMilliseconds() is not NaN");
1868 date.setTime(0);
1869 tmp = date.setYear(NaN);
1870 ok(isNaN(tmp), "date.setYear(NaN) = " + tmp);
1871 ok(isNaN(date.getUTCFullYear()), "date.getUTCFullYear() is not NaN");
1872 ok(isNaN(date.getUTCMonth()), "date.getUTCMonth() is not NaN");
1874 date.setTime(0);
1875 date.setUTCMilliseconds(-10, 2);
1876 ok(date.getUTCMilliseconds() === 990, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1877 date.setUTCMilliseconds(10);
1878 ok(date.getUTCMilliseconds() === 10, "date.getUTCMilliseconds() = " + date.getUTCMilliseconds());
1879 date.setUTCSeconds(-10);
1880 ok(date.getUTCSeconds() === 50, "date.getUTCSeconds() = " + date.getUTCSeconds());
1881 date.setUTCMinutes(-10);
1882 ok(date.getUTCMinutes() === 50, "date.getUTCMinutes() = " + date.getUTCMinutes());
1883 date.setUTCHours(-10);
1884 ok(date.getUTCHours() === 14, "date.getUTCHours() = " + date.getUTCHours());
1885 date.setUTCHours(-123);
1886 ok(date.getTime() === -612549990, "date.getTime() = " + date.getTime());
1887 date.setUTCHours(20);
1888 ok(date.getUTCHours() === 20, "date.getUTCHours() = " + date.getUTCHours());
1889 date.setUTCDate(32);
1890 ok(date.getUTCDate() === 1, "date.getUTCDate() = " + date.getUTCDate());
1891 date.setUTCMonth(22, 37);
1892 ok(date.getTime() === 60987050010, "date.getTime() = " + date.getTime());
1893 date.setUTCFullYear(83, 21, 321);
1894 ok(date.getTime() === -59464984149990, "date.getTime() = " + date.getTime());
1895 ok(Math.abs(date) === 59464984149990, "Math.abs(date) = " + Math.abs(date));
1896 ok(getVT(date+1) === "VT_BSTR", "getVT(date+1) = " + getVT(date+1));
1898 ok(isNaN(Date.parse()), "Date.parse() is not NaN");
1899 ok(isNaN(Date.parse("")), "Date.parse(\"\") is not NaN");
1900 ok(isNaN(Date.parse("Jan Jan 20 2009")), "Date.parse(\"Jan Jan 20 2009\") is not NaN");
1901 ok(Date.parse("Jan 20 2009 UTC") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC\") = " + Date.parse("Jan 20 2009 UTC"));
1902 ok(Date.parse("Jan 20 2009 GMT") === 1232409600000, "Date.parse(\"Jan 20 2009 GMT\") = " + Date.parse("Jan 20 2009 GMT"));
1903 ok(Date.parse("Jan 20 2009 UTC-0") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC-0\") = " + Date.parse("Jan 20 2009 UTC-0"));
1904 ok(Date.parse("Jan 20 2009 UTC+0000") === 1232409600000, "Date.parse(\"Jan 20 2009 UTC+0000\") = " + Date.parse("Jan 20 2009 UTC+0000"));
1905 ok(Date.parse("Ju 13 79 UTC") === 300672000000, "Date.parse(\"Ju 13 79 UTC\") = " + Date.parse("Ju 13 79 UTC"));
1906 ok(Date.parse("12Au91 UTC") === 681955200000, "Date.parse(\"12Au91 UTC\") = " + Date.parse("12Au91 UTC"));
1907 ok(Date.parse("7/02/17 UTC") === -1656806400000, "Date.parse(\"7/02/17 UTC\") = " + Date.parse("7/02/17 UTC"));
1908 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"));
1909 ok(Date.parse("February 31   UTC, 2000 12:31:17 PM") === 952000277000,
1910         "Date.parse(\"February 31   UTC, 2000 12:31:17 PM\") = " + Date.parse("February 31   UTC, 2000 12:31:17 PM"));
1911 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 "));
1912 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"));
1914 ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI));
1915 ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI);
1916 Math.PI = "test";
1917 ok(Math.floor(Math.PI*100) === 314, "modified Math.PI = " + Math.PI);
1919 ok(typeof(Math.E) === "number", "typeof(Math.E) = " + typeof(Math.E));
1920 ok(Math.floor(Math.E*100) === 271, "Math.E = " + Math.E);
1921 Math.E = "test";
1922 ok(Math.floor(Math.E*100) === 271, "modified Math.E = " + Math.E);
1924 ok(typeof(Math.LOG2E) === "number", "typeof(Math.LOG2E) = " + typeof(Math.LOG2E));
1925 ok(Math.floor(Math.LOG2E*100) === 144, "Math.LOG2E = " + Math.LOG2E);
1926 Math.LOG2E = "test";
1927 ok(Math.floor(Math.LOG2E*100) === 144, "modified Math.LOG2E = " + Math.LOG2E);
1929 ok(typeof(Math.LOG10E) === "number", "typeof(Math.LOG10E) = " + typeof(Math.LOG10E));
1930 ok(Math.floor(Math.LOG10E*100) === 43, "Math.LOG10E = " + Math.LOG10E);
1931 Math.LOG10E = "test";
1932 ok(Math.floor(Math.LOG10E*100) === 43, "modified Math.LOG10E = " + Math.LOG10E);
1934 ok(typeof(Math.LN2) === "number", "typeof(Math.LN2) = " + typeof(Math.LN2));
1935 ok(Math.floor(Math.LN2*100) === 69, "Math.LN2 = " + Math.LN2);
1936 Math.LN2 = "test";
1937 ok(Math.floor(Math.LN2*100) === 69, "modified Math.LN2 = " + Math.LN2);
1939 ok(typeof(Math.LN10) === "number", "typeof(Math.LN10) = " + typeof(Math.LN10));
1940 ok(Math.floor(Math.LN10*100) === 230, "Math.LN10 = " + Math.LN10);
1941 Math.LN10 = "test";
1942 ok(Math.floor(Math.LN10*100) === 230, "modified Math.LN10 = " + Math.LN10);
1944 ok(typeof(Math.SQRT2) === "number", "typeof(Math.SQRT2) = " + typeof(Math.SQRT2));
1945 ok(Math.floor(Math.SQRT2*100) === 141, "Math.SQRT2 = " + Math.SQRT2);
1946 Math.SQRT2 = "test";
1947 ok(Math.floor(Math.SQRT2*100) === 141, "modified Math.SQRT2 = " + Math.SQRT2);
1949 ok(typeof(Math.SQRT1_2) === "number", "typeof(Math.SQRT1_2) = " + typeof(Math.SQRT1_2));
1950 ok(Math.floor(Math.SQRT1_2*100) === 70, "Math.SQRT1_2 = " + Math.SQRT1_2);
1951 Math.SQRT1_2 = "test";
1952 ok(Math.floor(Math.SQRT1_2*100) === 70, "modified Math.SQRT1_2 = " + Math.SQRT1_2);
1954 ok(isNaN.toString() === "\nfunction isNaN() {\n    [native code]\n}\n",
1955    "isNaN.toString = '" + isNaN.toString() + "'");
1956 ok(Array.toString() === "\nfunction Array() {\n    [native code]\n}\n",
1957    "isNaN.toString = '" + Array.toString() + "'");
1958 ok(Function.toString() === "\nfunction Function() {\n    [native code]\n}\n",
1959    "isNaN.toString = '" + Function.toString() + "'");
1960 ok(Function.prototype.toString() === "\nfunction prototype() {\n    [native code]\n}\n",
1961    "isNaN.toString = '" + Function.prototype.toString() + "'");
1962 ok("".substr.toString() === "\nfunction substr() {\n    [native code]\n}\n",
1963    "''.substr.toString = '" + "".substr.toString() + "'");
1965 var bool = new Boolean();
1966 ok(bool.toString() === "false", "bool.toString() = " + bool.toString());
1967 var bool = new Boolean("false");
1968 ok(bool.toString() === "true", "bool.toString() = " + bool.toString());
1969 ok(bool.valueOf() === Boolean(1), "bool.valueOf() = " + bool.valueOf());
1970 ok(bool.toLocaleString() === bool.toString(), "bool.toLocaleString() = " + bool.toLocaleString());
1972 ok(ActiveXObject instanceof Function, "ActiveXObject is not instance of Function");
1973 ok(ActiveXObject.prototype instanceof Object, "ActiveXObject.prototype is not instance of Object");
1975 ok(Error.prototype !== TypeError.prototype, "Error.prototype === TypeError.prototype");
1976 ok(RangeError.prototype !== TypeError.prototype, "RangeError.prototype === TypeError.prototype");
1977 ok(Error.prototype.toLocaleString === Object.prototype.toLocaleString,
1978         "Error.prototype.toLocaleString !== Object.prototype.toLocaleString");
1979 err = new Error();
1980 ok(err.valueOf === Object.prototype.valueOf, "err.valueOf !== Object.prototype.valueOf");
1981 ok(Error.prototype.name === "Error", "Error.prototype.name = " + Error.prototype.name);
1982 ok(err.name === "Error", "err.name = " + err.name);
1983 EvalError.prototype.message = "test";
1984 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
1985 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error"), "err.toString() = " + err.toString());
1986 err = new EvalError();
1987 ok(EvalError.prototype.name === "EvalError", "EvalError.prototype.name = " + EvalError.prototype.name);
1988 ok(err.name === "EvalError", "err.name = " + err.name);
1989 ok(err.toString === Error.prototype.toString, "err.toString !== Error.prototype.toString");
1990 ok(err.message === "", "err.message != ''");
1991 err.message = date;
1992 ok(err.message === date, "err.message != date");
1993 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "EvalError: "+err.message),
1994    "err.toString() = " + err.toString());
1995 ok(err.toString !== Object.prototype.toString, "err.toString === Object.prototype.toString");
1996 err = new RangeError();
1997 ok(RangeError.prototype.name === "RangeError", "RangeError.prototype.name = " + RangeError.prototype.name);
1998 ok(err.name === "RangeError", "err.name = " + err.name);
1999 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "RangeError"), "err.toString() = " + err.toString());
2000 err = new ReferenceError();
2001 ok(ReferenceError.prototype.name === "ReferenceError", "ReferenceError.prototype.name = " + ReferenceError.prototype.name);
2002 ok(err.name === "ReferenceError", "err.name = " + err.name);
2003 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "ReferenceError"), "err.toString() = " + err.toString());
2004 err = new SyntaxError();
2005 ok(SyntaxError.prototype.name === "SyntaxError", "SyntaxError.prototype.name = " + SyntaxError.prototype.name);
2006 ok(err.name === "SyntaxError", "err.name = " + err.name);
2007 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "SyntaxError"), "err.toString() = " + err.toString());
2008 err = new TypeError();
2009 ok(TypeError.prototype.name === "TypeError", "TypeError.prototype.name = " + TypeError.prototype.name);
2010 ok(err.name === "TypeError", "err.name = " + err.name);
2011 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "TypeError"), "err.toString() = " + err.toString());
2012 err = new URIError();
2013 ok(URIError.prototype.name === "URIError", "URIError.prototype.name = " + URIError.prototype.name);
2014 ok(err.name === "URIError", "err.name = " + err.name);
2015 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "URIError"), "err.toString() = " + err.toString());
2016 err = new Error("message");
2017 ok(err.message === "message", "err.message !== 'message'");
2018 ok(err.toString() === (invokeVersion < 2 ? "[object Error]" : "Error: message"), "err.toString() = " + err.toString());
2019 err = new Error(123);
2020 ok(err.number === 123, "err.number = " + err.number);
2021 err.number = 254;
2022 ok(err.number === 254, "err.number = " + err.number);
2023 err = new Error(0, "message");
2024 ok(err.number === 0, "err.number = " + err.number);
2025 ok(err.message === "message", "err.message = " + err.message);
2026 ok(err.description === "message", "err.description = " + err.description);
2027 err = new Error();
2028 ok(err.number === 0, "err.number = " + err.number);
2029 ok(err.description === "", "err.description = " + err.description);
2030 err.description = 5;
2031 ok(err.description === 5, "err.description = " + err.description);
2032 ok(err.message === "", "err.message = " + err.message);
2033 err.message = 4;
2034 ok(err.message === 4, "err.message = " + err.message);
2036 ok(!("number" in Error), "number is in Error");
2038 tmp = new Object();
2039 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2040 tmp.toString = function() { return "test"; };
2041 ok(tmp.hasOwnProperty("toString") === true, "toString own property should exist");
2042 ok(tmp.hasOwnProperty("nonExisting") === false, "nonExisting property should not exist");
2044 tmp = Error.prototype.toString.call(tmp);
2045 ok(tmp === "[object Error]", "Error.prototype.toString.call(tmp) = " + tmp);
2047 tmp = function() { return 0; };
2048 tmp[0] = true;
2049 ok(tmp.hasOwnProperty("toString") === false, "toString property should be inherited");
2050 ok(tmp.hasOwnProperty("0") === true, "hasOwnProperty(0) returned false");
2051 ok(tmp.hasOwnProperty() === false, "hasOwnProperty() returned true");
2053 ok(Object.prototype.hasOwnProperty.call(testObj) === false, "hasOwnProperty without name returned true");
2055 if(invokeVersion >= 2) {
2056     obj = new Object();
2057     obj.name = "test";
2058     tmp = Error.prototype.toString.call(obj);
2059     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2061     obj = new Object();
2062     obj.name = 6;
2063     obj.message = false;
2064     tmp = Error.prototype.toString.call(obj);
2065     ok(tmp === "6: false", "Error.prototype.toString.call(obj) = " + tmp);
2067     obj = new Object();
2068     obj.message = "test";
2069     tmp = Error.prototype.toString.call(obj);
2070     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2072     obj = new Object();
2073     obj.name = "";
2074     obj.message = "test";
2075     tmp = Error.prototype.toString.call(obj);
2076     ok(tmp === "test", "Error.prototype.toString.call(obj) = " + tmp);
2079 tmp = Error.prototype.toString.call(testObj);
2080 ok(tmp === "[object Error]", "Error.prototype.toString.call(testObj) = " + tmp);
2082 err = new Error();
2083 err.name = null;
2084 ok(err.name === null, "err.name = " + err.name + " expected null");
2085 if(invokeVersion >= 2)
2086     ok(err.toString() === "null", "err.toString() = " + err.toString());
2088 err = new Error();
2089 err.message = false;
2090 ok(err.message === false, "err.message = " + err.message + " expected false");
2091 if(invokeVersion >= 2)
2092     ok(err.toString() === "Error: false", "err.toString() = " + err.toString());
2094 err = new Error();
2095 err.message = new Object();
2096 err.message.toString = function() { return ""; };
2097 if(invokeVersion >= 2)
2098     ok(err.toString() === "Error", "err.toString() = " + err.toString());
2100 err = new Error();
2101 err.message = undefined;
2102 if(invokeVersion >= 2)
2103     ok(err.toString() === "Error", "err.toString() = " + err.toString());
2105 var exception_array = {
2106     E_INVALID_LENGTH:  { type: "RangeError",  number: -2146823259 },
2108     E_NOT_DATE:            { type: "TypeError",   number: -2146823282 },
2109     E_NOT_BOOL:            { type: "TypeError",   number: -2146823278 },
2110     E_ARG_NOT_OPT:         { type: "TypeError",   number: -2146827839 },
2111     E_NO_PROPERTY:         { type: "TypeError",   number: -2146827850 },
2112     E_NOT_NUM:             { type: "TypeError",   number: -2146823287 },
2113     E_INVALID_CALL_ARG:    { type: "TypeError",   number: -2146828283 },
2114     E_NOT_FUNC:            { type: "TypeError",   number: -2146823286 },
2115     E_OBJECT_EXPECTED:     { type: "TypeError", number: -2146823281 },
2116     E_OBJECT_REQUIRED:     { type: "TypeError", number: -2146827864 },
2117     E_UNSUPPORTED_ACTION:  { type: "TypeError", number: -2146827843 },
2118     E_NOT_VBARRAY:         { type: "TypeError", number: -2146823275 },
2119     E_INVALID_DELETE:      { type: "TypeError", number: -2146823276 },
2120     E_UNDEFINED:           { type: "TypeError", number: -2146823279 },
2121     E_JSCRIPT_EXPECTED:    { type: "TypeError", number: -2146823274 },
2122     E_NOT_ARRAY:           { type: "TypeError", number: -2146823257 },
2124     E_SYNTAX_ERROR:      { type: "SyntaxError",  number: -2146827286 },
2125     E_LBRACKET:          { type: "SyntaxError",  number: -2146827283 },
2126     E_RBRACKET:          { type: "SyntaxError",  number: -2146827282 },
2127     E_SEMICOLON:         { type: "SyntaxError",  number: -2146827284 },
2128     E_UNTERMINATED_STR:  { type: "SyntaxError",  number: -2146827273 },
2129     E_DISABLED_CC:       { type: "SyntaxError",  number: -2146827258 },
2130     E_INVALID_BREAK:     { type: "SyntaxError",  number: -2146827269 },
2131     E_INVALID_CONTINUE:  { type: "SyntaxError",  number: -2146827268 },
2132     E_LABEL_NOT_FOUND:   { type: "SyntaxError",  number: -2146827262 },
2133     E_LABEL_REDEFINED:   { type: "SyntaxError",  number: -2146827263 },
2135     E_ILLEGAL_ASSIGN:  { type: "ReferenceError", number: -2146823280 },
2137     E_PRECISION_OUT_OF_RANGE:        {type: "RangeError", number: -2146823261 },
2138     E_FRACTION_DIGITS_OUT_OF_RANGE:  {type: "RangeError", number: -2146823262 },
2139     E_SUBSCRIPT_OUT_OF_RANGE:        {type: "RangeError", number: -2146828279 },
2141     E_REGEXP_SYNTAX_ERROR:  { type: "RegExpError", number: -2146823271 },
2143     E_URI_INVALID_CHAR:     { type: "URIError", number: -2146823264 },
2144     E_URI_INVALID_CODING:   { type: "URIError", number: -2146823263 }
2147 function testException(func, id) {
2148     var ex = exception_array[id];
2149     var ret = "", num = "";
2151     try {
2152         func();
2153     } catch(e) {
2154         ret = e.name;
2155         num = e.number;
2156     }
2158     ok(ret === ex.type, "Exception test, ret = " + ret + ", expected " + ex.type +". Executed function: " + func.toString());
2159     ok(num === ex.number, "Exception test, num = " + num + ", expected " + ex.number + ". Executed function: " + func.toString());
2162 // RangeError tests
2163 testException(function() {Array(-3);}, "E_INVALID_LENGTH");
2164 testException(function() {createArray().lbound("aaa");}, "E_SUBSCRIPT_OUT_OF_RANGE");
2165 testException(function() {createArray().lbound(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2166 testException(function() {createArray().getItem(3);}, "E_SUBSCRIPT_OUT_OF_RANGE");
2168 // TypeError tests
2169 testException(function() {date.setTime();}, "E_ARG_NOT_OPT");
2170 testException(function() {date.setYear();}, "E_ARG_NOT_OPT");
2171 testException(function() {arr.test();}, "E_NO_PROPERTY");
2172 testException(function() {Number.prototype.toString.call(arr);}, "E_NOT_NUM");
2173 testException(function() {Number.prototype.toFixed.call(arr);}, "E_NOT_NUM");
2174 testException(function() {(new Number(3)).toString(1);}, "E_INVALID_CALL_ARG");
2175 testException(function() {(new Number(3)).toFixed(21);}, "E_FRACTION_DIGITS_OUT_OF_RANGE");
2176 testException(function() {(new Number(1)).toPrecision(0);}, "E_PRECISION_OUT_OF_RANGE");
2177 testException(function() {not_existing_variable.something();}, "E_UNDEFINED");
2178 testException(function() {date();}, "E_NOT_FUNC");
2179 testException(function() {arr();}, "E_NOT_FUNC");
2180 testException(function() {(new Object) instanceof (new Object);}, "E_NOT_FUNC");
2181 testException(function() {eval("nonexistingfunc()")}, "E_OBJECT_EXPECTED");
2182 testException(function() {(new Object()) instanceof 3;}, "E_NOT_FUNC");
2183 testException(function() {(new Object()) instanceof null;}, "E_NOT_FUNC");
2184 testException(function() {(new Object()) instanceof nullDisp;}, "E_NOT_FUNC");
2185 testException(function() {"test" in 3;}, "E_OBJECT_EXPECTED");
2186 testException(function() {"test" in null;}, "E_OBJECT_EXPECTED");
2187 testException(function() {"test" in nullDisp;}, "E_OBJECT_EXPECTED");
2188 testException(function() {new 3;}, "E_UNSUPPORTED_ACTION");
2189 testException(function() {new null;}, "E_OBJECT_EXPECTED");
2190 testException(function() {new nullDisp;}, "E_NO_PROPERTY");
2191 testException(function() {new VBArray();}, "E_NOT_VBARRAY");
2192 testException(function() {new VBArray(new VBArray(createArray()));}, "E_NOT_VBARRAY");
2193 testException(function() {VBArray.prototype.lbound.call(new Object());}, "E_NOT_VBARRAY");
2194 testException(function() {+nullDisp.prop;}, "E_OBJECT_REQUIRED");
2195 testException(function() {+nullDisp["prop"];}, "E_OBJECT_REQUIRED");
2196 testException(function() {delete (new Object());}, "E_INVALID_DELETE");
2197 testException(function() {delete false;}, "E_INVALID_DELETE");
2199 obj = new Object();
2200 obj.prop = 1;
2201 tmp = false;
2202 testException(function() {delete ((tmp = true) ? obj.prop : obj.prop);}, "E_INVALID_DELETE");
2203 ok(tmp, "delete (..) expression not evaluated");
2205 //FIXME: testException(function() {nonexistent++;}, "E_OBJECT_EXPECTED");
2206 //FIXME: testException(function() {undefined.nonexistent++;}, "E_OBJECT_EXPECTED");
2209 // SyntaxError tests
2210 function testSyntaxError(code, id) {
2211     var ex = exception_array[id];
2212     var ret = "", num = "";
2214     try {
2215         eval(code);
2216     } catch(e) {
2217         ret = e.name;
2218         num = e.number;
2219     }
2221     ok(ret === ex.type, "Syntax exception test, ret = " + ret + ", expected " + ex.type +". Executed code: " + code);
2222     ok(num === ex.number, "Syntax exception test, num = " + num + ", expected " + ex.number + ". Executed code: " + code);
2225 testSyntaxError("for(i=0;) {}", "E_SYNTAX_ERROR");
2226 testSyntaxError("function {};", "E_LBRACKET");
2227 testSyntaxError("if", "E_LBRACKET");
2228 testSyntaxError("do i=0; while", "E_LBRACKET");
2229 testSyntaxError("while", "E_LBRACKET");
2230 testSyntaxError("for", "E_LBRACKET");
2231 testSyntaxError("with", "E_LBRACKET");
2232 testSyntaxError("switch", "E_LBRACKET");
2233 testSyntaxError("if(false", "E_RBRACKET");
2234 testSyntaxError("for(i=0; i<10; i++", "E_RBRACKET");
2235 testSyntaxError("while(true", "E_RBRACKET");
2236 testSyntaxError("for(i=0", "E_SEMICOLON");
2237 testSyntaxError("for(i=0;i<10", "E_SEMICOLON");
2238 testSyntaxError("while(", "E_SYNTAX_ERROR");
2239 testSyntaxError("if(", "E_SYNTAX_ERROR");
2240 testSyntaxError("'unterminated", "E_UNTERMINATED_STR");
2241 testSyntaxError("*", "E_SYNTAX_ERROR");
2242 testSyntaxError("@_jscript_version", "E_DISABLED_CC");
2243 testSyntaxError("@a", "E_DISABLED_CC");
2244 testSyntaxError("/* @cc_on @*/ @_jscript_version", "E_DISABLED_CC");
2245 testSyntaxError("ok(false, 'unexpected execution'); break;", "E_INVALID_BREAK");
2246 testSyntaxError("ok(false, 'unexpected execution'); continue;", "E_INVALID_CONTINUE");
2247 testSyntaxError("ok(false, 'unexpected execution'); while(true) break unknown_label;", "E_LABEL_NOT_FOUND");
2248 testSyntaxError("ok(false, 'unexpected execution'); some_label: continue some_label;", "E_INVALID_CONTINUE");
2249 testSyntaxError("ok(false, 'unexpected execution'); while(true) continue some_label;", "E_LABEL_NOT_FOUND");
2250 testSyntaxError("ok(false, 'unexpected execution'); some_label: { while(true) continue some_label; }", "E_INVALID_CONTINUE");
2251 testSyntaxError("ok(false, 'unexpected execution'); some_label: { some_label: while(true); }", "E_LABEL_REDEFINED");
2253 // ReferenceError tests
2254 testException(function() {test = function() {}}, "E_ILLEGAL_ASSIGN");
2256 tmp = false;
2257 testException(function() {test = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2258 ok(tmp, "expr value on invalid assign not evaluated");
2260 tmp = false;
2261 testException(function() {(tmp = true) = false;}, "E_ILLEGAL_ASSIGN");
2262 ok(tmp, "expr assign not evaluated");
2264 tmp = false;
2265 testException(function() {true = (tmp = true);}, "E_ILLEGAL_ASSIGN");
2266 ok(tmp, "expr value assign not evaluated");
2268 tmp = "";
2269 testException(function() {(tmp = tmp+"1") = (tmp = tmp+"2");}, "E_ILLEGAL_ASSIGN");
2270 ok(tmp === "12", "assign evaluated in unexpected order");
2272 tmp = false;
2273 testException(function() { ((tmp = true) && false)++; }, "E_ILLEGAL_ASSIGN")
2274 ok(tmp, "incremented expression not evaluated");
2276 // RegExpError tests
2277 testException(function() {RegExp(/a/, "g");}, "E_REGEXP_SYNTAX_ERROR");
2279 // URIError tests
2280 testException(function() {encodeURI('\udcaa');}, "E_URI_INVALID_CHAR");
2281 testException(function() {encodeURIComponent('\udcaa');}, "E_URI_INVALID_CHAR");
2282 testException(function() {decodeURI('%');}, "E_URI_INVALID_CODING");
2283 testException(function() {decodeURI('%aaaa');}, "E_URI_INVALID_CODING");
2285 function testThisExcept(func, e) {
2286     testException(function() {func.call(new Object())}, e);
2289 function testBoolThis(func) {
2290     testThisExcept(Boolean.prototype[func], "E_NOT_BOOL");
2293 testBoolThis("toString");
2294 testBoolThis("valueOf");
2296 function testDateThis(func) {
2297     testThisExcept(Date.prototype[func], "E_NOT_DATE");
2300 testDateThis("getDate");
2301 testDateThis("getDay");
2302 testDateThis("getFullYear");
2303 testDateThis("getHours");
2304 testDateThis("getMilliseconds");
2305 testDateThis("getMinutes");
2306 testDateThis("getMonth");
2307 testDateThis("getSeconds");
2308 testDateThis("getTime");
2309 testDateThis("getTimezoneOffset");
2310 testDateThis("getUTCDate");
2311 testDateThis("getUTCDay");
2312 testDateThis("getUTCFullYear");
2313 testDateThis("getUTCHours");
2314 testDateThis("getUTCMilliseconds");
2315 testDateThis("getUTCMinutes");
2316 testDateThis("getUTCMonth");
2317 testDateThis("getUTCSeconds");
2318 testDateThis("getYear");
2319 testDateThis("setDate");
2320 testDateThis("setFullYear");
2321 testDateThis("setHours");
2322 testDateThis("setMilliseconds");
2323 testDateThis("setMinutes");
2324 testDateThis("setMonth");
2325 testDateThis("setSeconds");
2326 testDateThis("setTime");
2327 testDateThis("setUTCDate");
2328 testDateThis("setUTCFullYear");
2329 testDateThis("setUTCHours");
2330 testDateThis("setUTCMilliseconds");
2331 testDateThis("setUTCMinutes");
2332 testDateThis("setUTCMonth");
2333 testDateThis("setUTCSeconds");
2334 testDateThis("setYear");
2335 testDateThis("toDateString");
2336 testDateThis("toLocaleDateString");
2337 testDateThis("toLocaleString");
2338 testDateThis("toLocaleTimeString");
2339 testDateThis("toString");
2340 testDateThis("toTimeString");
2341 testDateThis("toUTCString");
2342 testDateThis("valueOf");
2344 function testArrayThis(func) {
2345     testThisExcept(Array.prototype[func], "E_NOT_ARRAY");
2348 testArrayThis("toString");
2350 function testFunctionThis(func) {
2351     testThisExcept(Function.prototype[func], "E_NOT_FUNC");
2354 testFunctionThis("toString");
2355 testFunctionThis("call");
2356 testFunctionThis("apply");
2358 function testArrayHostThis(func) {
2359     testException(function() { Array.prototype[func].call(testObj); }, "E_JSCRIPT_EXPECTED");
2362 testArrayHostThis("push");
2363 testArrayHostThis("shift");
2364 testArrayHostThis("slice");
2365 testArrayHostThis("splice");
2366 testArrayHostThis("unshift");
2367 testArrayHostThis("reverse");
2368 testArrayHostThis("join");
2369 testArrayHostThis("pop");
2370 testArrayHostThis("sort");
2372 function testObjectInherit(obj, constr, ts, tls, vo) {
2373     ok(obj instanceof Object, "obj is not instance of Object");
2374     ok(obj instanceof constr, "obj is not instance of its constructor");
2376     ok(obj.hasOwnProperty === Object.prototype.hasOwnProperty,
2377        "obj.hasOwnProperty !== Object.prototype.hasOwnProprty");
2378     ok(obj.isPrototypeOf === Object.prototype.isPrototypeOf,
2379        "obj.isPrototypeOf !== Object.prototype.isPrototypeOf");
2380     ok(obj.propertyIsEnumerable === Object.prototype.propertyIsEnumerable,
2381        "obj.propertyIsEnumerable !== Object.prototype.propertyIsEnumerable");
2383     if(ts)
2384         ok(obj.toString === Object.prototype.toString,
2385            "obj.toString !== Object.prototype.toString");
2386     else
2387         ok(obj.toString != Object.prototype.toString,
2388            "obj.toString == Object.prototype.toString");
2390     if(tls)
2391         ok(obj.toLocaleString === Object.prototype.toLocaleString,
2392            "obj.toLocaleString !== Object.prototype.toLocaleString");
2393     else
2394         ok(obj.toLocaleString != Object.prototype.toLocaleString,
2395            "obj.toLocaleString == Object.prototype.toLocaleString");
2397     if(vo)
2398         ok(obj.valueOf === Object.prototype.valueOf,
2399            "obj.valueOf !== Object.prototype.valueOf");
2400     else
2401         ok(obj.valueOf != Object.prototype.valueOf,
2402            "obj.valueOf == Object.prototype.valueOf");
2404     ok(obj._test === "test", "obj.test = " + obj._test);
2407 Object.prototype._test = "test";
2408 testObjectInherit(new String("test"), String, false, true, false);
2409 testObjectInherit(/test/g, RegExp, false, true, true);
2410 testObjectInherit(new Number(1), Number, false, false, false);
2411 testObjectInherit(new Date(), Date, false, false, false);
2412 testObjectInherit(new Boolean(true), Boolean, false, true, false);
2413 testObjectInherit(new Array(), Array, false, false, true);
2414 testObjectInherit(new Error(), Error, false, true, true);
2415 testObjectInherit(testObjectInherit, Function, false, true, true);
2416 testObjectInherit(Math, Object, true, true, true);
2418 (function() { testObjectInherit(arguments, Object, true, true, true); })();
2420 function testFunctions(obj, arr) {
2421     var l;
2423     for(var i=0; i<arr.length; i++) {
2424         l = obj[arr[i][0]].length;
2425         ok(l === arr[i][1], arr[i][0] + ".length = " + l);
2426     }
2429 testFunctions(Boolean.prototype, [
2430         ["valueOf", 0],
2431         ["toString", 0]
2432     ]);
2434 testFunctions(Number.prototype, [
2435         ["valueOf", 0],
2436         ["toString", 1],
2437         ["toExponential", 1],
2438         ["toLocaleString", 0],
2439         ["toPrecision", 1]
2440     ]);
2442 testFunctions(String.prototype, [
2443         ["valueOf", 0],
2444         ["toString", 0],
2445         ["anchor", 1],
2446         ["big", 0],
2447         ["blink", 0],
2448         ["bold", 0],
2449         ["charAt", 1],
2450         ["charCodeAt", 1],
2451         ["concat", 1],
2452         ["fixed", 0],
2453         ["fontcolor", 1],
2454         ["fontsize", 1],
2455         ["indexOf", 2],
2456         ["italics", 0],
2457         ["lastIndexOf", 2],
2458         ["link", 1],
2459         ["localeCompare", 1],
2460         ["match", 1],
2461         ["replace", 1],
2462         ["search", 0],
2463         ["slice", 0],
2464         ["small", 0],
2465         ["split", 2],
2466         ["strike", 0],
2467         ["sub", 0],
2468         ["substr", 2],
2469         ["substring", 2],
2470         ["sup", 0],
2471         ["toLocaleLowerCase", 0],
2472         ["toLocaleUpperCase", 0],
2473         ["toLowerCase", 0],
2474         ["toUpperCase", 0]
2475     ]);
2477 testFunctions(RegExp.prototype, [
2478         ["toString", 0],
2479         ["exec", 1],
2480         ["test", 1]
2481     ]);
2483 testFunctions(Date.prototype, [
2484         ["getDate", 0],
2485         ["getDay", 0],
2486         ["getFullYear", 0],
2487         ["getHours", 0],
2488         ["getMilliseconds", 0],
2489         ["getMinutes", 0],
2490         ["getMonth", 0],
2491         ["getSeconds", 0],
2492         ["getTime", 0],
2493         ["getTimezoneOffset", 0],
2494         ["getUTCDate", 0],
2495         ["getUTCDay", 0],
2496         ["getUTCFullYear", 0],
2497         ["getUTCHours", 0],
2498         ["getUTCMilliseconds", 0],
2499         ["getUTCMinutes", 0],
2500         ["getUTCMonth", 0],
2501         ["getUTCSeconds", 0],
2502         ["getYear", 0],
2503         ["setDate", 1],
2504         ["setFullYear", 3],
2505         ["setHours", 4],
2506         ["setMilliseconds", 1],
2507         ["setMinutes", 3],
2508         ["setMonth", 2],
2509         ["setSeconds", 2],
2510         ["setTime", 1],
2511         ["setUTCDate", 1],
2512         ["setUTCFullYear", 3],
2513         ["setUTCHours", 4],
2514         ["setUTCMilliseconds", 1],
2515         ["setUTCMinutes", 3],
2516         ["setUTCMonth", 2],
2517         ["setUTCSeconds", 2],
2518         ["setYear", 1],
2519         ["toDateString", 0],
2520         ["toLocaleDateString", 0],
2521         ["toLocaleString", 0],
2522         ["toLocaleTimeString", 0],
2523         ["toString", 0],
2524         ["toTimeString", 0],
2525         ["toUTCString", 0],
2526         ["toGMTString", 0],
2527         ["valueOf", 0]
2528     ]);
2530 testFunctions(Array.prototype, [
2531         ["concat", 1],
2532         ["join", 1],
2533         ["push", 1],
2534         ["pop", 0],
2535         ["reverse", 0],
2536         ["shift", 0],
2537         ["slice", 2],
2538         ["sort", 1],
2539         ["splice", 2],
2540         ["toLocaleString", 0],
2541         ["toString", 0],
2542         ["unshift", 1]
2543     ]);
2545 testFunctions(Error.prototype, [
2546         ["toString", 0]
2547     ]);
2549 testFunctions(Math, [
2550         ["abs", 1],
2551         ["acos", 1],
2552         ["asin", 1],
2553         ["atan", 1],
2554         ["atan2", 2],
2555         ["ceil", 1],
2556         ["cos", 1],
2557         ["exp", 1],
2558         ["floor", 1],
2559         ["log", 1],
2560         ["max", 2],
2561         ["min", 2],
2562         ["pow", 2],
2563         ["random", 0],
2564         ["round", 1],
2565         ["sin", 1],
2566         ["sqrt", 1],
2567         ["tan", 1]
2568     ]);
2570 testFunctions(Object.prototype, [
2571         ["hasOwnProperty", 1],
2572         ["isPrototypeOf", 1],
2573         ["propertyIsEnumerable", 1],
2574         ["toLocaleString", 0],
2575         ["toString", 0],
2576         ["valueOf", 0]
2577     ]);
2579 testFunctions(Function.prototype, [
2580         ["apply", 2],
2581         ["call", 1],
2582         ["toString", 0]
2583     ]);
2585 testFunctions(VBArray.prototype, [
2586         ["dimensions", 0],
2587         ["getItem", 1],
2588         ["lbound", 0],
2589         ["toArray", 0],
2590         ["ubound", 0]
2591     ]);
2593 ok(ActiveXObject.length == 1, "ActiveXObject.length = " + ActiveXObject.length);
2594 ok(Array.length == 1, "Array.length = " + Array.length);
2595 ok(Boolean.length == 1, "Boolean.length = " + Boolean.length);
2596 ok(CollectGarbage.length == 0, "CollectGarbage.length = " + CollectGarbage.length);
2597 ok(Date.length == 7, "Date.length = " + Date.length);
2598 ok(Enumerator.length == 7, "Enumerator.length = " + Enumerator.length);
2599 ok(Error.length == 1, "Error.length = " + Error.length);
2600 ok(EvalError.length == 1, "EvalError.length = " + EvalError.length);
2601 ok(RegExpError.length == 1, "RegExpError.length = " + RegExpError.length);
2602 ok(Function.length == 1, "Function.length = " + Function.length);
2603 ok(GetObject.length == 2, "GetObject.length = " + GetObject.length);
2604 ok(Number.length == 1, "Number.length = " + Number.length);
2605 ok(Object.length == 0, "Object.length = " + Object.length);
2606 ok(RangeError.length == 1, "RangeError.length = " + RangeError.length);
2607 ok(ReferenceError.length == 1, "ReferenceError.length = " + ReferenceError.length);
2608 ok(RegExp.length == 2, "RegExp.length = " + RegExp.length);
2609 ok(ScriptEngine.length == 0, "ScriptEngine.length = " + ScriptEngine.length);
2610 ok(ScriptEngineBuildVersion.length == 0,
2611     "ScriptEngineBuildVersion.length = " + ScriptEngineBuildVersion.length);
2612 ok(ScriptEngineMajorVersion.length == 0,
2613     "ScriptEngineMajorVersion.length = " + ScriptEngineMajorVersion.length);
2614 ok(ScriptEngineMinorVersion.length == 0,
2615     "ScriptEngineMinorVersion.length = " + ScriptEngineMinorVersion.length);
2616 ok(String.length == 1, "String.length = " + String.length);
2617 ok(SyntaxError.length == 1, "SyntaxError.length = " + SyntaxError.length);
2618 ok(TypeError.length == 1, "TypeError.length = " + TypeError.length);
2619 ok(URIError.length == 1, "URIError.length = " + URIError.length);
2620 ok(VBArray.length == 1, "VBArray.length = " + VBArray.length);
2621 ok(decodeURI.length == 1, "decodeURI.length = " + decodeURI.length);
2622 ok(decodeURIComponent.length == 1, "decodeURIComponent.length = " + decodeURIComponent.length);
2623 ok(encodeURI.length == 1, "encodeURI.length = " + encodeURI.length);
2624 ok(encodeURIComponent.length == 1, "encodeURIComponent.length = " + encodeURIComponent.length);
2625 ok(escape.length == 1, "escape.length = " + escape.length);
2626 ok(eval.length == 1, "eval.length = " + eval.length);
2627 ok(isFinite.length == 1, "isFinite.length = " + isFinite.length);
2628 ok(isNaN.length == 1, "isNaN.length = " + isNaN.length);
2629 ok(parseFloat.length == 1, "parseFloat.length = " + parseFloat.length);
2630 ok(parseInt.length == 2, "parseInt.length = " + parseInt.length);
2631 ok(unescape.length == 1, "unescape.length = " + unescape.length);
2633 String.length = 3;
2634 ok(String.length == 1, "String.length = " + String.length);
2636 var tmp = createArray();
2637 ok(getVT(tmp) == "VT_ARRAY|VT_VARIANT", "getVT(createArray()) = " + getVT(tmp));
2638 ok(getVT(VBArray(tmp)) == "VT_ARRAY|VT_VARIANT", "getVT(VBArray(tmp)) = " + getVT(VBArray(tmp)));
2639 tmp = new VBArray(tmp);
2640 tmp = new VBArray(VBArray(createArray()));
2641 ok(tmp.dimensions() == 2, "tmp.dimensions() = " + tmp.dimensions());
2642 ok(tmp.lbound() == 0, "tmp.lbound() = " + tmp.lbound());
2643 ok(tmp.lbound(1) == 0, "tmp.lbound(1) = " + tmp.lbound(1));
2644 ok(tmp.lbound(2, 1) == 2, "tmp.lbound(2, 1) = " + tmp.lbound(2, 1));
2645 ok(tmp.ubound() == 4, "tmp.ubound() = " + tmp.ubound());
2646 ok(tmp.ubound("2") == 3, "tmp.ubound(\"2\") = " + tmp.ubound("2"));
2647 ok(tmp.getItem(1, 2) == 3, "tmp.getItem(1, 2) = " + tmp.getItem(1, 2));
2648 ok(tmp.getItem(2, 3) == 33, "tmp.getItem(2, 3) = " + tmp.getItem(2, 3));
2649 ok(tmp.getItem(3, 2) == 13, "tmp.getItem(3, 2) = " + tmp.getItem(3, 2));
2650 ok(tmp.toArray() == "2,3,12,13,22,23,32,33,42,43", "tmp.toArray() = " + tmp.toArray());
2651 ok(createArray().toArray() == "2,3,12,13,22,23,32,33,42,43",
2652         "createArray.toArray()=" + createArray().toArray());
2654 reportSuccess();