jscript: Added function constructor object.
[wine] / dlls / jscript / tests / lang.js
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  */
18
19 var tmp;
20
21 ok(true, "true is not true?");
22 ok(!false, "!false is not true");
23 ok(!undefined, "!undefined is not true");
24 ok(!null, "!null is not true");
25 ok(!0, "!0 is not true");
26 ok(!0.0, "!0.0 is not true");
27
28 ok(1 === 1, "1 === 1 is false");
29 ok(!(1 === 2), "!(1 === 2) is false");
30 ok(1.0 === 1, "1.0 === 1 is false");
31 ok("abc" === "abc", "\"abc\" === \"abc\" is false");
32 ok(true === true, "true === true is false");
33 ok(null === null, "null === null is false");
34 ok(undefined === undefined, "undefined === undefined is false");
35 ok(!(undefined === null), "!(undefined === null) is false");
36
37 ok(1 !== 2, "1 !== 2 is false");
38 ok(null !== undefined, "null !== undefined is false");
39
40 ok(1 == 1, "1 == 1 is false");
41 ok(!(1 == 2), "!(1 == 2) is false");
42 ok(1.0 == 1, "1.0 == 1 is false");
43 ok("abc" == "abc", "\"abc\" == \"abc\" is false");
44 ok(true == true, "true == true is false");
45 ok(null == null, "null == null is false");
46 ok(undefined == undefined, "undefined == undefined is false");
47 ok(undefined == null, "undefined == null is false");
48 ok(true == 1, "true == 1 is false");
49 ok(!(true == 2), "true == 2");
50 ok(0 == false, "0 == false is false");
51
52 ok(1 != 2, "1 != 2 is false");
53 ok(false != 1, "false != 1 is false");
54
55 var trueVar = true;
56 ok(trueVar, "trueVar is not true");
57
58 ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
59
60 function testFunc1(x, y) {
61     ok(this !== undefined, "this is undefined");
62     ok(x === true, "x is not 1");
63     ok(y === "test", "y is not \"test\"");
64     ok(arguments.length === 2, "arguments.length is not 2");
65     ok(arguments["0"] === true, "arguments[0] is not true");
66     ok(arguments["1"] === "test", "arguments[1] is not \"test\"");
67
68     return true;
69 }
70
71 ok(testFunc1.length === 2, "testFunc1.length is not 2");
72
73 ok(Object.prototype !== undefined, "Object.prototype is undefined");
74 ok(Object.prototype.prototype === undefined, "Object.prototype is not undefined");
75 ok(String.prototype !== undefined, "String.prototype is undefined");
76 ok(Array.prototype !== undefined, "Array.prototype is undefined");
77 ok(Boolean.prototype !== undefined, "Boolean.prototype is undefined");
78 ok(Number.prototype !== undefined, "Number.prototype is undefined");
79 ok(RegExp.prototype !== undefined, "RegExp.prototype is undefined");
80 ok(Math !== undefined, "Math is undefined");
81 ok(Math.prototype === undefined, "Math.prototype is not undefined");
82 ok(Function.prototype !== undefined, "Function.prototype is undefined");
83 ok(Function.prototype.prototype === undefined, "Function.prototype is not undefined");
84
85 Function.prototype.test = true;
86 ok(testFunc1.test === true, "testFunc1.test !== true");
87 ok(Function.test === true, "Function.test !== true");
88
89 ok(typeof(0) === "number", "typeof(0) is not number");
90 ok(typeof(1.5) === "number", "typeof(1.5) is not number");
91 ok(typeof("abc") === "string", "typeof(\"abc\") is not string");
92 ok(typeof("") === "string", "typeof(\"\") is not string");
93 ok(typeof(true) === "boolean", "typeof(true) is not boolean");
94 ok(typeof(null) === "object", "typeof(null) is not object");
95 ok(typeof(undefined) === "undefined", "typeof(undefined) is not undefined");
96 ok(typeof(Math) === "object", "typeof(Math) is not object");
97 ok(typeof(String.prototype) === "object", "typeof(String.prototype) is not object");
98 ok(typeof(testFunc1) === "function", "typeof(testFunc1) is not function");
99 ok(typeof(String) === "function", "typeof(String) is not function");
100 ok(typeof(ScriptEngine) === "function", "typeof(ScriptEngine) is not function");
101 ok(typeof(this) === "object", "typeof(this) is not object");
102
103 ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
104
105 var obj1 = new Object();
106 ok(typeof(obj1) === "object", "typeof(obj1) is not object");
107 obj1.test = true;
108 obj1.func = function () {
109     ok(this === obj1, "this is not obj1");
110     ok(this.test === true, "this.test is not true");
111     ok(arguments.length === 1, "arguments.length is not 1");
112     ok(arguments["0"] === true, "arguments[0] is not true");
113
114     return "test";
115 };
116
117 ok(obj1.func(true) === "test", "obj1.func(true) is not \"test\"");
118
119 function testConstr1() {
120     this.var1 = 1;
121
122     ok(this !== undefined, "this is undefined");
123     ok(arguments.length === 1, "arguments.length is not 1");
124     ok(arguments["0"] === true, "arguments[0] is not 1");
125
126     return false;
127 }
128
129 testConstr1.prototype.pvar = 1;
130
131 var obj2 = new testConstr1(true);
132 ok(typeof(obj2) === "object", "typeof(obj2) is not object");
133 ok(obj2.pvar === 1, "obj2.pvar is not 1");
134
135 testConstr1.prototype.pvar = 2;
136 ok(obj2.pvar === 2, "obj2.pvar is not 2");
137
138 obj2.pvar = 3;
139 testConstr1.prototype.pvar = 1;
140 ok(obj2.pvar === 3, "obj2.pvar is not 3");
141
142 var obj3 = new Object;
143 ok(typeof(obj3) === "object", "typeof(obj3) is not object");
144
145 tmp = 0;
146 if(true)
147     tmp = 1;
148 else
149     ok(false, "else evaluated");
150 ok(tmp === 1, "tmp !== 1, if not evaluated?");
151
152 tmp = 0;
153 if(1 === 0)
154     ok(false, "if evaluated");
155 else
156     tmp = 1;
157 ok(tmp === 1, "tmp !== 1, if not evaluated?");
158
159 if(false)
160     ok(false, "if(false) evaluated");
161
162 tmp = 0;
163 if(true)
164     tmp = 1;
165 ok(tmp === 1, "tmp !== 1, if(true) not evaluated?");
166
167 var obj3 = { prop1: 1,  prop2: typeof(false) };
168 ok(obj3.prop1 === 1, "obj3.prop1 is not 1");
169 ok(obj3.prop2 === "boolean", "obj3.prop2 is not \"boolean\"");
170
171 {
172     var blockVar = 1;
173     blockVar = 2;
174 }
175 ok(blockVar === 2, "blockVar !== 2");
176
177 ok((true ? 1 : 2) === 1, "conditional expression true is not 1");
178 ok((0 === 2 ? 1 : 2) === 2, "conditional expression true is not 2");
179
180 ok(getVT(undefined) === "VT_EMPTY", "getVT(undefined) is not VT_EMPTY");
181 ok(getVT(null) === "VT_NULL", "getVT(null) is not VT_NULL");
182 ok(getVT(0) === "VT_I4", "getVT(0) is not VT_I4");
183 ok(getVT(0.5) === "VT_R8", "getVT(1.5) is not VT_R8");
184 ok(getVT("test") === "VT_BSTR", "getVT(\"test\") is not VT_BSTR");
185 ok(getVT(Math) === "VT_DISPATCH", "getVT(Math) is not VT_DISPATCH");
186 ok(getVT(false) === "VT_BOOL", "getVT(false) is not VT_BOOL");
187
188 tmp = 2+2;
189 ok(tmp === 4, "2+2 !== 4");
190 ok(getVT(tmp) === "VT_I4", "getVT(2+2) !== VT_I4");
191
192 tmp = 2+2.5;
193 ok(tmp === 4.5, "2+2.5 !== 4.5");
194 ok(getVT(tmp) === "VT_R8", "getVT(2+2.5) !== VT_R8");
195
196 tmp = 1.5+2.5;
197 ok(tmp === 4, "1.4+2.5 !== 4");
198 ok(getVT(tmp) === "VT_I4", "getVT(1.5+2.5) !== VT_I4");
199
200 tmp = 4-2;
201 ok(tmp === 2, "4-2 !== 2");
202 ok(getVT(tmp) === "VT_I4", "getVT(4-2) !== VT_I4");
203
204 tmp = 4.5-2;
205 ok(tmp === 2.5, "4.5-2 !== 2.5");
206 ok(getVT(tmp) === "VT_R8", "getVT(4-2) !== VT_R8");
207
208 tmp = -2;
209 ok(tmp === 0-2, "-2 !== 0-2");
210 ok(getVT(tmp) === "VT_I4", "getVT(-2) !== VT_I4");
211
212 tmp = 2*3;
213 ok(tmp === 6, "2*3 !== 6");
214 ok(getVT(tmp) === "VT_I4", "getVT(2*3) !== VT_I4");
215
216 tmp = 2*3.5;
217 ok(tmp === 7, "2*3.5 !== 7");
218 ok(getVT(tmp) === "VT_I4", "getVT(2*3.5) !== VT_I4");
219
220 tmp = 2.5*3.5;
221 ok(tmp === 8.75, "2.5*3.5 !== 8.75");
222 ok(getVT(tmp) === "VT_R8", "getVT(2.5*3.5) !== VT_R8");
223
224 tmp = 4/2;
225 ok(tmp === 2, "4/2 !== 2");
226 ok(getVT(tmp) === "VT_I4", "getVT(4/2) !== VT_I4");
227
228 tmp = 4.5/1.5;
229 ok(tmp === 3, "4.5/1.5 !== 3");
230 ok(getVT(tmp) === "VT_I4", "getVT(4.5/1.5) !== VT_I4");
231
232 tmp = 3/2;
233 ok(tmp === 1.5, "3/2 !== 1.5");
234 ok(getVT(tmp) === "VT_R8", "getVT(3/2) !== VT_R8");
235
236 tmp = "ab" + "cd";
237 ok(tmp === "abcd", "\"ab\" + \"cd\" !== \"abcd\"");
238
239 tmp = 1;
240 ok((tmp += 1) === 2, "tmp += 1 !== 2");
241 ok(tmp === 2, "tmp !== 2");
242
243 tmp = 2;
244 ok((tmp -= 1) === 1, "tmp -= 1 !== 1");
245 ok(tmp === 1, "tmp !=== 1");
246
247 tmp = 2;
248 ok((tmp *= 1.5) === 3, "tmp *= 1.5 !== 3");
249 ok(tmp === 3, "tmp !=== 3");
250
251 tmp = 5;
252 ok((tmp /= 2) === 2.5, "tmp /= 2 !== 2.5");
253 ok(tmp === 2.5, "tmp !=== 2.5");
254
255 tmp = 8;
256 ok((tmp <<= 1) === 16, "tmp <<= 1 !== 16");
257
258 tmp = 8;
259 ok((tmp >>= 1) === 4, "tmp >>= 1 !== 4");
260
261 tmp = 8;
262 ok((tmp >>>= 1) === 4, "tmp >>>= 1 !== 4");
263
264 tmp = 3 || ok(false, "second or expression called");
265 ok(tmp === 3, "3 || (...) is not 3");
266
267 tmp = false || 2;
268 ok(tmp === 2, "false || 2 is not 2");
269
270 tmp = 0 && ok(false, "second and expression called");
271 ok(tmp === 0, "0 && (...) is not 0");
272
273 tmp = true && "test";
274 ok(tmp === "test", "true && \"test\" is not \"test\"");
275
276 tmp = true && 0;
277 ok(tmp === 0, "true && 0 is not 0");
278
279 tmp = 3 | 4;
280 ok(tmp === 7, "3 | 4 !== 7");
281 ok(getVT(tmp) === "VT_I4", "getVT(3|4) = " + getVT(tmp));
282
283 tmp = 3.5 | 0;
284 ok(tmp === 3, "3.5 | 0 !== 3");
285 ok(getVT(tmp) === "VT_I4", "getVT(3.5|0) = " + getVT(tmp));
286
287 tmp = -3.5 | 0;
288 ok(tmp === -3, "-3.5 | 0 !== -3");
289 ok(getVT(tmp) === "VT_I4", "getVT(3.5|0) = " + getVT(tmp));
290
291 tmp = 10;
292 ok((tmp |= 0x10) === 26, "tmp(10) |= 0x10 !== 26");
293 ok(getVT(tmp) === "VT_I4", "getVT(tmp |= 10) = " + getVT(tmp));
294
295 tmp = 3 & 5;
296 ok(tmp === 1, "3 & 5 !== 1");
297 ok(getVT(tmp) === "VT_I4", "getVT(3|5) = " + getVT(tmp));
298
299 tmp = 3.5 & 0xffff;
300 ok(tmp === 3, "3.5 & 0xffff !== 3 ");
301 ok(getVT(tmp) === "VT_I4", "getVT(3.5&0xffff) = " + getVT(tmp));
302
303 tmp = (-3.5) & 0xffffffff;
304 ok(tmp === -3, "-3.5 & 0xffff !== -3");
305 ok(getVT(tmp) === "VT_I4", "getVT(3.5&0xffff) = " + getVT(tmp));
306
307 tmp = 2 << 3;
308 ok(tmp === 16, "2 << 3 = " + tmp);
309
310 tmp = 2 << 35;
311 ok(tmp === 16, "2 << 35 = " + tmp);
312
313 tmp = 8 >> 2;
314 ok(tmp === 2, "8 >> 2 = " + tmp);
315
316 tmp = -64 >> 4;
317 ok(tmp === -4, "-64 >> 4 = " + tmp);
318
319 tmp = 8 >>> 2;
320 ok(tmp === 2, "8 >> 2 = " + tmp);
321
322 tmp = -64 >>> 4;
323 ok(tmp === 0x0ffffffc, "-64 >>> 4 = " + tmp);
324
325 tmp = 10;
326 ok((tmp &= 8) === 8, "tmp(10) &= 8 !== 8");
327 ok(getVT(tmp) === "VT_I4", "getVT(tmp &= 8) = " + getVT(tmp));
328
329 tmp = 0xf0f0^0xff00;
330 ok(tmp === 0x0ff0, "0xf0f0^0xff00 !== 0x0ff0");
331 ok(getVT(tmp) === "VT_I4", "getVT(0xf0f0^0xff00) = " + getVT(tmp));
332
333 tmp = 5;
334 ok((tmp ^= 3) === 6, "tmp(5) ^= 3 !== 6");
335 ok(getVT(tmp) === "VT_I4", "getVT(tmp ^= 3) = " + getVT(tmp));
336
337 tmp = ~1;
338 ok(tmp === -2, "~1 !== -2");
339 ok(getVT(tmp) === "VT_I4", "getVT(~1) = " + getVT(tmp));
340
341 ok((3,4) === 4, "(3,4) !== 4");
342
343 ok(+3 === 3, "+3 !== 3");
344 ok(+true === 1, "+true !== 1");
345 ok(+false === 0, "+false !== 0");
346 ok(+null === 0, "+null !== 0");
347
348 ok("" + 0 === "0", "\"\" + 0 !== \"0\"");
349 ok("" + 123 === "123", "\"\" + 123 !== \"123\"");
350 ok("" + (-5) === "-5", "\"\" + (-5) !== \"-5\"");
351 ok("" + null === "null", "\"\" + null !== \"null\"");
352 ok("" + undefined === "undefined", "\"\" + undefined !== \"undefined\"");
353 ok("" + true === "true", "\"\" + true !== \"true\"");
354 ok("" + false === "false", "\"\" + false !== \"false\"");
355
356 ok(1 < 3.4, "1 < 3.4 failed");
357 ok(!(3.4 < 1), "3.4 < 1");
358 ok("abc" < "abcd", "abc < abcd failed");
359 ok("abcd" < "abce", "abce < abce failed");
360 ok("" < "x", "\"\" < \"x\" failed");
361 ok(!(0 < 0), "0 < 0");
362
363 ok(1 <= 3.4, "1 <= 3.4 failed");
364 ok(!(3.4 <= 1), "3.4 <= 1");
365 ok("abc" <= "abcd", "abc <= abcd failed");
366 ok("abcd" <= "abce", "abce <= abce failed");
367 ok("" <= "x", "\"\" <= \"x\" failed");
368 ok(0 <= 0, "0 <= 0 failed");
369
370 ok(3.4 > 1, "3.4 > 1 failed");
371 ok(!(1 > 3.4), "1 > 3.4");
372 ok("abcd" > "abc", "abc > abcd failed");
373 ok("abce" > "abcd", "abce > abce failed");
374 ok("x" > "", "\"x\" > \"\" failed");
375 ok(!(0 > 0), "0 > 0");
376
377 ok(3.4 >= 1, "3.4 >= 1 failed");
378 ok(!(1 >= 3.4), "1 >= 3.4");
379 ok("abcd" >= "abc", "abc >= abcd failed");
380 ok("abce" >= "abcd", "abce >= abce failed");
381 ok("x" >= "", "\"x\" >= \"\" failed");
382 ok(0 >= 0, "0 >= 0");
383
384 tmp = 1;
385 ok(++tmp === 2, "++tmp (1) is not 2");
386 ok(tmp === 2, "incremented tmp is not 2");
387 ok(--tmp === 1, "--tmp (2) is not 1");
388 ok(tmp === 1, "decremented tmp is not 1");
389 ok(tmp++ === 1, "tmp++ (1) is not 1");
390 ok(tmp === 2, "incremented tmp(1) is not 2");
391 ok(tmp-- === 2, "tmp-- (2) is not 2");
392 ok(tmp === 1, "decremented tmp is not 1");
393
394 String.prototype.test = true;
395 ok("".test === true, "\"\".test is not true");
396
397 Boolean.prototype.test = true;
398 ok(true.test === true, "true.test is not true");
399
400 Number.prototype.test = true;
401 ok((0).test === true, "(0).test is not true");
402 ok((0.5).test === true, "(0.5).test is not true");
403
404 var state = "";
405 try {
406     ok(state === "", "try: state = " + state);
407     state = "try";
408 }catch(ex) {
409     ok(false, "unexpected catch");
410 }
411 ok(state === "try", "state = " + state + " expected try");
412
413 state = "";
414 try {
415     ok(state === "", "try: state = " + state);
416     state = "try";
417 }finally {
418     ok(state === "try", "funally: state = " + state);
419     state = "finally";
420 }
421 ok(state === "finally", "state = " + state + " expected finally");
422
423 state = "";
424 try {
425     ok(state === "", "try: state = " + state);
426     state = "try";
427 }catch(ex) {
428     ok(false, "unexpected catch");
429 }finally {
430     ok(state === "try", "funally: state = " + state);
431     state = "finally";
432 }
433 ok(state === "finally", "state = " + state + " expected finally");
434
435 var state = "";
436 try {
437     ok(state === "", "try: state = " + state);
438     state = "try";
439     throw "except";
440 }catch(ex) {
441     ok(state === "try", "catch: state = " + state);
442     ok(ex === "except", "ex is not \"except\"");
443     state = "catch";
444 }
445 ok(state === "catch", "state = " + state + " expected catch");
446
447 var state = "";
448 try {
449     ok(state === "", "try: state = " + state);
450     state = "try";
451     throw true;
452 }catch(ex) {
453     ok(state === "try", "catch: state = " + state);
454     ok(ex === true, "ex is not true");
455     state = "catch";
456 }finally {
457     ok(state === "catch", "funally: state = " + state);
458     state = "finally";
459 }
460 ok(state === "finally", "state = " + state + " expected finally");
461
462 var state = "";
463 try {
464     ok(state === "", "try: state = " + state);
465     state = "try";
466     try { throw true; } finally {}
467 }catch(ex) {
468     ok(state === "try", "catch: state = " + state);
469     ok(ex === true, "ex is not true");
470     state = "catch";
471 }finally {
472     ok(state === "catch", "funally: state = " + state);
473     state = "finally";
474 }
475 ok(state === "finally", "state = " + state + " expected finally");
476
477 var state = "";
478 try {
479     ok(state === "", "try: state = " + state);
480     state = "try";
481     try { throw "except"; } catch(ex) { throw true; }
482 }catch(ex) {
483     ok(state === "try", "catch: state = " + state);
484     ok(ex === true, "ex is not true");
485     state = "catch";
486 }finally {
487     ok(state === "catch", "funally: state = " + state);
488     state = "finally";
489 }
490 ok(state === "finally", "state = " + state + " expected finally");
491
492 function throwFunc(x) {
493     throw x;
494 }
495
496 var state = "";
497 try {
498     ok(state === "", "try: state = " + state);
499     state = "try";
500     throwFunc(true);
501 }catch(ex) {
502     ok(state === "try", "catch: state = " + state);
503     ok(ex === true, "ex is not true");
504     state = "catch";
505 }finally {
506     ok(state === "catch", "funally: state = " + state);
507     state = "finally";
508 }
509 ok(state === "finally", "state = " + state + " expected finally");
510
511 state = "";
512 switch(1) {
513 case "1":
514     ok(false, "unexpected case \"1\"");
515 case 1:
516     ok(state === "", "case 1: state = " + state);
517     state = "1";
518 default:
519     ok(state === "1", "default: state = " + state);
520     state = "default";
521 case false:
522     ok(state === "default", "case false: state = " + state);
523     state = "false";
524 }
525 ok(state === "false", "state = " + state);
526
527 state = "";
528 switch("") {
529 case "1":
530 case 1:
531     ok(false, "unexpected case 1");
532 default:
533     ok(state === "", "default: state = " + state);
534     state = "default";
535 case false:
536     ok(state === "default", "case false: state = " + state);
537     state = "false";
538 }
539 ok(state === "false", "state = " + state);
540
541 state = "";
542 switch(1) {
543 case "1":
544     ok(false, "unexpected case \"1\"");
545 case 1:
546     ok(state === "", "case 1: state = " + state);
547     state = "1";
548 default:
549     ok(state === "1", "default: state = " + state);
550     state = "default";
551     break;
552 case false:
553     ok(false, "unexpected case false");
554 }
555 ok(state === "default", "state = " + state);
556
557 tmp = eval("1");
558 ok(tmp === 1, "eval(\"1\") !== 1");
559 eval("{ ok(tmp === 1, 'eval: tmp !== 1'); } tmp = 2;");
560 ok(tmp === 2, "tmp !== 2");
561
562 ok(eval(false) === false, "eval(false) !== false");
563 ok(eval() === undefined, "eval() !== undefined");
564
565 tmp = eval("1", "2");
566 ok(tmp === 1, "eval(\"1\", \"2\") !== 1");
567
568 var state = "";
569 try {
570     ok(state === "", "try: state = " + state);
571     state = "try";
572     eval("throwFunc(true);");
573 }catch(ex) {
574     ok(state === "try", "catch: state = " + state);
575     ok(ex === true, "ex is not true");
576     state = "catch";
577 }finally {
578     ok(state === "catch", "funally: state = " + state);
579     state = "finally";
580 }
581 ok(state === "finally", "state = " + state + " expected finally");
582
583 tmp = [,,1,2,,,true];
584 ok(tmp.length === 7, "tmp.length !== 7");
585 ok(tmp["0"] === undefined, "tmp[0] is not undefined");
586 ok(tmp["3"] === 2, "tmp[3] !== 2");
587 ok(tmp["6"] === true, "tmp[6] !== true");
588 ok(tmp[2] === 1, "tmp[2] !== 1");
589
590 tmp = 0;
591 while(tmp < 4) {
592     ok(tmp < 4, "tmp >= 4");
593     tmp++;
594 }
595 ok(tmp === 4, "tmp !== 4");
596
597 tmp = 0;
598 while(true) {
599     ok(tmp < 4, "tmp >= 4");
600     tmp++;
601     if(tmp === 4) {
602         break;
603         ok(false, "break did not break");
604     }
605 }
606 ok(tmp === 4, "tmp !== 4");
607
608 tmp = 0;
609 do {
610     ok(tmp < 4, "tmp >= 4");
611     tmp++;
612 } while(tmp < 4);
613 ok(tmp === 4, "tmp !== 4");
614
615 tmp = 0;
616 do {
617     ok(tmp === 0, "tmp !=== 0");
618     tmp++;
619 } while(false);
620 ok(tmp === 1, "tmp !== 4");
621
622 tmp = 0;
623 while(tmp < 4) {
624     tmp++;
625     if(tmp === 2) {
626         continue;
627         ok(false, "break did not break");
628     }
629     ok(tmp <= 4 && tmp != 2, "tmp = " + tmp);
630 }
631 ok(tmp === 4, "tmp !== 4");
632
633 for(tmp=0; tmp < 4; tmp++)
634     ok(tmp < 4, "tmp = " + tmp);
635 ok(tmp === 4, "tmp !== 4");
636
637 for(tmp=0; tmp < 4; tmp++) {
638     if(tmp === 2)
639         break;
640     ok(tmp < 2, "tmp = " + tmp);
641 }
642 ok(tmp === 2, "tmp !== 2");
643
644 for(tmp=0; tmp < 4; tmp++) {
645     if(tmp === 2)
646         continue;
647     ok(tmp < 4 && tmp != 2, "tmp = " + tmp);
648 }
649 ok(tmp === 4, "tmp !== 4");
650
651 for(var fi=0; fi < 4; fi++)
652     ok(fi < 4, "fi = " + fi);
653 ok(fi === 4, "fi !== 4");
654
655 ok((void 1) === undefined, "(void 1) !== undefined");
656
657 var inobj = new Object();
658
659 for(var iter in inobj)
660     ok(false, "unexpected iter = " + iter);
661
662 inobj.test = true;
663 tmp = 0;
664 for(iter in inobj) {
665     ok(iter == "test", "unexpected iter = " + iter);
666     tmp++;
667 }
668 ok(tmp === 1, "for..in tmp = " + tmp);
669
670 function forinTestObj() {}
671
672 forinTestObj.prototype.test3 = true;
673
674 var arr = new Array();
675 inobj = new forinTestObj();
676 inobj.test1 = true;
677 inobj.test2 = true;
678
679 tmp = 0;
680 for(iter in inobj) {
681     arr[iter] = true;
682     tmp++;
683 }
684
685 ok(tmp === 3, "for..in tmp = " + tmp);
686 ok(arr["test1"] === true, "arr[test1] !== true");
687 ok(arr["test2"] === true, "arr[test2] !== true");
688 ok(arr["test3"] === true, "arr[test3] !== true");
689
690 tmp = new Object();
691 tmp.test = false;
692 ok((delete tmp.test) === true, "delete returned false");
693 ok(typeof(tmp.test) === "undefined", "tmp.test type = " + typeof(tmp.test));
694 for(iter in tmp)
695     ok(false, "tmp has prop " + iter);
696
697 tmp.testWith = true;
698 with(tmp)
699     ok(testWith === true, "testWith !== true");
700
701 reportSuccess();