Home | History | Annotate | Download | only in regress

Lines Matching full:date

31 assertEquals(1290722550521, Date.parse("2010-11-25T22:02:30.521Z"));
35 assertEquals(1290722550500, Date.parse("2010-11-25T22:02:30.5Z"));
36 assertEquals(1290722550520, Date.parse("2010-11-25T22:02:30.52Z"));
37 assertFalse(Date.parse("2010-11-25T22:02:30.5Z") === Date.parse("2010-11-25T22:02:30.005Z"));
40 assertEquals(Date.parse("2010-11-25T22:02:30.1005Z"), Date.parse("2010-11-25T22:02:30.100Z"));
43 assertEquals(Date.parse("2010-11-25T22:02:30.999Z"), Date.parse("2010-11-25T22:02:30.99999999999999999999999999999999999999999999999999999999999999999999999999999999999999Z"));
46 assertTrue(isNaN(Date.parse("2010-11-25T22:02:30.Z")));