| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index f470f2d78d2fae2350579d1fb027bc3ec56e26ce..7fd92509e213a6970ddbd1fb24cbde701fe6fd45 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -944,8 +944,14 @@ class _CSSStyleDeclarationImpl implements CSSStyleDeclaration native "*CSSStyleD
|
|
|
| String removeProperty(String propertyName) native;
|
|
|
| - void setProperty(String propertyName, String value, [String priority]) native;
|
|
|
| + void setProperty(String propertyName, String value, [String priority]) native '''
|
| + this.setProperty(propertyName, value, priority);
|
| + // Bug #2772, IE9 requires a poke to actually apply the value.
|
| + if (this.setAttribute) {
|
| + this.setAttribute(propertyName, value);
|
| + }
|
| + ''';
|
|
|
| // TODO(jacobr): generate this list of properties using the existing script.
|
| /** Gets the value of "animation" */
|
|
|