Index: sdk/lib/html/dartium/html_dartium.dart |
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart |
index 7812866012d0fdcee5ccfccf3e3d88bd693b7359..aeb44463c3d09a5697d33e598d561cd9fee578a5 100644 |
--- a/sdk/lib/html/dartium/html_dartium.dart |
+++ b/sdk/lib/html/dartium/html_dartium.dart |
@@ -7473,7 +7473,6 @@ class DocumentFragment extends Node { |
_emptyStyleFuture(); |
Future<CssStyleDeclaration> getComputedStyle(String pseudoElement) => |
_emptyStyleFuture(); |
- bool matchesSelector(String selectors) => false; |
// Imperative Element methods are made into no-ops, as they are on parentless |
// elements. |
@@ -9318,7 +9317,7 @@ abstract class Element extends Node implements ElementTraversal { |
/** @domName Element.webkitMatchesSelector */ |
- bool matchesSelector(String selectors) native "Element_webkitMatchesSelector_Callback"; |
+ bool matches(String selectors) native "Element_webkitMatchesSelector_Callback"; |
/** @domName Element.webkitRequestFullScreen */ |