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

Unified Diff: Source/core/dom/Element.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/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index 9450eaec737089b53e66569a692912d03acd98fd..64ae3d46e092cd5e2e3a9df5af43a9da9087cd70 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -379,7 +379,7 @@ public:
virtual void willCallDefaultEventHandler(const Event&) OVERRIDE FINAL;
virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType);
virtual void dispatchBlurEvent(Element* newFocusedElement);
- void dispatchFocusInEvent(const AtomicString& eventType, Element* oldFocusedElement);
+ virtual void dispatchFocusInEvent(const AtomicString& eventType, Element* oldFocusedElement, FocusType);
void dispatchFocusOutEvent(const AtomicString& eventType, Element* newFocusedElement);
String innerText();

Powered by Google App Engine
This is Rietveld 408576698