js/src/tests/ecma/Boolean/15.6.4.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma/Boolean/15.6.4.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,46 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +
    1.10 +/**
    1.11 +   File Name:          15.6.4.js
    1.12 +   ECMA Section:       Properties of the Boolean Prototype Object
    1.13 +   Description:
    1.14 +   The Boolean prototype object is itself a Boolean object (its [[Class]] is "
    1.15 +   Boolean") whose value is false.
    1.16 +
    1.17 +   The value of the internal [[Prototype]] property of the Boolean prototype
    1.18 +   object is the Object prototype object (15.2.3.1).
    1.19 +
    1.20 +   In following descriptions of functions that are properties of the Boolean
    1.21 +   prototype object, the phrase "this Boolean object" refers to the object that
    1.22 +   is the this value for the invocation of the function; it is an error if
    1.23 +   this does not refer to an object for which the value of the internal
    1.24 +   [[Class]] property is "Boolean". Also, the phrase "this boolean value"
    1.25 +   refers to the boolean value represented by this Boolean object, that is,
    1.26 +   the value of the internal [[Value]] property of this Boolean object.
    1.27 +
    1.28 +   Author:             christine@netscape.com
    1.29 +   Date:               12 november 1997
    1.30 +*/
    1.31 +
    1.32 +var SECTION = "15.6.4";
    1.33 +var VERSION = "ECMA_1";
    1.34 +startTest();
    1.35 +var TITLE   = "Properties of the Boolean Prototype Object";
    1.36 +
    1.37 +writeHeaderToLog( SECTION + " "+ TITLE);
    1.38 +
    1.39 +new TestCase( SECTION,
    1.40 +	      "Boolean.prototype == false",
    1.41 +	      true,
    1.42 +	      Boolean.prototype == false );
    1.43 +
    1.44 +new TestCase( SECTION,
    1.45 +	      "Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()",
    1.46 +	      "[object Boolean]",
    1.47 +	      eval("Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()") );
    1.48 +
    1.49 +test();

mercurial