Bug 117260 - Parsing ISO8061 dates fails if time offsets has no colon in it
Summary: Parsing ISO8061 dates fails if time offsets has no colon in it
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-05 09:50 PDT by gotofritz
Modified: 2013-06-05 14:00 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description gotofritz 2013-06-05 09:50:12 PDT
Hallo.

the following string cannot be parsed as a date by JavaScriptCore: "2011-09-01T00:00:00.000+0200"
the following can: "2011-09-01T00:00:00.000+02:00"
The only difference is the colons at the end, in the timezone offset part (+02:00)

Note that both formats are  ISO8061 compliant, and are parsed correctly by all the other current major JS engines.

Thanks.