| 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('layout_tests'); | 5 #library('layout_tests'); |
| 6 | 6 |
| 7 #import('../../../base/base.dart'); | 7 #import('../../../base/base.dart'); |
| 8 #import('../../../html/html.dart'); | 8 #import('../../../html/html.dart'); |
| 9 #import('../../../testing/unittest/unittest.dart'); | 9 #import('../../../testing/unittest/unittest.dart'); |
| 10 #import('../../../util/utilslib.dart'); | 10 #import('../../../util/utilslib.dart'); |
| 11 | 11 |
| 12 // Ugly, temporary hack: this import disables implicit | 12 // Ugly, temporary hack: this import disables implicit |
| 13 // import of dart:dom by Dartium. | 13 // import of dart:dom by Dartium. |
| 14 #import('dart:html', prefix: 'no_use'); | 14 #import('dart:html', prefix: 'no_use'); |
| 15 | 15 |
| 16 #source('CSSStyleDeclarationTests.dart'); | 16 #source('CSSStyleDeclarationTests.dart'); |
| 17 #source('DocumentFragmentTests.dart'); | 17 #source('DocumentFragmentTests.dart'); |
| 18 #source('EventTests.dart'); |
| 18 | 19 |
| 19 main() { | 20 main() { |
| 20 group('CSSStyleDeclaration', testCSSStyleDeclaration); | 21 group('CSSStyleDeclaration', testCSSStyleDeclaration); |
| 21 group('DocumentFragment', testDocumentFragment); | 22 group('DocumentFragment', testDocumentFragment); |
| 23 group('Event', testEvents); |
| 22 } | 24 } |
| OLD | NEW |