1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/Date/fractions.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 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 = 771946; 1.10 +var summary = "Fractional days, months, years shouldn't trigger asserts"; 1.11 + 1.12 +print(BUGNUMBER + ": " + summary); 1.13 + 1.14 +/************** 1.15 + * BEGIN TEST * 1.16 + **************/ 1.17 + 1.18 +new Date(0).setFullYear(1.5); 1.19 +new Date(0).setUTCDate(1.5); 1.20 +new Date(0).setMonth(1.5); 1.21 + 1.22 +/******************************************************************************/ 1.23 + 1.24 +if (typeof reportCompare === "function") 1.25 + reportCompare(true, true); 1.26 + 1.27 +print("Tests complete");