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

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

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: samples/third_party/dromaeo/web/tests/dom-modify-html.dart
diff --git a/samples/third_party/dromaeo/web/tests/dom-modify-html.dart b/samples/third_party/dromaeo/web/tests/dom-modify-html.dart
deleted file mode 100644
index e9cb8be707188c9cbc168c4696eeb83838b2b6be..0000000000000000000000000000000000000000
--- a/samples/third_party/dromaeo/web/tests/dom-modify-html.dart
+++ /dev/null
@@ -1,72 +0,0 @@
-library dromaeo;
-import 'dart:async';
-import 'dart:html';
-import "dart:convert";
-import 'dart:math' as Math;
-part 'Common.dart';
-part 'RunnerSuite.dart';
-
-void main() {
- final int num = 400;
- var random = new Math.Random();
-
- String str = 'null';
- // Very ugly way to build up the string, but let's mimic JS version as much as
- // possible.
- for (int i = 0; i < 1024; i++) {
- str += new String.fromCharCode(((25 * random.nextDouble()) + 97).toInt());
- }
-
- List<Node> elems = <Node>[];
-
- // Try to force real results.
- var ret;
-
- final htmlstr = document.body.innerHtml;
-
- new Suite(window, 'dom-modify')
- .test('createElement', () {
- for (int i = 0; i < num; i++) {
- ret = new Element.tag('div');
- ret = new Element.tag('span');
- ret = new Element.tag('table');
- ret = new Element.tag('tr');
- ret = new Element.tag('select');
- }
- })
- .test('createTextNode', () {
- for (int i = 0; i < num; i++) {
- ret = new Text(str);
- ret = new Text('${str}2');
- ret = new Text('${str}3');
- ret = new Text('${str}4');
- ret = new Text('${str}5');
- }
- })
- .test('innerHtml', () {
- document.body.innerHtml = htmlstr;
- })
- .prep(() {
- elems = new List<Node>();
- final telems = document.body.nodes;
- for (int i = 0; i < telems.length; i++) {
- elems.add(telems[i]);
- }
- })
- .test('cloneNode', () {
- for (int i = 0; i < elems.length; i++) {
- ret = elems[i].clone(false);
- ret = elems[i].clone(true);
- ret = elems[i].clone(true);
- }
- })
- .test('appendChild', () {
- for (int i = 0; i < elems.length; i++)
- document.body.append(elems[i]);
- })
- .test('insertBefore', () {
- for (int i = 0; i < elems.length; i++)
- document.body.insertBefore(elems[i], document.body.firstChild);
- })
- .end();
-}
« 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