| OLD | NEW |
| 1 library dromaeo; | 1 library dromaeo; |
| 2 import 'dart:async'; |
| 2 import 'dart:html'; | 3 import 'dart:html'; |
| 3 import 'dart:json' as json; | 4 import 'dart:json' as json; |
| 4 import '../common/common.dart'; | 5 import '../common/common.dart'; |
| 5 import 'dart:math' as Math; | 6 import 'dart:math' as Math; |
| 6 import 'dart:json' as json; | 7 import 'dart:json' as json; |
| 7 part 'Common.dart'; | 8 part 'Common.dart'; |
| 8 part 'RunnerSuite.dart'; | 9 part 'RunnerSuite.dart'; |
| 9 | 10 |
| 10 | 11 |
| 11 void main() { | 12 void main() { |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 .test('childNodes', () { | 83 .test('childNodes', () { |
| 83 for (int i = 0; i < num; i++) { | 84 for (int i = 0; i < num; i++) { |
| 84 final nodes = document.body.$dom_childNodes; | 85 final nodes = document.body.$dom_childNodes; |
| 85 for (int j = 0; j < nodes.length; j++) { | 86 for (int j = 0; j < nodes.length; j++) { |
| 86 ret = nodes[j]; | 87 ret = nodes[j]; |
| 87 } | 88 } |
| 88 } | 89 } |
| 89 }) | 90 }) |
| 90 .end(); | 91 .end(); |
| 91 } | 92 } |
| OLD | NEW |