js/src/tests/js1_4/Regress/date-001-n.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_4/Regress/date-001-n.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:          date-001-n.js
    1.12 + *  Description:
    1.13 + *
    1.14 + *  http://scopus.mcom.com/bugsplat/show_bug.cgi?id=299903
    1.15 + *
    1.16 + *  Author:             christine@netscape.com
    1.17 + *  Date:               11 August 1998
    1.18 + */
    1.19 +var SECTION = "date-001-n.js";
    1.20 +var VERSION = "JS1_4";
    1.21 +var TITLE   = "Regression test case for 299903";
    1.22 +var BUGNUMBER="299903";
    1.23 +
    1.24 +startTest();
    1.25 +
    1.26 +writeHeaderToLog( SECTION + " "+ TITLE);
    1.27 +
    1.28 +function MyDate() {
    1.29 +  this.foo = "bar";
    1.30 +}
    1.31 +MyDate.prototype = new Date();
    1.32 +
    1.33 +DESCRIPTION =
    1.34 +  "function MyDate() { this.foo = \"bar\"; }; MyDate.prototype = new Date(); new MyDate().toString()";
    1.35 +EXPECTED = "error";
    1.36 +
    1.37 +new TestCase(
    1.38 +  SECTION,
    1.39 +  "function MyDate() { this.foo = \"bar\"; }; "+
    1.40 +  "MyDate.prototype = new Date(); " +
    1.41 +  "new MyDate().toString()",
    1.42 +  "error",
    1.43 +  new MyDate().toString() );
    1.44 +
    1.45 +test();

mercurial