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

Unified Diff: client/dom/generated/src/frog/HTMLScriptElement.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/HTMLScriptElement.dart
diff --git a/client/dom/generated/src/frog/HTMLScriptElement.dart b/client/dom/generated/src/frog/HTMLScriptElement.dart
index 261058b0aae5e26e9d32a15572d3eb94bc0ee572..569591f69187892bb296359e59ec9593c0b24c2f 100644
--- a/client/dom/generated/src/frog/HTMLScriptElement.dart
+++ b/client/dom/generated/src/frog/HTMLScriptElement.dart
@@ -1,19 +1,35 @@
class HTMLScriptElement extends HTMLElement native "*HTMLScriptElement" {
- bool async;
+ bool get async() native "return this.async;";
- String charset;
+ void set async(bool value) native "this.async = value;";
- bool defer;
+ String get charset() native "return this.charset;";
- String event;
+ void set charset(String value) native "this.charset = value;";
- String htmlFor;
+ bool get defer() native "return this.defer;";
- String src;
+ void set defer(bool value) native "this.defer = value;";
- String text;
+ String get event() native "return this.event;";
- String type;
+ void set event(String value) native "this.event = value;";
+
+ String get htmlFor() native "return this.htmlFor;";
+
+ void set htmlFor(String value) native "this.htmlFor = value;";
+
+ String get src() native "return this.src;";
+
+ void set src(String value) native "this.src = value;";
+
+ String get text() native "return this.text;";
+
+ void set text(String value) native "this.text = value;";
+
+ String get type() native "return this.type;";
+
+ void set type(String value) native "this.type = value;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLQuoteElement.dart ('k') | client/dom/generated/src/frog/HTMLSelectElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698