1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma/extensions/15.9.5.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,42 @@ 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.9.5.js 1.12 + ECMA Section: 15.9.5 Properties of the Date prototype object 1.13 + Description: 1.14 + 1.15 + The Date prototype object is itself a Date object (its [[Class]] is 1.16 + "Date") whose value is NaN. 1.17 + 1.18 + The value of the internal [[Prototype]] property of the Date prototype 1.19 + object is the Object prototype object (15.2.3.1). 1.20 + 1.21 + In following descriptions of functions that are properties of the Date 1.22 + prototype object, the phrase "this Date object" refers to the object that 1.23 + is the this value for the invocation of the function; it is an error if 1.24 + this does not refer to an object for which the value of the internal 1.25 + [[Class]] property is "Date". Also, the phrase "this time value" refers 1.26 + to the number value for the time represented by this Date object, that is, 1.27 + the value of the internal [[Value]] property of this Date object. 1.28 + 1.29 + Author: christine@netscape.com 1.30 + Date: 12 november 1997 1.31 +*/ 1.32 + 1.33 +var SECTION = "15.9.5"; 1.34 +var VERSION = "ECMA_1"; 1.35 +startTest(); 1.36 +var TITLE = "Properties of the Date Prototype Object"; 1.37 + 1.38 +writeHeaderToLog( SECTION + " "+ TITLE); 1.39 + 1.40 +new TestCase( SECTION, 1.41 + "Date.prototype.__proto__ == Object.prototype", 1.42 + true, 1.43 + Date.prototype.__proto__ == Object.prototype ); 1.44 +test(); 1.45 +