Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: pkg/custom_element/lib/custom_element.dart

Issue 22261005: Add new method to Custom Element. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/custom_element/lib/custom_element.dart
diff --git a/pkg/custom_element/lib/custom_element.dart b/pkg/custom_element/lib/custom_element.dart
index aa540e5c7a216f015f2f3671914982bca97b203f..2cee95921f2e493a412f9e59b03611555a40f9c9 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -397,6 +397,8 @@ class CustomElement implements Element {
bool matches(String selectors) => host.matches(selectors);
+ bool matchesWithAncestors(String selectors) => host.matches(selectors);
Jennifer Messerly 2013/08/09 20:56:17 => host.matchesWithAncestors(selectors)?
+
@deprecated
void requestFullScreen(int flags) { requestFullscreen(); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698