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

Unified Diff: client/tests/client/html/html_tests.dart

Issue 8363040: Implement measurement using futures (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove duplicated imports from html.dart Created 9 years, 2 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
« no previous file with comments | « client/tests/client/html/MeasurementTests.dart ('k') | client/tests/client/layout/GridLayoutDemo.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/html/html_tests.dart
diff --git a/client/tests/client/html/html_tests.dart b/client/tests/client/html/html_tests.dart
index a2e64332e4c6f16a3cf8684266b736c35c756f8a..184eb24edae058724dc7f4f3fbfd8243b0e4f842 100644
--- a/client/tests/client/html/html_tests.dart
+++ b/client/tests/client/html/html_tests.dart
@@ -2,23 +2,23 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#library('layout_tests');
+#library('html_tests');
#import('../../../base/base.dart');
#import('../../../html/html.dart');
#import('../../../testing/unittest/unittest.dart');
#import('../../../util/utilslib.dart');
-// Ugly, temporary hack: this import disables implicit
-// import of dart:dom by Dartium.
-#import('dart:html', prefix: 'no_use');
-
#source('CSSStyleDeclarationTests.dart');
#source('DocumentFragmentTests.dart');
+#source('ElementTests.dart');
#source('EventTests.dart');
+#source('MeasurementTests.dart');
main() {
group('CSSStyleDeclaration', testCSSStyleDeclaration);
group('DocumentFragment', testDocumentFragment);
+ group('Element', testElement);
group('Event', testEvents);
+ group('Measurement', testMeasurement);
}
« no previous file with comments | « client/tests/client/html/MeasurementTests.dart ('k') | client/tests/client/layout/GridLayoutDemo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698