Bug 469739 - Add support for displaying Vista UAC shield icon; r=joe sr=vladimir
[wine-gecko.git] / js / tests / js1_5 / Scope / scope-003.js
blob49da4f46cf5ce16234e4024d02409224f2ec4911
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
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/
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.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * coliver@mminternet.com, pschwartau@netscape.com
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
40 * Date: 2001-07-03
42 * SUMMARY: Testing scope with nested functions
44 * From correspondence with Christopher Oliver <coliver@mminternet.com>:
46 * > Running this test with Rhino produces the following exception:
47 * >
48 * > uncaught JavaScript exception: undefined: Cannot find default value for
49 * > object. (line 3)
50 * >
51 * > This is due to a bug in org.mozilla.javascript.NativeCall which doesn't
52 * > implement toString or valueOf or override getDefaultValue.
53 * > However, even after I hacked in an implementation of getDefaultValue in
54 * > NativeCall, Rhino still produces a different result then SpiderMonkey:
55 * >
56 * > [object Call]
57 * > [object Object]
58 * > [object Call]
60 * Note the results should be:
62 * [object global]
63 * [object Object]
64 * [object global]
66 * This is what we are checking for in this testcase -
68 //-----------------------------------------------------------------------------
69 var gTestfile = 'scope-003.js';
70 var UBound = 0;
71 var BUGNUMBER = '(none)';
72 var summary = 'Testing scope with nested functions';
73 var statprefix = 'Section ';
74 var statsuffix = ' of test -';
75 var self = this; // capture a reference to the global object;
76 var cnGlobal = self.toString();
77 var cnObject = (new Object).toString();
78 var statusitems = [];
79 var actualvalues = [];
80 var expectedvalues = [];
83 function a()
85 function b()
87 capture(this.toString());
90 this.c = function()
92 capture(this.toString());
93 b();
96 b();
100 var obj = new a(); // captures actualvalues[0]
101 obj.c(); // captures actualvalues[1], actualvalues[2]
104 // The values we expect - see introduction above -
105 expectedvalues[0] = cnGlobal;
106 expectedvalues[1] = cnObject;
107 expectedvalues[2] = cnGlobal;
111 //-----------------------------------------------------------------------------
112 test();
113 //-----------------------------------------------------------------------------
117 function capture(val)
119 actualvalues[UBound] = val;
120 statusitems[UBound] = getStatus(UBound);
121 UBound++;
125 function test()
127 enterFunc ('test');
128 printBugNumber(BUGNUMBER);
129 printStatus (summary);
131 for (var i=0; i<UBound; i++)
133 reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
136 exitFunc ('test');
140 function getStatus(i)
142 return statprefix + i + statsuffix;