Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommonn.org/licenses/publicdomain/
4 */
6 var BUGNUMBER = 771946;
7 var summary = "Fractional days, months, years shouldn't trigger asserts";
9 print(BUGNUMBER + ": " + summary);
11 /**************
12 * BEGIN TEST *
13 **************/
15 new Date(0).setFullYear(1.5);
16 new Date(0).setUTCDate(1.5);
17 new Date(0).setMonth(1.5);
19 /******************************************************************************/
21 if (typeof reportCompare === "function")
22 reportCompare(true, true);
24 print("Tests complete");