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

Unified Diff: client/dom/generated/src/frog/HTMLTableColElement.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/HTMLTableColElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableColElement.dart b/client/dom/generated/src/frog/HTMLTableColElement.dart
index 488028fe342dba4ddfcc09097ef351c16547f5a1..c95de78260108d868491752b1c8f0c59454c68ea 100644
--- a/client/dom/generated/src/frog/HTMLTableColElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableColElement.dart
@@ -1,15 +1,27 @@
class HTMLTableColElement extends HTMLElement native "*HTMLTableColElement" {
- String align;
+ String get align() native "return this.align;";
- String ch;
+ void set align(String value) native "this.align = value;";
- String chOff;
+ String get ch() native "return this.ch;";
- int span;
+ void set ch(String value) native "this.ch = value;";
- String vAlign;
+ String get chOff() native "return this.chOff;";
- String width;
+ void set chOff(String value) native "this.chOff = value;";
+
+ int get span() native "return this.span;";
+
+ void set span(int value) native "this.span = value;";
+
+ String get vAlign() native "return this.vAlign;";
+
+ void set vAlign(String value) native "this.vAlign = value;";
+
+ String get width() native "return this.width;";
+
+ void set width(String value) native "this.width = value;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableCellElement.dart ('k') | client/dom/generated/src/frog/HTMLTableElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698