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

Unified Diff: client/dom/benchmarks/dromaeo/tests/dom-attr.dart

Issue 9374026: Move dromaeo to third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Moved Dromaeo to third party. Created 8 years, 10 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/dom/benchmarks/dromaeo/tests/dom-attr.dart
diff --git a/client/dom/benchmarks/dromaeo/tests/dom-attr.dart b/client/dom/benchmarks/dromaeo/tests/dom-attr.dart
deleted file mode 100644
index e2cace43cb039e89b194d7d4b0d6279804dcb1f6..0000000000000000000000000000000000000000
--- a/client/dom/benchmarks/dromaeo/tests/dom-attr.dart
+++ /dev/null
@@ -1,32 +0,0 @@
-#library("dom-attr.dart");
-#import("dart:dom");
-#import('runner.dart');
-
-void main() {
- final int num = 10240;
-
- // Try to force real results.
- var ret;
-
- HTMLElement elem = document.getElementById('test1');
- HTMLElement a = document.getElementsByTagName('a')[0];
-
- new Suite(window, 'dom-attr')
- .test('getAttribute', void _() {
- for (int i = 0; i < num; i++)
- ret = elem.getAttribute('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.setAttribute('id', 'foo');
- })
- .test('element.property = value', () {
- for (int i = 0; i < num; i++)
- a.id = 'foo';
- })
- .end();
-}
« no previous file with comments | « client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart ('k') | client/dom/benchmarks/dromaeo/tests/dom-attr.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698