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

Side by Side Diff: samples/third_party/dromaeo/web/tests/dom-modify-html.dart

Issue 199003005: Package-ify Dromaeo and browser controller functionality (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « samples/third_party/dromaeo/web/tests/dom-modify.html ('k') | samples/third_party/dromaeo/web/tests/dom-modify-html.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698