| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 4e98af251e4416ec0072eddebdb214bc94dea1db..05d528f9ebb8792657b1d0902b0a41416e8d5a7f 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -9310,7 +9310,7 @@ abstract class Element extends Node implements ParentNode, ChildNode native "Ele
|
| } else if (JS('bool', '!!#.mozMatchesSelector', this)) {
|
| return JS('bool', '#.mozMatchesSelector(#)', this, selectors);
|
| } else if (JS('bool', '!!#.msMatchesSelector', this)) {
|
| - return matches = JS('bool', '#.msMatchesSelector(#)', this, selectors);
|
| + return JS('bool', '#.msMatchesSelector(#)', this, selectors);
|
| } else {
|
| throw new UnsupportedError("Not supported on this platform");
|
| }
|
|
|