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("expression_tests"); | 5 library expression_tests; |
6 #import("../../css/css.dart"); | 6 import '../../css/css.dart'; |
7 | 7 |
8 main() { | 8 main() { |
9 initCssWorld(); | 9 initCssWorld(); |
10 | 10 |
11 testClass(); | 11 testClass(); |
12 testId(); | 12 testId(); |
13 testElement(); | 13 testElement(); |
14 testNamespace(); | 14 testNamespace(); |
15 testSelectorGroups(); | 15 testSelectorGroups(); |
16 testCombinator(); | 16 testCombinator(); |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 // TODO(terry): Implement | 515 // TODO(terry): Implement |
516 } | 516 } |
517 | 517 |
518 void testAttribute() { | 518 void testAttribute() { |
519 // TODO(terry): Implement | 519 // TODO(terry): Implement |
520 } | 520 } |
521 | 521 |
522 void testNegation() { | 522 void testNegation() { |
523 // TODO(terry): Implement | 523 // TODO(terry): Implement |
524 } | 524 } |
OLD | NEW |