| Index: runtime/bin/http_impl.dart
|
| diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart
|
| index 25a448c970f8d2b806dd4e7139cb3047baace162..9b9a46d1f79b1662d4c1a691cb62c6dd49b5468e 100644
|
| --- a/runtime/bin/http_impl.dart
|
| +++ b/runtime/bin/http_impl.dart
|
| @@ -534,7 +534,7 @@ class _Cookie implements Cookie {
|
| value = parseAttributeValue();
|
| }
|
| if (name == "expires") {
|
| - expires = _HttpUtils.parseDate(value, strict: false);
|
| + expires = _HttpUtils.parseCookieDate(value);
|
| } else if (name == "max-age") {
|
| maxAge = parseInt(value);
|
| } else if (name == "domain") {
|
|
|