| Index: client/dom/generated/src/frog/CSSStyleDeclaration.dart
|
| diff --git a/client/dom/generated/src/frog/CSSStyleDeclaration.dart b/client/dom/generated/src/frog/CSSStyleDeclaration.dart
|
| index d0336b059caa5ae82c96064b0142aeb974cf4504..c62492f8dd85bd233a7aa2bf35706f7c48c2f3e8 100644
|
| --- a/client/dom/generated/src/frog/CSSStyleDeclaration.dart
|
| +++ b/client/dom/generated/src/frog/CSSStyleDeclaration.dart
|
| @@ -1,11 +1,13 @@
|
|
|
| class CSSStyleDeclaration native "*CSSStyleDeclaration" {
|
|
|
| - String cssText;
|
| + String get cssText() native "return this.cssText;";
|
|
|
| - int length;
|
| + void set cssText(String value) native "this.cssText = value;";
|
|
|
| - CSSRule parentRule;
|
| + int get length() native "return this.length;";
|
| +
|
| + CSSRule get parentRule() native "return this.parentRule;";
|
|
|
| CSSValue getPropertyCSSValue(String propertyName) native;
|
|
|
|
|