]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/mozilla/ecma_3/Object/regress-72773.js
JavaScriptCore-576.tar.gz
[apple/javascriptcore.git] / tests / mozilla / ecma_3 / Object / regress-72773.js
CommitLineData
b37bf2e1
A
1/*
2* The contents of this file are subject to the Netscape Public
3* License Version 1.1 (the "License"); you may not use this file
4* except in compliance with the License. You may obtain a copy of
5* the License at http://www.mozilla.org/NPL/
6*
7* Software distributed under the License is distributed on an "AS IS"
8* basis, WITHOUT WARRANTY OF ANY KIND, either expressed
9* or implied. See the License for the specific language governing
10* rights and limitations under the License.
11*
12* The Original Code is mozilla.org code.
13*
14* The Initial Developer of the Original Code is Netscape
15* Communications Corporation. Portions created by Netscape are
16* Copyright (C) 1998 Netscape Communications Corporation. All
17* Rights Reserved.
18*
19* Contributor(s): pschwartau@netscape.com
20* Date: 09 May 2001
21*
22* SUMMARY: Regression test: we shouldn't crash on this code
23* See http://bugzilla.mozilla.org/show_bug.cgi?id=72773
24*
25* See ECMA-262 Edition 3 13-Oct-1999, Section 8.6.2 re [[Class]] property.
26*
27* Same as class-001.js - but testing user-defined types here, not native types.
28* Therefore we expect the [[Class]] property to equal 'Object' in each case -
29*
30* The getJSClass() function we use is in a utility file, e.g. "shell.js"
31*/
32//-------------------------------------------------------------------------------------------------
33var bug = 72773;
34var summary = "Regression test: we shouldn't crash on this code";
35var status = '';
36var actual = '';
37var expect = '';
38var sToEval = '';
39
40/*
41 * This code should produce an error, but not a crash.
42 * 'TypeError: Function.prototype.toString called on incompatible object'
43 */
44sToEval += 'function Cow(name){this.name = name;}'
45sToEval += 'function Calf(str){this.name = str;}'
46sToEval += 'Calf.prototype = Cow;'
47sToEval += 'new Calf().toString();'
48
49status = 'Trying to catch an expected error';
50try
51{
52 eval(sToEval);
53}
54catch(e)
55{
56 actual = getJSClass(e);
57 expect = 'Error';
58}
59
60
61//----------------------------------------------------------------------------------------------
62test();
63//----------------------------------------------------------------------------------------------
64
65
66function test()
67{
68 enterFunc ('test');
69 printBugNumber (bug);
70 printStatus (summary);
71
72 reportCompare(expect, actual, status);
73
74 exitFunc ('test');
75}