X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fdate_formats.js;h=05a62c676d1335d4427f406d3a245512eef2ed9f;hb=ba57e1bb6097fe00538c146fea845d8931f819f0;hp=27ddadbd154a12bcda3145fd09e8f4cd2de57ad2;hpb=769e8bc7b8799385e2677b26a5c0a72e839f44ca;p=dygraphs.git diff --git a/auto_tests/tests/date_formats.js b/auto_tests/tests/date_formats.js index 27ddadb..05a62c6 100644 --- a/auto_tests/tests/date_formats.js +++ b/auto_tests/tests/date_formats.js @@ -15,7 +15,12 @@ dateFormatsTestCase.prototype.testISO8601 = function() { // Format: YYYY-MM-DDTHH:MM:SS.ddddddZ // The "Z" indicates UTC, so this test should pass regardless of the time // zone of the machine on which it is run. - assertEquals(946816496789, Dygraph.dateParser("2000-01-02T12:34:56.789012Z")); + + // Firefox <4 does not support this format: + // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse + if (navigator.userAgent.indexOf("Firefox/3.5") == -1) { + assertEquals(946816496789, Dygraph.dateParser("2000-01-02T12:34:56.789012Z")); + } }; dateFormatsTestCase.prototype.testHyphenatedDate = function() {