Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * The with statement adds a computed object to the front of the
6 * scope chain of the current execution context
7 *
8 * @path ch12/12.10/S12.10_A1.5_T4.js
9 * @description Using "with" statement within "for-in" statement, leading to completion by break
10 * @noStrict
11 */
13 this.p1 = 1;
14 this.p2 = 2;
15 this.p3 = 3;
16 var result = "result";
17 var myObj = {p1: 'a',
18 p2: 'b',
19 p3: 'c',
20 value: 'myObj_value',
21 valueOf : function(){return 'obj_valueOf';},
22 parseInt : function(){return 'obj_parseInt';},
23 NaN : 'obj_NaN',
24 Infinity : 'obj_Infinity',
25 eval : function(){return 'obj_eval';},
26 parseFloat : function(){return 'obj_parseFloat';},
27 isNaN : function(){return 'obj_isNaN';},
28 isFinite : function(){return 'obj_isFinite';}
29 }
30 var del;
31 var st_p1 = "p1";
32 var st_p2 = "p2";
33 var st_p3 = "p3";
34 var st_parseInt = "parseInt";
35 var st_NaN = "NaN";
36 var st_Infinity = "Infinity";
37 var st_eval = "eval";
38 var st_parseFloat = "parseFloat";
39 var st_isNaN = "isNaN";
40 var st_isFinite = "isFinite";
42 for(var prop in myObj){
43 with(myObj){
44 st_p1 = p1;
45 p1 = 'x1';
46 st_p2 = p2;
47 this.p2 = 'x2';
48 st_p3 = p3;
49 del = delete p3;
50 st_parseInt = parseInt;
51 st_NaN = NaN;
52 st_Infinity = Infinity;
53 st_eval = eval;
54 st_parseFloat = parseFloat;
55 st_isNaN = isNaN;
56 st_isFinite = isFinite;
57 var p4 = 'x4';
58 p5 = 'x5';
59 var value = 'value';
60 break;
61 }
62 }
64 if(!(p1 === 1)){
65 $ERROR('#1: p1 === 1. Actual: p1 ==='+ p1 );
66 }
68 if(!(p2 === "x2")){
69 $ERROR('#2: p2 === "x2". Actual: p2 ==='+ p2 );
70 }
72 if(!(p3 === 3)){
73 $ERROR('#3: p3 === 3. Actual: p3 ==='+ p3 );
74 }
76 if(!(p4 === "x4")){
77 $ERROR('#4: p4 === "x4". Actual: p4 ==='+ p4 );
78 }
80 if(!(p5 === "x5")){
81 $ERROR('#5: p5 === "x5". Actual: p5 ==='+ p5 );
82 }
84 if(!(myObj.p1 === "x1")){
85 $ERROR('#6: myObj.p1 === "x1". Actual: myObj.p1 ==='+ myObj.p1 );
86 }
88 if(!(myObj.p2 === "b")){
89 $ERROR('#7: myObj.p2 === "b". Actual: myObj.p2 ==='+ myObj.p2 );
90 }
92 if(!(myObj.p3 === undefined)){
93 $ERROR('#8: myObj.p3 === undefined. Actual: myObj.p3 ==='+ myObj.p3 );
94 }
96 if(!(myObj.p4 === undefined)){
97 $ERROR('#9: myObj.p4 === undefined. Actual: myObj.p4 ==='+ myObj.p4 );
98 }
100 if(!(myObj.p5 === undefined)){
101 $ERROR('#10: myObj.p5 === undefined. Actual: myObj.p5 ==='+ myObj.p5 );
102 }
104 if(!(st_parseInt !== parseInt)){
105 $ERROR('#11: myObj.parseInt !== parseInt');
106 }
108 if(!(st_NaN === "obj_NaN")){
109 $ERROR('#12: myObj.NaN !== NaN');
110 }
112 if(!(st_Infinity !== Infinity)){
113 $ERROR('#13: myObj.Infinity !== Infinity');
114 }
116 if(!(st_eval !== eval)){
117 $ERROR('#14: myObj.eval !== eval');
118 }
120 if(!(st_parseFloat !== parseFloat)){
121 $ERROR('#15: myObj.parseFloat !== parseFloat');
122 }
124 if(!(st_isNaN !== isNaN)){
125 $ERROR('#16: myObj.isNaN !== isNaN');
126 }
128 if(!(st_isFinite !== isFinite)){
129 $ERROR('#17: myObj.isFinite !== isFinite');
130 }
132 if(!(value === undefined)){
133 $ERROR('#18: value === undefined. Actual: value ==='+ value );
134 }
136 if(!(myObj.value === "value")){
137 $ERROR('#19: myObj.value === "value". Actual: myObj.value ==='+ myObj.value );
138 }