| Index: Source/web/WebFormControlElement.cpp
|
| diff --git a/Source/web/WebFormControlElement.cpp b/Source/web/WebFormControlElement.cpp
|
| index f2d91c184f96fb2831d8d2c92dc9ff648a6e7b15..6f7b2bd7ff47badad77b745aa6bf3ca603458fac 100644
|
| --- a/Source/web/WebFormControlElement.cpp
|
| +++ b/Source/web/WebFormControlElement.cpp
|
| @@ -137,9 +137,9 @@ WebString WebFormControlElement::suggestedValue() const
|
| WebString WebFormControlElement::editingValue() const
|
| {
|
| if (isHTMLInputElement(*m_private))
|
| - return constUnwrap<HTMLInputElement>()->innerTextValue();
|
| + return constUnwrap<HTMLInputElement>()->innerEditorValue();
|
| if (isHTMLTextAreaElement(*m_private))
|
| - return constUnwrap<HTMLTextAreaElement>()->innerTextValue();
|
| + return constUnwrap<HTMLTextAreaElement>()->innerEditorValue();
|
| return WebString();
|
| }
|
|
|
|
|