Chromium Code Reviews| 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'), |