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

Unified Diff: third_party/WebKit/Source/core/dom/Element.idl

Issue 2584723004: Move ongot/lostpointercaptures to global handlers (Closed)
Patch Set: Fix the link to the spec Created 4 years 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/dom/Element.idl
diff --git a/third_party/WebKit/Source/core/dom/Element.idl b/third_party/WebKit/Source/core/dom/Element.idl
index 544f15ac91f8cd13707dde8622f9727a53809cc8..07e6d7aa90489f5b14954851fb6eb6dc062b6769 100644
--- a/third_party/WebKit/Source/core/dom/Element.idl
+++ b/third_party/WebKit/Source/core/dom/Element.idl
@@ -36,15 +36,10 @@ interface Element : Node {
[SameObject, CEReactions, PerWorldBindings, PutForwards=value] readonly attribute DOMTokenList classList;
[Unscopable, CEReactions, Reflect] attribute DOMString slot;
- // PointerEvent
- //https://www.w3.org/TR/pointerevents/#extensions-to-the-element-interface
+ // Pointer Events
+ // https://w3c.github.io/pointerevents/#extensions-to-the-element-interface
[RuntimeEnabled=PointerEvent, RaisesException] void setPointerCapture (long pointerId);
[RuntimeEnabled=PointerEvent, RaisesException] void releasePointerCapture (long pointerId);
- [RuntimeEnabled=PointerEvent] attribute EventHandler ongotpointercapture;
- [RuntimeEnabled=PointerEvent] attribute EventHandler onlostpointercapture;
-
- // PointerEvent v2
- // https://w3c.github.io/pointerevents/#extensions-to-the-element-interface
[RuntimeEnabled=PointerEvent] boolean hasPointerCapture (long pointerId);
boolean hasAttributes();

Powered by Google App Engine
This is Rietveld 408576698