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

Unified Diff: third_party/WebKit/Source/build/scripts/make_event_factory.py

Issue 1569813002: Make createEvent do more case-insensitive matches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove KeyEvents change Created 4 years, 11 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 | « third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-createEvent-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/build/scripts/make_event_factory.py
diff --git a/third_party/WebKit/Source/build/scripts/make_event_factory.py b/third_party/WebKit/Source/build/scripts/make_event_factory.py
index bc27525d52ad1e90fe79b11d5a3b7f36c9d7fe3f..d89ce5da0afdce7ec0fbfceaa201de0295d281ec 100755
--- a/third_party/WebKit/Source/build/scripts/make_event_factory.py
+++ b/third_party/WebKit/Source/build/scripts/make_event_factory.py
@@ -53,7 +53,10 @@ def case_insensitive_matching(name):
or name == 'Events'
or name.startswith('UIEvent')
or name.startswith('CustomEvent')
- or name.startswith('MouseEvent'))
+ or name == 'KeyboardEvent'
+ or name == 'MessageEvent'
+ or name.startswith('MouseEvent')
+ or name == 'TouchEvent')
class EventFactoryWriter(in_generator.Writer):
« no previous file with comments | « third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-createEvent-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698