Chromium Code Reviews| 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'); |
|
nweiz
2011/10/28 03:58:38
Haha, oops.
Jacob
2011/10/31 22:09:50
yep :)
|
| #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); |
| } |