| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index 361814a10e9b6a667473ecb55c43110ca2e8215a..904da975e84edb9fcd952b2394076ec414d58c3e 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -955,7 +955,7 @@ void HTMLInputElement::setEditingValue(const String& value)
|
| {
|
| if (!renderer() || !isTextField())
|
| return;
|
| - setInnerTextValue(value);
|
| + setInnerEditorValue(value);
|
| subtreeHasChanged();
|
|
|
| unsigned max = value.length();
|
| @@ -967,9 +967,9 @@ void HTMLInputElement::setEditingValue(const String& value)
|
| dispatchInputEvent();
|
| }
|
|
|
| -void HTMLInputElement::setInnerTextValue(const String& value)
|
| +void HTMLInputElement::setInnerEditorValue(const String& value)
|
| {
|
| - HTMLTextFormControlElement::setInnerTextValue(value);
|
| + HTMLTextFormControlElement::setInnerEditorValue(value);
|
| m_needsToUpdateViewValue = false;
|
| }
|
|
|
|
|