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

Unified Diff: Source/core/html/HTMLInputElement.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/html/HTMLInputElement.h ('k') | Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698