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

Unified Diff: test/data/input/mix_iterate_if_test.html

Issue 11416379: Fixes for the upcoming sdk changes (bleeding_edge 16052) (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 8 years 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 | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/data/input/mix_iterate_if_test.html
diff --git a/test/data/input/mix_iterate_if_test.html b/test/data/input/mix_iterate_if_test.html
index a6daf9719ae3d6c8eae3f2fecab030bfc8320275..aae98e734b8e96d1895de3c26ec7a7bc3aece6ee 100644
--- a/test/data/input/mix_iterate_if_test.html
+++ b/test/data/input/mix_iterate_if_test.html
@@ -30,12 +30,12 @@ BSD-style license that can be found in the LICENSE file.
dispatch();
window.setTimeout(() {
var test = document.query('#test');
- expect(test.elements.length, table.length);
+ expect(test.children.length, table.length);
for (int row = 0; row < table.length; row++) {
- var tr = test.elements[row];
+ var tr = test.children[row];
expect(tr.tagName, 'TR');
int column = -1;
- for (var td in tr.elements) {
+ for (var td in tr.children) {
expect(td.tagName, 'TD');
if (td.style.display == 'none') {
column++;
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698