| 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 | 11 |
| 12 expectLargeRect(ClientRect rect) { | 12 expectLargeRect(Rect rect) { |
| 13 expect(rect.top, 0); | 13 expect(rect.top, 0); |
| 14 expect(rect.left, 0); | 14 expect(rect.left, 0); |
| 15 expect(rect.width, greaterThan(100)); | 15 expect(rect.width, greaterThan(100)); |
| 16 expect(rect.height, greaterThan(100)); | 16 expect(rect.height, greaterThan(100)); |
| 17 expect(rect.bottom, rect.top + rect.height); | 17 expect(rect.bottom, rect.top + rect.height); |
| 18 expect(rect.right, rect.left + rect.width); | 18 expect(rect.right, rect.left + rect.width); |
| 19 } | 19 } |
| 20 | 20 |
| 21 main() { | 21 main() { |
| 22 useHtmlIndividualConfiguration(); | 22 useHtmlIndividualConfiguration(); |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 }); | 641 }); |
| 642 | 642 |
| 643 test('getRange', () { | 643 test('getRange', () { |
| 644 var range = makeElList().getRange(1, 2); | 644 var range = makeElList().getRange(1, 2); |
| 645 expect(range, isElementList); | 645 expect(range, isElementList); |
| 646 expect(range[0], isImageElement); | 646 expect(range[0], isImageElement); |
| 647 expect(range[1], isInputElement); | 647 expect(range[1], isInputElement); |
| 648 }); | 648 }); |
| 649 }); | 649 }); |
| 650 } | 650 } |
| OLD | NEW |