| Index: third_party/WebKit/Source/platform/DateComponents.cpp
|
| diff --git a/third_party/WebKit/Source/platform/DateComponents.cpp b/third_party/WebKit/Source/platform/DateComponents.cpp
|
| index 5ad6e0b7dc0985e36e8553bf5603b88fd3848d4f..5218351554d98ccb7395731388e505446128c902 100644
|
| --- a/third_party/WebKit/Source/platform/DateComponents.cpp
|
| +++ b/third_party/WebKit/Source/platform/DateComponents.cpp
|
| @@ -473,7 +473,7 @@ bool DateComponents::parseDateTimeLocal(const String& src,
|
| return false;
|
| if (index >= src.length())
|
| return false;
|
| - if (src[index] != 'T')
|
| + if (src[index] != 'T' && src[index] != ' ')
|
| return false;
|
| ++index;
|
| if (!parseTime(src, index, end))
|
|
|