| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index e5f9407cb414fd201a024017e55605a2231b4afd..30d095c3992bb071d24282013eb7667dbea0056a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -1100,13 +1100,8 @@ void HTMLInputElement::setValue(const String& value,
|
| m_inputType->setValue(sanitizedValue, valueChanged, eventBehavior);
|
| m_inputTypeView->didSetValue(sanitizedValue, valueChanged);
|
|
|
| - if (valueChanged && eventBehavior == DispatchNoEvent)
|
| - setTextAsOfLastFormControlChangeEvent(this->value());
|
| -
|
| - if (!valueChanged)
|
| - return;
|
| -
|
| - notifyFormStateChanged();
|
| + if (valueChanged)
|
| + notifyFormStateChanged();
|
| }
|
|
|
| void HTMLInputElement::setNonAttributeValue(const String& sanitizedValue) {
|
|
|