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

Unified Diff: client/dom/generated/src/frog/HTMLDocument.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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/dom/generated/src/frog/HTMLDivElement.dart ('k') | client/dom/generated/src/frog/HTMLElement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/HTMLDocument.dart
diff --git a/client/dom/generated/src/frog/HTMLDocument.dart b/client/dom/generated/src/frog/HTMLDocument.dart
index ecab0e53ca7cd0f523ded0f8f7a7af298a6d3ff7..bb2371f2980b1a15a706742424f19204ac5961ca 100644
--- a/client/dom/generated/src/frog/HTMLDocument.dart
+++ b/client/dom/generated/src/frog/HTMLDocument.dart
@@ -1,31 +1,47 @@
class HTMLDocument extends Document native "*HTMLDocument" {
- Element activeElement;
+ Element get activeElement() native "return this.activeElement;";
- String alinkColor;
+ String get alinkColor() native "return this.alinkColor;";
- HTMLAllCollection all;
+ void set alinkColor(String value) native "this.alinkColor = value;";
- String bgColor;
+ HTMLAllCollection get all() native "return this.all;";
- String compatMode;
+ void set all(HTMLAllCollection value) native "this.all = value;";
- String designMode;
+ String get bgColor() native "return this.bgColor;";
- String dir;
+ void set bgColor(String value) native "this.bgColor = value;";
- HTMLCollection embeds;
+ String get compatMode() native "return this.compatMode;";
- String fgColor;
+ String get designMode() native "return this.designMode;";
- String linkColor;
+ void set designMode(String value) native "this.designMode = value;";
- HTMLCollection plugins;
+ String get dir() native "return this.dir;";
- HTMLCollection scripts;
+ void set dir(String value) native "this.dir = value;";
- String vlinkColor;
+ HTMLCollection get embeds() native "return this.embeds;";
+
+ String get fgColor() native "return this.fgColor;";
+
+ void set fgColor(String value) native "this.fgColor = value;";
+
+ String get linkColor() native "return this.linkColor;";
+
+ void set linkColor(String value) native "this.linkColor = value;";
+
+ HTMLCollection get plugins() native "return this.plugins;";
+
+ HTMLCollection get scripts() native "return this.scripts;";
+
+ String get vlinkColor() native "return this.vlinkColor;";
+
+ void set vlinkColor(String value) native "this.vlinkColor = value;";
void captureEvents() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLDivElement.dart ('k') | client/dom/generated/src/frog/HTMLElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698