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

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

Issue 22897014: Fixes for Element API changes (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 16978aea6257d302c8b38685282bc981696b6957..4121dbf2fc5af63c5ecac3743f59b8f2c7294d3e 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -313,6 +313,8 @@ class CustomElement implements Element {
host.innerHtml = v;
}
+ InputMethodContext get inputMethodContext => host.inputMethodContext;
+
bool get isContentEditable => host.isContentEditable;
String get lang => host.lang;
@@ -338,7 +340,8 @@ class CustomElement implements Element {
void click() { host.click(); }
- InputMethodContext getInputContext() => host.getInputContext();
+ List<Node> getDestinationInsertionPoints() =>
+ host.getDestinationInsertionPoints();
Element insertAdjacentElement(String where, Element element) =>
host.insertAdjacentElement(where, element);
« 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