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

Unified Diff: lib/dom/scripts/systemhtml.py

Issue 10445011: Events operator [] shouldn't convert event name to lower case. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: lib/dom/scripts/systemhtml.py
diff --git a/lib/dom/scripts/systemhtml.py b/lib/dom/scripts/systemhtml.py
index a52b3ed16b9c1a9c2f78a8243b7c33708cd44b60..a2250968b092c5daf0b794c06c8d205cc8124761 100644
--- a/lib/dom/scripts/systemhtml.py
+++ b/lib/dom/scripts/systemhtml.py
@@ -1220,7 +1220,7 @@ class HtmlFrogClassGenerator(FrogInterfaceGenerator):
if event_name in _html_event_names:
events_members.Emit(
"\n"
- " EventListenerList get $NAME() => _get('$RAWNAME');\n",
+ " EventListenerList get $NAME() => this['$RAWNAME'];\n",
RAWNAME=event_name,
NAME=_html_event_names[event_name])
else:

Powered by Google App Engine
This is Rietveld 408576698