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 ElementTest; | 5 library ElementTest; |
6 import '../../pkg/unittest/lib/unittest.dart'; | 6 import '../../pkg/unittest/lib/unittest.dart'; |
7 import '../../pkg/unittest/lib/html_individual_config.dart'; | 7 import '../../pkg/unittest/lib/html_individual_config.dart'; |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:svg' as svg; | 10 import 'dart:svg' as svg; |
11 import 'utils.dart'; | 11 import 'utils.dart'; |
12 | 12 |
13 expectLargeRect(Rect rect) { | 13 expectLargeRect(Rectangle rect) { |
14 expect(rect.top, 0); | 14 expect(rect.top, 0); |
15 expect(rect.left, 0); | 15 expect(rect.left, 0); |
16 expect(rect.width, greaterThan(100)); | 16 expect(rect.width, greaterThan(100)); |
17 expect(rect.height, greaterThan(100)); | 17 expect(rect.height, greaterThan(100)); |
18 expect(rect.bottom, rect.top + rect.height); | 18 expect(rect.bottom, rect.top + rect.height); |
19 expect(rect.right, rect.left + rect.width); | 19 expect(rect.right, rect.left + rect.width); |
20 } | 20 } |
21 | 21 |
22 void testUnsupported(String name, void f()) { | 22 void testUnsupported(String name, void f()) { |
23 test(name, () { | 23 test(name, () { |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 | 895 |
896 test('sublist', () { | 896 test('sublist', () { |
897 var range = makeElementList().sublist(1, 3); | 897 var range = makeElementList().sublist(1, 3); |
898 expect(range.length, 2); | 898 expect(range.length, 2); |
899 expect(range[0], isBRElement); | 899 expect(range[0], isBRElement); |
900 expect(range[1], isBRElement); | 900 expect(range[1], isBRElement); |
901 }); | 901 }); |
902 | 902 |
903 }); | 903 }); |
904 } | 904 } |
OLD | NEW |