Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2261)

Unified Diff: Source/web/WebFormControlElement.cpp

Issue 340273003: Rename innerTextElement/Value used in <input> and <textarea> to innerEditor. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderTextControlSingleLine.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « Source/core/rendering/RenderTextControlSingleLine.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698