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

Unified Diff: samples/third_party/dromaeo/tests/dom-traverse-html.dart

Issue 23534024: createRange.... (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 | « samples/third_party/dromaeo/tests/dom-attr-html.dart ('k') | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/tests/dom-traverse-html.dart
diff --git a/samples/third_party/dromaeo/tests/dom-traverse-html.dart b/samples/third_party/dromaeo/tests/dom-traverse-html.dart
index f9c3d3be6bb805546b5bad0372827fe6617caa4c..bf193054a98133b7d78ba401e27cf694b864b620 100644
--- a/samples/third_party/dromaeo/tests/dom-traverse-html.dart
+++ b/samples/third_party/dromaeo/tests/dom-traverse-html.dart
@@ -34,7 +34,7 @@ void main() {
document.body.append(div);
})
.test('firstChild', () {
- final nodes = document.body.$dom_childNodes;
+ final nodes = document.body.nodes;
final nl = nodes.length;
for (int i = 0; i < num; i++) {
@@ -48,7 +48,7 @@ void main() {
}
})
.test('lastChild', () {
- final nodes = document.body.$dom_childNodes;
+ final nodes = document.body.nodes;
final nl = nodes.length;
for (int i = 0; i < num; i++) {
@@ -81,7 +81,7 @@ void main() {
})
.test('childNodes', () {
for (int i = 0; i < num; i++) {
- final nodes = document.body.$dom_childNodes;
+ final nodes = document.body.nodes;
for (int j = 0; j < nodes.length; j++) {
ret = nodes[j];
}
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-attr-html.dart ('k') | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698