Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: tests/html/element_test.dart

Issue 25785003: "Reverting 28184" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/html/client_rect_test.dart ('k') | tests/html/point_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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(Rectangle rect) { 13 expectLargeRect(Rect 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
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 }
OLDNEW
« no previous file with comments | « tests/html/client_rect_test.dart ('k') | tests/html/point_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698