| Index: third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp b/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| index 49ed736f024506fd35942f71f60b3c02fc764116..dd47b86b89dd22839ead171481ad490c634381f9 100644
|
| --- a/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/shadow/DateTimeFieldElement.cpp
|
| @@ -220,7 +220,7 @@ void DateTimeFieldElement::updateVisibleValue(EventBehavior eventBehavior)
|
| {
|
| Text* const textNode = toText(firstChild());
|
| const String newVisibleValue = visibleValue();
|
| - ASSERT(newVisibleValue.length() > 0);
|
| + DCHECK_GT(newVisibleValue.length(), 0u);
|
|
|
| if (textNode->wholeText() == newVisibleValue)
|
| return;
|
|
|