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

Unified Diff: third_party/WebKit/Source/core/html/HTMLElement.cpp

Issue 1774913004: Firing got/lost pointer capture events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Variable rename Created 4 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/HTMLElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLElement.cpp b/third_party/WebKit/Source/core/html/HTMLElement.cpp
index 6f5437ae2b50f64b7f4ecdfeaa85359933c2e710..8a769e463247fc9a050100fcd8c0ca6c9659a497 100644
--- a/third_party/WebKit/Source/core/html/HTMLElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLElement.cpp
@@ -302,6 +302,7 @@ const AtomicString& HTMLElement::eventNameForAttributeName(const QualifiedName&
{ onfocusAttr, EventTypeNames::focus },
{ onfocusinAttr, EventTypeNames::focusin },
{ onfocusoutAttr, EventTypeNames::focusout },
+ { ongotpointercaptureAttr, EventTypeNames::gotpointercapture },
{ oninputAttr, EventTypeNames::input },
{ oninvalidAttr, EventTypeNames::invalid },
{ onkeydownAttr, EventTypeNames::keydown },
@@ -311,6 +312,7 @@ const AtomicString& HTMLElement::eventNameForAttributeName(const QualifiedName&
{ onloadeddataAttr, EventTypeNames::loadeddata },
{ onloadedmetadataAttr, EventTypeNames::loadedmetadata },
{ onloadstartAttr, EventTypeNames::loadstart },
+ { onlostpointercaptureAttr, EventTypeNames::lostpointercapture },
{ onmousedownAttr, EventTypeNames::mousedown },
{ onmouseenterAttr, EventTypeNames::mouseenter },
{ onmouseleaveAttr, EventTypeNames::mouseleave },
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLAttributeNames.in ('k') | third_party/WebKit/Source/core/input/PointerEventManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698