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

Unified Diff: client/html/src/DocumentWrappingImplementation.dart

Issue 9246005: Register Document events on Document, not HTMLDocument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/DocumentWrappingImplementation.dart
diff --git a/client/html/src/DocumentWrappingImplementation.dart b/client/html/src/DocumentWrappingImplementation.dart
index 92340a251d195d17dc490e54f7d69b4d5d2e9d0a..8db883f8b49694e1091e7478cf6acf8e77b39f92 100644
--- a/client/html/src/DocumentWrappingImplementation.dart
+++ b/client/html/src/DocumentWrappingImplementation.dart
@@ -144,7 +144,7 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
DocumentEvents get on() {
if (_on === null) {
- _on = new DocumentEventsImplementation._wrap(_ptr);
+ _on = new DocumentEventsImplementation._wrap(_documentPtr);
}
return _on;
}
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698