Index: src/objects/intl-objects.cc |
diff --git a/src/objects/intl-objects.cc b/src/objects/intl-objects.cc |
index 4465c81acd1b9b92aa97b63df1fd1a80037e3aa2..fd6546b3904646b236601725eb31409dde3f3c78 100644 |
--- a/src/objects/intl-objects.cc |
+++ b/src/objects/intl-objects.cc |
@@ -178,8 +178,10 @@ void SetResolvedDateSettings(Isolate* isolate, const icu::Locale& icu_locale, |
// timezone. We'd not have "Etc/GMT" here because we canonicalize it and |
// other GMT-variants to "UTC" in intl.js and "UTC" is turned to "Etc/UTC" |
// by ICU before getting here. |
- DCHECK(canonical_time_zone != UNICODE_STRING_SIMPLE("Etc/GMT")); |
- if (canonical_time_zone == UNICODE_STRING_SIMPLE("Etc/UTC")) { |
+ // TODO(jshin): Figure out the cause of crbug.com/719609 and re-enable |
+ // DCHECK(canonical_time_zone != UNICODE_STRING_SIMPLE("Etc/GMT")) . |
+ if (canonical_time_zone == UNICODE_STRING_SIMPLE("Etc/UTC") || |
+ canonical_time_zone == UNICODE_STRING_SIMPLE("Etc/GMT")) { |
JSObject::SetProperty(resolved, |
factory->NewStringFromStaticChars("timeZone"), |
factory->NewStringFromStaticChars("UTC"), SLOPPY) |