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

Unified Diff: client/html/generated/html/frog/Document.dart

Issue 9623017: Refactor the event-generation code to locate it in systemhtml.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 9 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: client/html/generated/html/frog/Document.dart
diff --git a/client/html/generated/html/frog/Document.dart b/client/html/generated/html/frog/Document.dart
index 65601251a421c242022f939255af9a2c6ed1bda2..76e0ee99c6fc0cd4cfd59f9452b2b35fbdbecd87 100644
--- a/client/html/generated/html/frog/Document.dart
+++ b/client/html/generated/html/frog/Document.dart
@@ -6,6 +6,9 @@ class _DocumentImpl extends _ElementImpl
implements Document
native "*HTMLHtmlElement" {
+ _DocumentEventsImpl get on() =>
+ new _DocumentEventsImpl(_jsDocument);
+
_ElementImpl get activeElement() native "return this.parentNode.activeElement;";
_ElementImpl get body() native "return this.parentNode.body;";
@@ -54,9 +57,6 @@ class _DocumentImpl extends _ElementImpl
String get webkitVisibilityState() native "return this.parentNode.webkitVisibilityState;";
- _DocumentEventsImpl get on() =>
- new _DocumentEventsImpl(_jsDocument);
-
_RangeImpl caretRangeFromPoint(int x, int y) native "return this.parentNode.caretRangeFromPoint(x, y);";
_CDATASectionImpl createCDATASection(String data) native "return this.parentNode.createCDATASection(data);";
« no previous file with comments | « client/html/generated/html/frog/DOMApplicationCache.dart ('k') | client/html/generated/html/frog/DocumentFragment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698