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

Unified Diff: samples/third_party/dromaeo/web/tests/dom-attr-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-attr-html.dart
diff --git a/samples/third_party/dromaeo/web/tests/dom-attr-html.dart b/samples/third_party/dromaeo/web/tests/dom-attr-html.dart
deleted file mode 100644
index f1b103112a9d423cfab43eb5767a8713e23313bf..0000000000000000000000000000000000000000
--- a/samples/third_party/dromaeo/web/tests/dom-attr-html.dart
+++ /dev/null
@@ -1,36 +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 = 10240;
-
- // Try to force real results.
- var ret;
-
- Element elem = document.querySelector('#test1');
- Element a = document.querySelector('a');
-
- new Suite(window, 'dom-attr')
- .test('getAttribute', () {
- 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 | « samples/third_party/dromaeo/web/tests/dom-attr.html ('k') | samples/third_party/dromaeo/web/tests/dom-attr-html.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698