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

Unified Diff: tools/dom/scripts/htmleventgenerator.py

Issue 2905223002: Cherry-picks of multiple html CLs
Patch Set: Created 3 years, 7 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
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/src/EventStreamProvider.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/htmleventgenerator.py
diff --git a/tools/dom/scripts/htmleventgenerator.py b/tools/dom/scripts/htmleventgenerator.py
index c7a5d75ed7af667086584c00b58d028dd460a625..2bf39b6a979022378ec84cd46f0135008f563673 100644
--- a/tools/dom/scripts/htmleventgenerator.py
+++ b/tools/dom/scripts/htmleventgenerator.py
@@ -46,13 +46,13 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
'*.copy': ('copy', 'ClipboardEvent'),
'*.cut': ('cut', 'ClipboardEvent'),
'*.dblclick': ('doubleClick', 'Event'),
- '*.drag': ('drag', 'DragEvent'),
- '*.dragend': ('dragEnd', 'DragEvent'),
- '*.dragenter': ('dragEnter', 'DragEvent'),
- '*.dragleave': ('dragLeave', 'DragEvent'),
- '*.dragover': ('dragOver', 'DragEvent'),
- '*.dragstart': ('dragStart', 'DragEvent'),
- '*.drop': ('drop', 'DragEvent'),
+ '*.drag': ('drag', 'MouseEvent'),
+ '*.dragend': ('dragEnd', 'MouseEvent'),
+ '*.dragenter': ('dragEnter', 'MouseEvent'),
+ '*.dragleave': ('dragLeave', 'MouseEvent'),
+ '*.dragover': ('dragOver', 'MouseEvent'),
+ '*.dragstart': ('dragStart', 'MouseEvent'),
+ '*.drop': ('drop', 'MouseEvent'),
'*.durationchange': ('durationChange', 'Event'),
'*.emptied': ('emptied', 'Event'),
'*.ended': ('ended', 'Event'),
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/src/EventStreamProvider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698