| 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;";
|
| }
|
|
|