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

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

Issue 2467913002: Touch event flag should control only DOM event firing. (Closed)
Patch Set: Change the string in "about://flags" 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..b802dfceec3233a6580ecf7e63898410d1433eab 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=TouchAPI] attribute EventHandler ontouchcancel;
+ [RuntimeEnabled=TouchAPI] attribute EventHandler ontouchend;
+ [RuntimeEnabled=TouchAPI] attribute EventHandler ontouchmove;
+ [RuntimeEnabled=TouchAPI] attribute EventHandler ontouchstart;
};

Powered by Google App Engine
This is Rietveld 408576698