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

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

Issue 12086028: Fix up dromaeo after lib v2 merge and add Dromaeo smoketest to prevent future (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/tests/dom-modify-htmlidiomatic.dart
diff --git a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart b/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
deleted file mode 100644
index 9da20970d291609496fb9dd8bb916c74e105b4ca..0000000000000000000000000000000000000000
--- a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
+++ /dev/null
@@ -1,69 +0,0 @@
-library dromaeo;
-import 'dart:html';
-import 'dart:json' as json;
-import 'dart:math' as Math;
-part 'Common.dart';
-part 'RunnerSuite.dart';
-
-void main() {
- final int num = 400;
-
- 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 = "$str${new String.fromCharCodes([((25 * Math.random()) + 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.nodes.add(elems[i]);
- })
- .test('insertBefore', () {
- for (int i = 0; i < elems.length; i++)
- document.body.insertBefore(elems[i], document.body.nodes.first);
- })
- .end();
-}

Powered by Google App Engine
This is Rietveld 408576698