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

Unified Diff: client/dom/generated/src/frog/HTMLMarqueeElement.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/HTMLMarqueeElement.dart
diff --git a/client/dom/generated/src/frog/HTMLMarqueeElement.dart b/client/dom/generated/src/frog/HTMLMarqueeElement.dart
index 74ed4b6d0101f656f25b3a7dde037e3ca33f5e4b..8763c4be9d84e6dc61a898fdc7ee8f0f7239568f 100644
--- a/client/dom/generated/src/frog/HTMLMarqueeElement.dart
+++ b/client/dom/generated/src/frog/HTMLMarqueeElement.dart
@@ -1,27 +1,49 @@
class HTMLMarqueeElement extends HTMLElement native "*HTMLMarqueeElement" {
- String behavior;
+ String get behavior() native "return this.behavior;";
- String bgColor;
+ void set behavior(String value) native "this.behavior = value;";
- String direction;
+ String get bgColor() native "return this.bgColor;";
- String height;
+ void set bgColor(String value) native "this.bgColor = value;";
- int hspace;
+ String get direction() native "return this.direction;";
- int loop;
+ void set direction(String value) native "this.direction = value;";
- int scrollAmount;
+ String get height() native "return this.height;";
- int scrollDelay;
+ void set height(String value) native "this.height = value;";
- bool trueSpeed;
+ int get hspace() native "return this.hspace;";
- int vspace;
+ void set hspace(int value) native "this.hspace = value;";
- String width;
+ int get loop() native "return this.loop;";
+
+ void set loop(int value) native "this.loop = value;";
+
+ int get scrollAmount() native "return this.scrollAmount;";
+
+ void set scrollAmount(int value) native "this.scrollAmount = value;";
+
+ int get scrollDelay() native "return this.scrollDelay;";
+
+ void set scrollDelay(int value) native "this.scrollDelay = value;";
+
+ bool get trueSpeed() native "return this.trueSpeed;";
+
+ void set trueSpeed(bool value) native "this.trueSpeed = value;";
+
+ int get vspace() native "return this.vspace;";
+
+ void set vspace(int value) native "this.vspace = value;";
+
+ String get width() native "return this.width;";
+
+ void set width(String value) native "this.width = value;";
void start() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLMapElement.dart ('k') | client/dom/generated/src/frog/HTMLMediaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698