| Index: third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp b/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| index 7ba8d19438d8e48ccacb6354f9d0788b639362c0..f62af1911639f67f87f481ae4d1d26f0a5b014e3 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
|
| @@ -189,7 +189,8 @@ void MultipleFieldsTemporalInputTypeView::didFocusOnControl() {
|
| void MultipleFieldsTemporalInputTypeView::editControlValueChanged() {
|
| String oldValue = element().value();
|
| String newValue = m_inputType->sanitizeValue(dateTimeEditElement()->value());
|
| - // Even if oldValue is null and newValue is "", we should assume they are same.
|
| + // Even if oldValue is null and newValue is "", we should assume they are
|
| + // same.
|
| if ((oldValue.isEmpty() && newValue.isEmpty()) || oldValue == newValue) {
|
| element().setNeedsValidityCheck();
|
| } else {
|
| @@ -350,8 +351,8 @@ void MultipleFieldsTemporalInputTypeView::createShadowSubtree() {
|
| DCHECK(element().shadow());
|
|
|
| // Element must not have a layoutObject here, because if it did
|
| - // DateTimeEditElement::customStyleForLayoutObject() is called in appendChild()
|
| - // before the field wrapper element is created.
|
| + // DateTimeEditElement::customStyleForLayoutObject() is called in
|
| + // appendChild() before the field wrapper element is created.
|
| // FIXME: This code should not depend on such craziness.
|
| DCHECK(!element().layoutObject());
|
|
|
|
|