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

Unified Diff: client/html/benchmarks/dromaeo/tests/DomModify.dart

Issue 9845043: Rename client/{dom,html} to lib/{dom,html} . (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: client/html/benchmarks/dromaeo/tests/DomModify.dart
===================================================================
--- client/html/benchmarks/dromaeo/tests/DomModify.dart (revision 5796)
+++ client/html/benchmarks/dromaeo/tests/DomModify.dart (working copy)
@@ -1,67 +0,0 @@
-class Main {
- static 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 += new String.fromCharCodes([((25 * Math.random()) + 97).toInt()]);
- }
-
- Array<Node> elems = new Array<Node>();
-
- // Try to force real results.
- var ret;
- window.on.load.add((Event evt) {
- final htmlstr = document.body.innerHTML;
-
- new Suite('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 Array<Node>();
- final telems = document.body.nodes;
- for (int i = 0; i < telems.length; i++) {
- elems.add(telems[i]);
- }
- })
- .test('clone', () {
- for (int i = 0; i < elems.length; i++) {
- // not supported by Dart... this will intentionally throw an exception.
- // TODO(jacobr): find the right solution.
- ret = elems[i].dynamic.clone(false);
- ret = elems[i].dynamic.clone(true);
- ret = elems[i].dynamic.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();
- });
- }
-}
« no previous file with comments | « client/html/benchmarks/dromaeo/tests/DomAttr.dart ('k') | client/html/benchmarks/dromaeo/tests/DomQuery.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698