Index: client/dom/generated/src/frog/HTMLMetaElement.dart |
diff --git a/client/dom/generated/src/frog/HTMLMetaElement.dart b/client/dom/generated/src/frog/HTMLMetaElement.dart |
index eae4421f3a0c96f08824632ccd0b955cf821e3bc..55762f29dac435e70220dd9081eedb67303a8b50 100644 |
--- a/client/dom/generated/src/frog/HTMLMetaElement.dart |
+++ b/client/dom/generated/src/frog/HTMLMetaElement.dart |
@@ -1,11 +1,19 @@ |
class HTMLMetaElement extends HTMLElement native "*HTMLMetaElement" { |
- String content; |
+ String get content() native "return this.content;"; |
- String httpEquiv; |
+ void set content(String value) native "this.content = value;"; |
- String name; |
+ String get httpEquiv() native "return this.httpEquiv;"; |
- String scheme; |
+ void set httpEquiv(String value) native "this.httpEquiv = value;"; |
+ |
+ String get name() native "return this.name;"; |
+ |
+ void set name(String value) native "this.name = value;"; |
+ |
+ String get scheme() native "return this.scheme;"; |
+ |
+ void set scheme(String value) native "this.scheme = value;"; |
} |