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

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

Issue 2467913002: Touch event flag should control only DOM event firing. (Closed)
Patch Set: Deprecate the histogram. Created 4 years, 1 month 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/GlobalEventHandlers.idl
diff --git a/third_party/WebKit/Source/core/dom/GlobalEventHandlers.idl b/third_party/WebKit/Source/core/dom/GlobalEventHandlers.idl
index bb373e48cb6d63bd823b7f1326682183b18e2e1a..e3e32ccb302ff810bed585a8998b64e4dd02d2a4 100644
--- a/third_party/WebKit/Source/core/dom/GlobalEventHandlers.idl
+++ b/third_party/WebKit/Source/core/dom/GlobalEventHandlers.idl
@@ -113,8 +113,8 @@
// Touch Events
// https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers-interface
- [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
- [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
- [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
- [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
+ [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchcancel;
+ [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchend;
+ [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchmove;
+ [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchstart;
};

Powered by Google App Engine
This is Rietveld 408576698