| Index: client/dom/generated/src/frog/HTMLSelectElement.dart
|
| diff --git a/client/dom/generated/src/frog/HTMLSelectElement.dart b/client/dom/generated/src/frog/HTMLSelectElement.dart
|
| index ba0ef1a464737dc2042dab71aac88830029a2ea4..a62391c9fc842747beb4bd3ea65f574d9fc04fcd 100644
|
| --- a/client/dom/generated/src/frog/HTMLSelectElement.dart
|
| +++ b/client/dom/generated/src/frog/HTMLSelectElement.dart
|
| @@ -1,37 +1,55 @@
|
|
|
| class HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
|
|
|
| - bool autofocus;
|
| + bool get autofocus() native "return this.autofocus;";
|
|
|
| - bool disabled;
|
| + void set autofocus(bool value) native "this.autofocus = value;";
|
|
|
| - HTMLFormElement form;
|
| + bool get disabled() native "return this.disabled;";
|
|
|
| - NodeList labels;
|
| + void set disabled(bool value) native "this.disabled = value;";
|
|
|
| - int length;
|
| + HTMLFormElement get form() native "return this.form;";
|
|
|
| - bool multiple;
|
| + NodeList get labels() native "return this.labels;";
|
|
|
| - String name;
|
| + int get length() native "return this.length;";
|
|
|
| - HTMLOptionsCollection options;
|
| + void set length(int value) native "this.length = value;";
|
|
|
| - bool required;
|
| + bool get multiple() native "return this.multiple;";
|
|
|
| - int selectedIndex;
|
| + void set multiple(bool value) native "this.multiple = value;";
|
|
|
| - int size;
|
| + String get name() native "return this.name;";
|
|
|
| - String type;
|
| + void set name(String value) native "this.name = value;";
|
|
|
| - String validationMessage;
|
| + HTMLOptionsCollection get options() native "return this.options;";
|
|
|
| - ValidityState validity;
|
| + bool get required() native "return this.required;";
|
|
|
| - String value;
|
| + void set required(bool value) native "this.required = value;";
|
|
|
| - bool willValidate;
|
| + int get selectedIndex() native "return this.selectedIndex;";
|
| +
|
| + void set selectedIndex(int value) native "this.selectedIndex = value;";
|
| +
|
| + int get size() native "return this.size;";
|
| +
|
| + void set size(int value) native "this.size = value;";
|
| +
|
| + String get type() native "return this.type;";
|
| +
|
| + String get validationMessage() native "return this.validationMessage;";
|
| +
|
| + ValidityState get validity() native "return this.validity;";
|
| +
|
| + String get value() native "return this.value;";
|
| +
|
| + void set value(String value) native "this.value = value;";
|
| +
|
| + bool get willValidate() native "return this.willValidate;";
|
|
|
| void add(HTMLElement element, HTMLElement before) native;
|
|
|
|
|