| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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('XMLElementTest'); | 5 #library('XMLElementTest'); |
| 6 #import('../../pkg/unittest/unittest.dart'); | 6 #import('../../pkg/unittest/unittest.dart'); |
| 7 #import('../../pkg/unittest/html_config.dart'); | 7 #import('../../pkg/unittest/html_config.dart'); |
| 8 #import('dart:html'); | 8 #import('dart:html'); |
| 9 | 9 |
| 10 main() { | 10 main() { |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 makeClassSet().every((c) => c.contains('a'))); | 129 makeClassSet().every((c) => c.contains('a'))); |
| 130 }); | 130 }); |
| 131 | 131 |
| 132 test('some', () { | 132 test('some', () { |
| 133 Expect.isTrue( | 133 Expect.isTrue( |
| 134 makeClassSet().some((c) => c.contains('a'))); | 134 makeClassSet().some((c) => c.contains('a'))); |
| 135 Expect.isFalse(makeClassSet().some((c) => c is num)); | 135 Expect.isFalse(makeClassSet().some((c) => c is num)); |
| 136 }); | 136 }); |
| 137 | 137 |
| 138 test('isEmpty', () { | 138 test('isEmpty', () { |
| 139 Expect.isFalse(makeClassSet().isEmpty()); | 139 Expect.isFalse(makeClassSet().isEmpty); |
| 140 Expect.isTrue(makeElement().classes.isEmpty()); | 140 Expect.isTrue(makeElement().classes.isEmpty); |
| 141 }); | 141 }); |
| 142 | 142 |
| 143 test('length', () { | 143 test('length', () { |
| 144 Expect.equals(3, makeClassSet().length); | 144 Expect.equals(3, makeClassSet().length); |
| 145 Expect.equals(0, makeElement().classes.length); | 145 Expect.equals(0, makeElement().classes.length); |
| 146 }); | 146 }); |
| 147 | 147 |
| 148 test('contains', () { | 148 test('contains', () { |
| 149 Expect.isTrue(makeClassSet().contains('foo')); | 149 Expect.isTrue(makeClassSet().contains('foo')); |
| 150 Expect.isFalse(makeClassSet().contains('qux')); | 150 Expect.isFalse(makeClassSet().contains('qux')); |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 }); | 563 }); |
| 564 }); | 564 }); |
| 565 | 565 |
| 566 test('default rect values', () { | 566 test('default rect values', () { |
| 567 makeElement().rect.then( | 567 makeElement().rect.then( |
| 568 expectAsync1(ElementRect rect) { | 568 expectAsync1(ElementRect rect) { |
| 569 expectEmptyRect(rect.client); | 569 expectEmptyRect(rect.client); |
| 570 expectEmptyRect(rect.offset); | 570 expectEmptyRect(rect.offset); |
| 571 expectEmptyRect(rect.scroll); | 571 expectEmptyRect(rect.scroll); |
| 572 expectEmptyRect(rect.bounding); | 572 expectEmptyRect(rect.bounding); |
| 573 Expect.isTrue(rect.clientRects.isEmpty()); | 573 Expect.isTrue(rect.clientRects.isEmpty); |
| 574 })); | 574 })); |
| 575 }); | 575 }); |
| 576 } | 576 } |
| OLD | NEW |