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

Unified Diff: lib/web_ui.dart

Issue 19624009: Updates for the next sdk in the web-ui master branch (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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 | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/web_ui.dart
diff --git a/lib/web_ui.dart b/lib/web_ui.dart
index 40da1bc4fab5e2a1648336bf1b3199b0ed176c75..3bd565b2538c4d23e421ba5ef6448af625a045da 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -343,6 +343,7 @@ abstract class WebComponent implements Element {
Node get nextNode => host.nextNode;
+ String get nodeName => host.nodeName;
Document get document => host.document;
Node get previousNode => host.previousNode;
@@ -384,6 +385,12 @@ abstract class WebComponent implements Element {
host.classes = value;
}
+ CssRect get contentEdge => host.contentEdge;
+ CssRect get paddingEdge => host.paddingEdge;
+ CssRect get borderEdge => host.borderEdge;
+ CssRect get marginEdge => host.marginEdge;
+
+
Map<String, String> getNamespacedAttributes(String namespace) =>
host.getNamespacedAttributes(namespace);
@@ -528,8 +535,8 @@ abstract class WebComponent implements Element {
int get $dom_childElementCount => host.$dom_childElementCount;
- String get $dom_className => host.$dom_className;
- set $dom_className(String value) { host.$dom_className = value; }
+ String get className => host.className;
+ set className(String value) { host.className = value; }
@deprecated
int get clientHeight => client.height;
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698