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

Side by Side Diff: tests/html/dromaeo_noop/dromaeo_smoke.dart

Issue 12254046: Reapply setTimeout change. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/html/cssstyledeclaration_test.dart ('k') | tests/html/history_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dromaeo; 5 library dromaeo;
6 import 'dart:async';
6 import 'dart:html'; 7 import 'dart:html';
7 import 'dart:json' as json; 8 import 'dart:json' as json;
8 import '../../../samples/third_party/dromaeo/common/common.dart'; 9 import '../../../samples/third_party/dromaeo/common/common.dart';
9 import 'dart:math' as Math; 10 import 'dart:math' as Math;
10 import '../../../pkg/unittest/lib/unittest.dart'; 11 import '../../../pkg/unittest/lib/unittest.dart';
11 import '../../../pkg/unittest/lib/html_config.dart'; 12 import '../../../pkg/unittest/lib/html_config.dart';
12 part '../../../samples/third_party/dromaeo/tests/Common.dart'; 13 part '../../../samples/third_party/dromaeo/tests/Common.dart';
13 part '../../../samples/third_party/dromaeo/tests/RunnerSuite.dart'; 14 part '../../../samples/third_party/dromaeo/tests/RunnerSuite.dart';
14 15
15 /** 16 /**
16 * The smoketest equivalent of an individual test run, much like 17 * The smoketest equivalent of an individual test run, much like
17 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others. 18 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others.
18 */ 19 */
19 void main() { 20 void main() {
20 new Suite(window, 'dom-nothing') 21 new Suite(window, 'dom-nothing')
21 .prep(() {}) 22 .prep(() {})
22 .test('no-op', () {}) 23 .test('no-op', () {})
23 .end(); 24 .end();
24 } 25 }
25 26
OLDNEW
« no previous file with comments | « tests/html/cssstyledeclaration_test.dart ('k') | tests/html/history_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698