Index: client/dom/generated/src/frog/CSSStyleRule.dart |
diff --git a/client/dom/generated/src/frog/CSSStyleRule.dart b/client/dom/generated/src/frog/CSSStyleRule.dart |
index fe7b5604357914e0f0d11f130f653f7d77e75e06..b826564c654c912fcd39955274ef8ccecf31f3c3 100644 |
--- a/client/dom/generated/src/frog/CSSStyleRule.dart |
+++ b/client/dom/generated/src/frog/CSSStyleRule.dart |
@@ -1,7 +1,9 @@ |
class CSSStyleRule extends CSSRule native "*CSSStyleRule" { |
- String selectorText; |
+ String get selectorText() native "return this.selectorText;"; |
- CSSStyleDeclaration style; |
+ void set selectorText(String value) native "this.selectorText = value;"; |
+ |
+ CSSStyleDeclaration get style() native "return this.style;"; |
} |