| Index: client/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/client/dom/templates/html/impl/impl_Element.darttemplate b/client/dom/templates/html/impl/impl_Element.darttemplate
|
| index 57503ae205959782f811ce22310036c04e57aef2..705b0505e27313f9d1db81a5e7605c6393687899 100644
|
| --- a/client/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/client/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -533,8 +533,8 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| }
|
|
|
| Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) {
|
| - return _createMeasurementFuture(() =>
|
| - window._getComputedStyle(this, pseudoElement),
|
| + return _createMeasurementFuture(
|
| + () => _window._getComputedStyle(this, pseudoElement),
|
| new Completer<CSSStyleDeclaration>());
|
| }
|
| $!MEMBERS
|
|
|