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

Unified Diff: client/html/benchmarks/dromaeo/tests/DomAttr.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/DomAttr.dart
===================================================================
--- client/html/benchmarks/dromaeo/tests/DomAttr.dart (revision 5796)
+++ client/html/benchmarks/dromaeo/tests/DomAttr.dart (working copy)
@@ -1,31 +0,0 @@
-class Main {
- static void main() {
- final int num = 10240;
-
- // Try to force real results.
- var ret;
- window.on.load.add((Event evt) {
- Element elem = document.query('#test1');
- Element a = document.query('a');
-
- new Suite('dom-attr')
- .test('getAttribute', void _() {
- for (int i = 0; i < num; i++)
- ret = elem.attributes['id'];
- })
- .test('element.property', () {
- for (int i = 0; i < num * 2; i++)
- ret = elem.id;
- })
- .test('setAttribute', () {
- for (int i = 0; i < num; i++)
- a.attributes['id'] = 'foo';
- })
- .test('element.property = value', () {
- for (int i = 0; i < num; i++)
- a.id = 'foo';
- })
- .end();
- });
- }
-}
« no previous file with comments | « client/html/benchmarks/dromaeo/tests/Common.dart ('k') | client/html/benchmarks/dromaeo/tests/DomModify.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698