OLD | NEW |
---|---|
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #library('html_tests'); | 5 #library('html_tests'); |
6 | 6 |
7 #import('dart:html'); | 7 #import('dart:html'); |
8 #import('../../../../lib/unittest/unittest.dart'); | 8 #import('../../lib/unittest/unittest.dart'); |
9 #import('../../../../lib/unittest/html_config.dart'); | 9 #import('../../lib/unittest/html_config.dart'); |
10 | 10 |
11 #source('util.dart'); | 11 #source('util.dart'); |
12 #source('CSSStyleDeclarationTests.dart'); | 12 #source('css_style_declaration_tests.dart'); |
Emily Fortuna
2012/04/26 16:00:51
Vijay has a CL to break this test into separate pi
Siggi Cherem (dart-lang)
2012/04/26 18:07:50
Done.
| |
13 #source('DocumentFragmentTests.dart'); | 13 #source('document_fragment_tests.dart'); |
14 #source('ElementTests.dart'); | 14 #source('element_tests.dart'); |
15 // #source('EventTests.dart'); | 15 // #source('event_tests.dart'); |
16 #source('LocalStorageTests.dart'); | 16 #source('local_storage_tests.dart'); |
17 #source('MeasurementTests.dart'); | 17 #source('measurement_tests.dart'); |
18 #source('NodeTests.dart'); | 18 #source('node_tests.dart'); |
19 #source('SVGElementTests.dart'); | 19 #source('svg_element_tests.dart'); |
20 #source('XHRTests.dart'); | 20 #source('xhr_tests.dart'); |
21 | 21 |
22 // TODO(nweiz): enable these once the XML document work is ported over. | 22 // TODO(nweiz): enable these once the XML document work is ported over. |
23 // #source('XMLDocumentTests.dart'); | 23 // #source('xml_document_tests.dart'); |
24 // #source('XMLElementTests.dart'); | 24 // #source('xml_element_tests.dart'); |
25 | 25 |
26 main() { | 26 main() { |
27 useHtmlConfiguration(); | 27 useHtmlConfiguration(); |
28 group('CSSStyleDeclaration', testCSSStyleDeclaration); | 28 group('CSSStyleDeclaration', testCSSStyleDeclaration); |
29 group('DocumentFragment', testDocumentFragment); | 29 group('DocumentFragment', testDocumentFragment); |
30 group('Element', testElement); | 30 group('Element', testElement); |
31 // TODO(nweiz): enable once event constructors are ported -- Dart issue 1996. | 31 // TODO(nweiz): enable once event constructors are ported -- Dart issue 1996. |
32 // group('Event', testEvents); | 32 // group('Event', testEvents); |
33 group('LocalStorage', testLocalStorage); | 33 group('LocalStorage', testLocalStorage); |
34 group('Measurement', testMeasurement); | 34 group('Measurement', testMeasurement); |
35 group('Node', testNode); | 35 group('Node', testNode); |
36 group('SVGElement', testSVGElement); | 36 group('SVGElement', testSVGElement); |
37 group('XHR', testXHR); | 37 group('XHR', testXHR); |
38 | 38 |
39 // group('DocumentFragment', testDocumentFragment); | 39 // group('DocumentFragment', testDocumentFragment); |
40 // group('XMLDocument', testXMLDocument); | 40 // group('XMLDocument', testXMLDocument); |
41 // group('XMLElement', testXMLElement); | 41 // group('XMLElement', testXMLElement); |
42 } | 42 } |
OLD | NEW |