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 50cb4c44b176bcffae1b46c23957bdd4409a78f6..57b426ad91c332908977f88469b804e74480eb1c 100644 |
| --- a/client/tests/client/html/html_tests.dart |
| +++ b/client/tests/client/html/html_tests.dart |
| @@ -5,30 +5,29 @@ |
| #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'); |
|
vsm
2012/03/05 21:37:36
Do you have bugs filed for restoring these?
Jacob
2012/03/05 23:31:49
Filed bugs and updated TODO msgs
|
| #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); |
| + // group('DocumentFragment', testDocumentFragment); |
| group('Element', testElement); |
| - group('Event', testEvents); |
| - group('Lists', testLists); |
| + // TODO(nweiz): enable once event constructors are ported. |
| + // group('Event', testEvents); |
| group('LocalStorage', testLocalStorage); |
| group('Measurement', testMeasurement); |
| group('Node', testNode); |
| - group('SVGElement', testSVGElement); |
| + // TODO(nweiz): enable once this code is ported. |
| + // group('SVGElement', testSVGElement); |
| group('XHR', testXHR); |
| } |