| Index: client/dom/generated/src/frog/CSSValue.dart
|
| diff --git a/client/dom/generated/src/frog/CSSValue.dart b/client/dom/generated/src/frog/CSSValue.dart
|
| index 32dcfe0a6cdde75e818268b2fbaeed076b0e9382..d2436e5c4392a734afed8099603a237b8a32fd16 100644
|
| --- a/client/dom/generated/src/frog/CSSValue.dart
|
| +++ b/client/dom/generated/src/frog/CSSValue.dart
|
| @@ -9,9 +9,11 @@ class CSSValue native "*CSSValue" {
|
|
|
| static final int CSS_VALUE_LIST = 2;
|
|
|
| - String cssText;
|
| + String get cssText() native "return this.cssText;";
|
|
|
| - int cssValueType;
|
| + void set cssText(String value) native "this.cssText = value;";
|
| +
|
| + int get cssValueType() native "return this.cssValueType;";
|
|
|
| var dartObjectLocalStorage;
|
|
|
|
|