]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma/Math/15.8-3-n.js
1 /* The contents of this file are subject to the Netscape Public
2 * License Version 1.1 (the "License"); you may not use this file
3 * except in compliance with the License. You may obtain a copy of
4 * the License at http://www.mozilla.org/NPL/
6 * Software distributed under the License is distributed on an "AS
7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8 * implied. See the License for the specific language governing
9 * rights and limitations under the License.
11 * The Original Code is Mozilla Communicator client code, released March
14 * The Initial Developer of the Original Code is Netscape Communications
15 * Corporation. Portions created by Netscape are
16 * Copyright (C) 1998 Netscape Communications Corporation. All
24 ECMA Section: 15.8 The Math Object
28 The Math object is merely a single object that has some named properties,
29 some of which are functions.
31 The value of the internal [[Prototype]] property of the Math object is the
32 Object prototype object (15.2.3.1).
34 The Math object does not have a [[Construct]] property; it is not possible
35 to use the Math object as a constructor with the new operator.
37 The Math object does not have a [[Call]] property; it is not possible to
38 invoke the Math object as a function.
40 Recall that, in this specification, the phrase "the number value for x" has
41 a technical meaning defined in section 8.5.
43 Author: christine@netscape.com
44 Date: 12 november 1997
47 var SECTION
= "15.8-3-n";
48 var VERSION
= "ECMA_1";
50 var TITLE
= "The Math Object";
52 writeHeaderToLog( SECTION
+ " "+ TITLE
);
54 var testcases
= getTestCases();
57 function getTestCases() {
58 var array
= new Array();
60 array
[item
++] = new TestCase( SECTION
,
68 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
69 testcases
[tc
].actual
= eval( testcases
[tc
].actual
);
71 testcases
[tc
].passed
= writeTestCaseResult(
74 testcases
[tc
].description
+" = "+
75 testcases
[tc
].actual
);
77 testcases
[tc
].reason
+= "Math does not have the [Call] property";