Index: tools/dom/scripts/htmldartgenerator.py |
=================================================================== |
--- tools/dom/scripts/htmldartgenerator.py (revision 26337) |
+++ tools/dom/scripts/htmldartgenerator.py (working copy) |
@@ -72,7 +72,7 @@ |
self.AddConstant(const) |
for attr in sorted(interface.attributes, ConstantOutputOrder): |
- if attr.type.id != 'EventHandler' and attr.type.id != 'EventListener': |
+ if attr.type.id != 'EventListener': |
self.AddAttribute(attr, declare_only) |
# The implementation should define an indexer if the interface directly |
@@ -117,7 +117,7 @@ |
continue |
for attr in sorted(parent_interface.attributes, ConstantOutputOrder): |
if not FindMatchingAttribute(interface, attr): |
- if attr.type.id != 'EventHandler': |
+ if attr.type.id != 'EventListener': |
self.SecondaryContext(parent_interface) |
self.AddAttribute(attr) |