| 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);
|
| }
|
|
|