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

Side by Side Diff: samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart

Issue 9963004: Use the new syntax for native methods that are just renames of other native methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Ready to review... Sra's change actually fixed a failing test instead of causing a new test to fail! Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-query-html.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library("dom_query_html"); 1 #library("dom_query_html");
2 #import("dart:html"); 2 #import("dart:html");
3 #import('../common/common.dart'); 3 #import('../common/common.dart');
4 #source("Common.dart"); 4 #source("Common.dart");
5 #source("RunnerSuite.dart"); 5 #source("RunnerSuite.dart");
6 6
7 void main() { 7 void main() {
8 final int num = 40; 8 final int num = 40;
9 9
10 // Try to force real results. 10 // Try to force real results.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 }) 68 })
69 .test('getElementsByTagName(*)', () { 69 .test('getElementsByTagName(*)', () {
70 for (int i = 0; i < num; i++) { 70 for (int i = 0; i < num; i++) {
71 ElementList elems = document.queryAll('*'); 71 ElementList elems = document.queryAll('*');
72 ret = elems.last().$dom_nodeType; 72 ret = elems.last().$dom_nodeType;
73 } 73 }
74 }) 74 })
75 .test('getElementsByTagName (not in document)', () { 75 .test('getElementsByTagName (not in document)', () {
76 for (int i = 0; i < num; i++) { 76 for (int i = 0; i < num; i++) {
77 ElementList elems = document.queryAll('strong'); 77 ElementList elems = document.queryAll('strong');
78 ret = elems.last().$dom_nodeType; 78 ret = elems.isEmpty();
79 } 79 }
80 }) 80 })
81 .test('getElementsByName', () { 81 .test('getElementsByName', () {
82 for (int i = 0; i < num * 20; i++) { 82 for (int i = 0; i < num * 20; i++) {
83 ElementList elems = document.queryAll('[name="test$num"]'); 83 ElementList elems = document.queryAll('[name="test$num"]');
84 ret = elems.last().$dom_nodeType; 84 ret = elems.last().$dom_nodeType;
85 elems = document.queryAll('[name="test$num"]'); 85 elems = document.queryAll('[name="test$num"]');
86 ret = elems.last().$dom_nodeType; 86 ret = elems.last().$dom_nodeType;
87 elems = document.queryAll('[name="test$num"]'); 87 elems = document.queryAll('[name="test$num"]');
88 ret = elems.last().$dom_nodeType; 88 ret = elems.last().$dom_nodeType;
89 elems = document.queryAll('[name="test$num"]'); 89 elems = document.queryAll('[name="test$num"]');
90 ret = elems.last().$dom_nodeType; 90 ret = elems.last().$dom_nodeType;
91 } 91 }
92 }) 92 })
93 .test('getElementsByName (not in document)', () { 93 .test('getElementsByName (not in document)', () {
94 for (int i = 0; i < num * 20; i++) { 94 for (int i = 0; i < num * 20; i++) {
95 ret = document.queryAll('[name="test"]').length == 0; 95 ret = document.queryAll('[name="test"]').length == 0;
96 ret = document.queryAll('[name="test"]').length == 0; 96 ret = document.queryAll('[name="test"]').length == 0;
97 ret = document.queryAll('[name="test"]').length == 0; 97 ret = document.queryAll('[name="test"]').length == 0;
98 ret = document.queryAll('[name="test"]').length == 0; 98 ret = document.queryAll('[name="test"]').length == 0;
99 ret = document.queryAll('[name="test"]').length == 0; 99 ret = document.queryAll('[name="test"]').length == 0;
100 } 100 }
101 }) 101 })
102 .end(); 102 .end();
103 } 103 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/tests/dom-query-html.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698