| Index: client/html/generated/html/frog/Element.dart
|
| diff --git a/client/html/generated/html/frog/Element.dart b/client/html/generated/html/frog/Element.dart
|
| index a0adcd854e8685053b7c81c33c9d256091a620c4..6a0352b506fb7c47334bf5448b9c758043c0d4f4 100644
|
| --- a/client/html/generated/html/frog/Element.dart
|
| +++ b/client/html/generated/html/frog/Element.dart
|
| @@ -533,9 +533,10 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
|
| }
|
|
|
| Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) {
|
| - return _createMeasurementFuture(() =>
|
| - window._getComputedStyle(this, pseudoElement),
|
| - new Completer<CSSStyleDeclaration>());
|
| + return _createMeasurementFuture(() {
|
| + final _WindowImpl win = window;
|
| + return win._getComputedStyle(this, pseudoElement);
|
| + }, new Completer<CSSStyleDeclaration>());
|
| }
|
|
|
| _ElementEventsImpl get on() =>
|
|
|