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

Unified Diff: lib/web_ui.dart

Issue 18581007: Address comments directly in master, adjust for new sdk html fields. (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 6 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 | « lib/testing/render_test.dart ('k') | test/data/input/css_compile/index_apply_shadow_dom_test.html » ('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 b3ce998788a76eadd272546616d363012f4d157e..b7d6a37652981e0b42b4037e00f9fc3bbbea428c 100644
--- a/lib/web_ui.dart
+++ b/lib/web_ui.dart
@@ -617,9 +617,9 @@ abstract class WebComponent implements Element {
List<Node> get $dom_childNodes => host.$dom_childNodes;
- Node get $dom_firstChild => host.$dom_firstChild;
+ Node get firstChild => host.firstChild;
- Node get $dom_lastChild => host.$dom_lastChild;
+ Node get lastChild => host.lastChild;
String get localName => host.localName;
String get $dom_localName => host.$dom_localName;
« no previous file with comments | « lib/testing/render_test.dart ('k') | test/data/input/css_compile/index_apply_shadow_dom_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698