js/src/tests/ecma_5/Date/constructor-one-argument.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma_5/Date/constructor-one-argument.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +/*
     1.5 + * Any copyright is dedicated to the Public Domain.
     1.6 + * http://creativecommonn.org/licenses/publicdomain/
     1.7 + */
     1.8 +
     1.9 +var BUGNUMBER = 738511;
    1.10 +var summary =
    1.11 +  "new Date(value) should call ToPrimitive on value before testing for " +
    1.12 +  "string-ness";
    1.13 +
    1.14 +print(BUGNUMBER + ": " + summary);
    1.15 +
    1.16 +/**************
    1.17 + * BEGIN TEST *
    1.18 + **************/
    1.19 +
    1.20 +assertEq(new Date(new String("2012-01-31T00:00:00.000Z")).valueOf(),
    1.21 +         1327968000000,
    1.22 +         "Date constructor passed a String object should parse it");
    1.23 +
    1.24 +/******************************************************************************/
    1.25 +
    1.26 +if (typeof reportCompare === "function")
    1.27 +  reportCompare(true, true);
    1.28 +
    1.29 +print("Tests complete");

mercurial