| OLD | NEW |
| 1 library dromaeo; | 1 library dromaeo; |
| 2 import 'dart:async'; | 2 import 'dart:async'; |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 import "dart:convert"; | 4 import "dart:convert"; |
| 5 import 'dart:math' as Math; | 5 import 'dart:math' as Math; |
| 6 part 'Common.dart'; | 6 part 'Common.dart'; |
| 7 part 'RunnerSuite.dart'; | 7 part 'RunnerSuite.dart'; |
| 8 | 8 |
| 9 void main() { | 9 void main() { |
| 10 final int num = 400; | 10 final int num = 400; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 .test('appendChild', () { | 63 .test('appendChild', () { |
| 64 for (int i = 0; i < elems.length; i++) | 64 for (int i = 0; i < elems.length; i++) |
| 65 document.body.append(elems[i]); | 65 document.body.append(elems[i]); |
| 66 }) | 66 }) |
| 67 .test('insertBefore', () { | 67 .test('insertBefore', () { |
| 68 for (int i = 0; i < elems.length; i++) | 68 for (int i = 0; i < elems.length; i++) |
| 69 document.body.insertBefore(elems[i], document.body.firstChild); | 69 document.body.insertBefore(elems[i], document.body.firstChild); |
| 70 }) | 70 }) |
| 71 .end(); | 71 .end(); |
| 72 } | 72 } |
| OLD | NEW |