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

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

Issue 23819006: Update CustomElement as well. (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 db0c3b82d3c87e701e88022f4ae849c560f977b6..202a0eedfc425265d60703dd9be306e6f6f3404a 100644
--- a/pkg/custom_element/lib/custom_element.dart
+++ b/pkg/custom_element/lib/custom_element.dart
@@ -471,17 +471,6 @@ class CustomElement implements Element {
int get scrollWidth => host.scrollWidth;
- String $dom_getAttribute(String name) =>
- host.$dom_getAttribute(name);
-
- String $dom_getAttributeNS(String namespaceUri, String localName) =>
- host.$dom_getAttributeNS(namespaceUri, localName);
-
- String $dom_setAttributeNS(
- String namespaceUri, String localName, String value) {
- host.$dom_setAttributeNS(namespaceUri, localName, value);
- }
-
Rect getBoundingClientRect() => host.getBoundingClientRect();
List<Rect> getClientRects() => host.getClientRects();
@@ -489,11 +478,6 @@ class CustomElement implements Element {
List<Node> getElementsByClassName(String name) =>
host.getElementsByClassName(name);
- void $dom_setAttribute(String name, String value) =>
- host.$dom_setAttribute(name, value);
-
- List<Node> get $dom_childNodes => host.$dom_childNodes;
-
Node get firstChild => host.firstChild;
Node get lastChild => host.lastChild;
« 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