| 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 50cb4c44b176bcffae1b46c23957bdd4409a78f6..312af61e0fc648db9ba16be68599c7901f705647 100644
|
| --- a/client/tests/client/html/html_tests.dart
|
| +++ b/client/tests/client/html/html_tests.dart
|
| @@ -5,30 +5,30 @@
|
| #library('html_tests');
|
|
|
| #import('dart:html');
|
| -#import('dart:htmlimpl');
|
| -#import('../../../testing/unittest/unittest.dart');
|
| +#import('../../../testing/unittest/unittest_html.dart');
|
|
|
| #source('util.dart');
|
| #source('CSSStyleDeclarationTests.dart');
|
| -#source('DocumentFragmentTests.dart');
|
| +// #source('DocumentFragmentTests.dart');
|
| #source('ElementTests.dart');
|
| -#source('EventTests.dart');
|
| -#source('ListsTests.dart');
|
| +// #source('EventTests.dart');
|
| #source('LocalStorageTests.dart');
|
| #source('MeasurementTests.dart');
|
| #source('NodeTests.dart');
|
| -#source('SVGElementTests.dart');
|
| +// #source('SVGElementTests.dart');
|
| #source('XHRTests.dart');
|
|
|
| main() {
|
| group('CSSStyleDeclaration', testCSSStyleDeclaration);
|
| - group('DocumentFragment', testDocumentFragment);
|
| + // TODO(nwiez): enable once DocumentFragment is ready -- Dart issue 1998.
|
| + // group('DocumentFragment', testDocumentFragment);
|
| group('Element', testElement);
|
| - group('Event', testEvents);
|
| - group('Lists', testLists);
|
| + // TODO(nweiz): enable once event constructors are ported -- Dart issue 1996.
|
| + // group('Event', testEvents);
|
| group('LocalStorage', testLocalStorage);
|
| group('Measurement', testMeasurement);
|
| group('Node', testNode);
|
| - group('SVGElement', testSVGElement);
|
| + // TODO(nweiz): enable once this code is ported -- Dart issue 1997.
|
| + // group('SVGElement', testSVGElement);
|
| group('XHR', testXHR);
|
| }
|
|
|