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

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: take2 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
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 10375556b2ba4ec83de784b0b44d8bb9ad6b21e8..be56865ffe16f2216c70ade853a6af84092a8e37 100644
--- a/client/tests/client/html/html_tests.dart
+++ b/client/tests/client/html/html_tests.dart
@@ -2,21 +2,21 @@
// 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('MeasurementTests.dart');
main() {
group('CSSStyleDeclaration', testCSSStyleDeclaration);
group('DocumentFragment', testDocumentFragment);
+ group('Element', testElement);
+ group('Measurement', testMeasurement);
}

Powered by Google App Engine
This is Rietveld 408576698