Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:date

35   var d = Date.parse(string);
43 var d = Date.parse("parse-local-time:" + string);
53 var d = Date.parse(string);
71 // Ignore prefix that is not part of a date.
235 // Test different version of the ES5 date time string format.
271 // ES5 date time string format compliance.
274 assertTrue(isNaN(Date.parse(s)), s + " is not NaN.");
278 // Test that we can parse our own date format.
282 var s = (new Date(ms)).toString();
283 assertEquals(ms, Date.parse(s), "parse own: " + s);
293 assertTrue(isNaN(Date.parse(s)), s + " is not NaN.");