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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h

Issue 1577243002: setRangeText shouldn't dispatch 'search' event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
index a92f6678039f6ff278c00cfea9fcb2879daff576..1bbd246f5470ab0bedfd9c51f92124f4b9cd9826 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.h
@@ -43,7 +43,7 @@ public:
bool shouldWrapText() const { return m_wrap != NoWrap; }
String value() const override;
- void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent);
+ void setValue(const String&, TextFieldEventBehavior = DispatchNoEvent) override;
String defaultValue() const;
void setDefaultValue(const String&);
int textLength() const { return value().length(); }

Powered by Google App Engine
This is Rietveld 408576698