| Index: client/html/release/htmlimpl.dart
|
| diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
|
| index f0b39463590ab8fa2a51cb51c903a0298973cb73..63a760eef505febf471b83a3b08f242cdc94af76 100644
|
| --- a/client/html/release/htmlimpl.dart
|
| +++ b/client/html/release/htmlimpl.dart
|
| @@ -18736,7 +18736,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
|
|
|
| String get cssText() { return _ptr.cssText; }
|
|
|
| - void set cssText(var value) { _ptr.cssText = value; }
|
| + void set cssText(String value) { _ptr.cssText = value; }
|
|
|
| int get length() { return _ptr.length; }
|
|
|
|
|