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

Unified Diff: Source/core/html/HTMLInputElement.h

Issue 541993003: Generate focusin for input type=date/time when selected by tab (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moved code to HTMLInputElement Created 6 years, 3 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: Source/core/html/HTMLInputElement.h
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
index 98ba2ff12dc2eb8ffadb26412fb7bb2fd96edd8c..660d86d11ab31e9ce61b285c5d4e3ac08c1168b8 100644
--- a/Source/core/html/HTMLInputElement.h
+++ b/Source/core/html/HTMLInputElement.h
@@ -346,6 +346,8 @@ private:
virtual bool isEmptySuggestedValue() const OVERRIDE FINAL { return suggestedValue().isEmpty(); }
virtual void handleFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE FINAL;
virtual void handleBlurEvent() OVERRIDE FINAL;
+ virtual void handleFocusInEvent(Element* oldFocusedElement, FocusType);
+ virtual void dispatchFocusInEvent(const AtomicString& eventType, Element* oldFocusedElement, FocusType) OVERRIDE FINAL;
virtual bool isOptionalFormControl() const OVERRIDE FINAL { return !isRequiredFormControl(); }
virtual bool isRequiredFormControl() const OVERRIDE FINAL;

Powered by Google App Engine
This is Rietveld 408576698