| 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 'package:unittest/unittest.dart'; |
| 7 import '../../pkg/unittest/lib/html_individual_config.dart'; | 7 import 'package:unittest/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(Rectangle 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)); |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 | 969 |
| 970 test('sublist', () { | 970 test('sublist', () { |
| 971 var range = makeElementList().sublist(1, 3); | 971 var range = makeElementList().sublist(1, 3); |
| 972 expect(range.length, 2); | 972 expect(range.length, 2); |
| 973 expect(range[0], isBRElement); | 973 expect(range[0], isBRElement); |
| 974 expect(range[1], isBRElement); | 974 expect(range[1], isBRElement); |
| 975 }); | 975 }); |
| 976 | 976 |
| 977 }); | 977 }); |
| 978 } | 978 } |
| OLD | NEW |