QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / parserstress / tests / ecma_3 / ExecutionContexts / 10.6.1-01.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Mozilla Foundation.
19  * Portions created by the Initial Developer are Copyright (C) 2005
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s): Bryant Chen
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 var gTestfile = '10.6.1-01.js';
39 //-----------------------------------------------------------------------------
40 var BUGNUMBER = 290774;
41 var summary = 'activation object never delegates to Object.prototype';
42 var actual = '';
43 var expect = '';
44
45 printBugNumber(BUGNUMBER);
46 printStatus (summary);
47
48 var toStringResult;
49 var evalResult;
50 var watchResult;
51 var parseIntResult;
52
53 var eval = 'fooEval';
54 var watch = undefined;
55 var parseInt = 'fooParseInt';
56
57
58 function toString()
59 {
60   return 'fooString';
61 }
62
63 function normal()
64 {
65   toStringResult = toString;
66   evalResult = eval;
67   watchResult = watch;
68   parseIntResult = parseInt;
69 }
70
71 function outerinnervar()
72 {
73   toStringResult = toString;
74   evalResult = eval;
75   watchResult = watch;
76   parseIntResult = parseInt;
77   function inner()
78   {
79     // addition of any statement
80     // which accesses a variable
81     // from the outer scope causes the bug
82     printStatus(toString);
83   }
84 }
85
86 expect = true;
87
88 printStatus('normal');
89 printStatus('======');
90 normal();
91
92 printStatus('toStringResult ' + toStringResult);
93 printStatus('toString ' + toString);
94 actual = ((toStringResult + '') == (toString + ''));
95 reportCompare(expect, actual, inSection(1));
96
97 printStatus('evalResult ' + evalResult);
98 printStatus('eval ' + eval);
99 actual = ((evalResult + '') == (eval + ''));
100 reportCompare(expect, actual, inSection(2));
101
102 printStatus('watchResult ' + watchResult);
103 printStatus('watch ' + watch);
104 actual = ((watchResult + '') == (watch + ''));
105 reportCompare(expect, actual, inSection(3));
106
107 printStatus('parseIntResult ' + parseIntResult);
108 printStatus('parseInt ' + parseInt);
109 actual = ((parseIntResult + '') == (parseInt + ''));
110 reportCompare(expect, actual, inSection(4));
111
112 printStatus('outerinner');
113 printStatus('==========');
114
115 outerinnervar();
116
117 printStatus('toStringResult ' + toStringResult);
118 printStatus('toString ' + toString);
119 actual = ((toStringResult + '') == (toString + ''));
120 reportCompare(expect, actual, inSection(5));
121
122
123 printStatus('evalResult ' + evalResult);
124 printStatus('eval ' + eval);
125 actual = ((evalResult + '') == (eval + ''));
126 reportCompare(expect, actual, inSection(6));
127
128 printStatus('watchResult ' + watchResult);
129 printStatus('watch ' + watch);
130 actual = ((watchResult + '') == (watch + ''));
131 reportCompare(expect, actual, inSection(7));
132
133 printStatus('parseIntResult ' + parseIntResult);
134 printStatus('parseInt ' + parseInt);
135 actual = ((parseIntResult + '') == (parseInt + ''));
136 reportCompare(expect, actual, inSection(8));