|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 /** |
|
8 File Name: 15.6.4.js |
|
9 ECMA Section: Properties of the Boolean Prototype Object |
|
10 Description: |
|
11 The Boolean prototype object is itself a Boolean object (its [[Class]] is " |
|
12 Boolean") whose value is false. |
|
13 |
|
14 The value of the internal [[Prototype]] property of the Boolean prototype |
|
15 object is the Object prototype object (15.2.3.1). |
|
16 |
|
17 In following descriptions of functions that are properties of the Boolean |
|
18 prototype object, the phrase "this Boolean object" refers to the object that |
|
19 is the this value for the invocation of the function; it is an error if |
|
20 this does not refer to an object for which the value of the internal |
|
21 [[Class]] property is "Boolean". Also, the phrase "this boolean value" |
|
22 refers to the boolean value represented by this Boolean object, that is, |
|
23 the value of the internal [[Value]] property of this Boolean object. |
|
24 |
|
25 Author: christine@netscape.com |
|
26 Date: 12 november 1997 |
|
27 */ |
|
28 |
|
29 var SECTION = "15.6.4"; |
|
30 var VERSION = "ECMA_1"; |
|
31 startTest(); |
|
32 var TITLE = "Properties of the Boolean Prototype Object"; |
|
33 |
|
34 writeHeaderToLog( SECTION + " "+ TITLE); |
|
35 |
|
36 new TestCase( SECTION, |
|
37 "Boolean.prototype == false", |
|
38 true, |
|
39 Boolean.prototype == false ); |
|
40 |
|
41 new TestCase( SECTION, |
|
42 "Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()", |
|
43 "[object Boolean]", |
|
44 eval("Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()") ); |
|
45 |
|
46 test(); |