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

Unified Diff: third_party/WebKit/Source/core/html/forms/HiddenInputType.h

Issue 2735633006: INPUT/TEXTAREA elements: Dispatch 'select' event only if text selection is changed. (Closed)
Patch Set: Remove throttling Created 3 years, 9 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/forms/HiddenInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/HiddenInputType.h b/third_party/WebKit/Source/core/html/forms/HiddenInputType.h
index cad77ca6630b119da8d16e74ae1a14dfe6691869..bfa64decd8174c5c068f72a8a29e7c2dd201b10b 100644
--- a/third_party/WebKit/Source/core/html/forms/HiddenInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/HiddenInputType.h
@@ -58,7 +58,10 @@ class HiddenInputType final : public InputType, private InputTypeView {
ValueMode valueMode() const override;
bool isInteractiveContent() const override { return false; }
bool shouldRespectHeightAndWidthAttributes() override;
- void setValue(const String&, bool, TextFieldEventBehavior) override;
+ void setValue(const String&,
+ bool,
+ TextFieldEventBehavior,
+ TextControlSetValueSelection) override;
void appendToFormData(FormData&) const override;
};

Powered by Google App Engine
This is Rietveld 408576698