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

Unified Diff: client/dom/generated/src/frog/HTMLAnchorElement.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
Index: client/dom/generated/src/frog/HTMLAnchorElement.dart
diff --git a/client/dom/generated/src/frog/HTMLAnchorElement.dart b/client/dom/generated/src/frog/HTMLAnchorElement.dart
index 68edb084e9736b255f7ef0a88b1201e7a8ac2cb8..f3e360c367163076f636ee43596d0c56e2041b11 100644
--- a/client/dom/generated/src/frog/HTMLAnchorElement.dart
+++ b/client/dom/generated/src/frog/HTMLAnchorElement.dart
@@ -1,47 +1,85 @@
class HTMLAnchorElement extends HTMLElement native "*HTMLAnchorElement" {
- String charset;
+ String get charset() native "return this.charset;";
- String coords;
+ void set charset(String value) native "this.charset = value;";
- String download;
+ String get coords() native "return this.coords;";
- String hash;
+ void set coords(String value) native "this.coords = value;";
- String host;
+ String get download() native "return this.download;";
- String hostname;
+ void set download(String value) native "this.download = value;";
- String href;
+ String get hash() native "return this.hash;";
- String hreflang;
+ void set hash(String value) native "this.hash = value;";
- String name;
+ String get host() native "return this.host;";
- String origin;
+ void set host(String value) native "this.host = value;";
- String pathname;
+ String get hostname() native "return this.hostname;";
- String ping;
+ void set hostname(String value) native "this.hostname = value;";
- String port;
+ String get href() native "return this.href;";
- String protocol;
+ void set href(String value) native "this.href = value;";
- String rel;
+ String get hreflang() native "return this.hreflang;";
- String rev;
+ void set hreflang(String value) native "this.hreflang = value;";
- String search;
+ String get name() native "return this.name;";
- String shape;
+ void set name(String value) native "this.name = value;";
- String target;
+ String get origin() native "return this.origin;";
- String text;
+ String get pathname() native "return this.pathname;";
- String type;
+ void set pathname(String value) native "this.pathname = value;";
+
+ String get ping() native "return this.ping;";
+
+ void set ping(String value) native "this.ping = value;";
+
+ String get port() native "return this.port;";
+
+ void set port(String value) native "this.port = value;";
+
+ String get protocol() native "return this.protocol;";
+
+ void set protocol(String value) native "this.protocol = value;";
+
+ String get rel() native "return this.rel;";
+
+ void set rel(String value) native "this.rel = value;";
+
+ String get rev() native "return this.rev;";
+
+ void set rev(String value) native "this.rev = value;";
+
+ String get search() native "return this.search;";
+
+ void set search(String value) native "this.search = value;";
+
+ String get shape() native "return this.shape;";
+
+ void set shape(String value) native "this.shape = value;";
+
+ String get target() native "return this.target;";
+
+ void set target(String value) native "this.target = value;";
+
+ String get text() native "return this.text;";
+
+ String get type() native "return this.type;";
+
+ void set type(String value) native "this.type = value;";
String toString() native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLAllCollection.dart ('k') | client/dom/generated/src/frog/HTMLAppletElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698