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

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

Issue 12041053: Adding supported flag to HashChangeEvent. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « tools/dom/scripts/generator.py ('k') | tools/dom/scripts/systemhtml.py » ('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 ec964e19ca77ca268b94d06e4ce9ae0715e5bff3..d2b40e31334a3ccb02b800f4246dc907c4b1ad86 100644
--- a/tools/dom/scripts/htmleventgenerator.py
+++ b/tools/dom/scripts/htmleventgenerator.py
@@ -210,7 +210,8 @@ _html_event_types = {
'*.ended': ('ended', 'Event'),
'*.error': ('error', 'Event'),
'*.focus': ('focus', 'Event'),
- '*.hashchange': ('hashChange', 'HashChangeEvent'),
+ # Should be HashChangeEvent, but IE does not support it.
Emily Fortuna 2013/01/23 22:09:21 In that case, should IE just be marked as not supp
+ '*.hashchange': ('hashChange', 'Event'),
'*.input': ('input', 'Event'),
'*.invalid': ('invalid', 'Event'),
'*.keydown': ('keyDown', 'KeyboardEvent'),
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698