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

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

Issue 10191033: test renaming overhaul: step 4 client tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/localstorage_test.dart ('k') | tests/html/node_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('MeasurementTest'); 5 #library('MeasurementTest');
6 #import('../../../../lib/unittest/unittest.dart'); 6 #import('../../lib/unittest/unittest.dart');
7 #import('../../../../lib/unittest/html_config.dart'); 7 #import('../../lib/unittest/html_config.dart');
8 #import('dart:html'); 8 #import('dart:html');
9 9
10 main() { 10 main() {
11 useHtmlConfiguration(); 11 useHtmlConfiguration();
12 12
13 asyncTest('measurement is async but before setTimout 0', 1, () { 13 asyncTest('measurement is async but before setTimout 0', 1, () {
14 final element = document.body; 14 final element = document.body;
15 bool timeout0 = false; 15 bool timeout0 = false;
16 bool fnComplete = false; 16 bool fnComplete = false;
17 bool animationFrame = false; 17 bool animationFrame = false;
(...skipping 22 matching lines...) Expand all
40 final element = document.body; 40 final element = document.body;
41 rect = element.rect; 41 rect = element.rect;
42 computedStyle = element.computedStyle; 42 computedStyle = element.computedStyle;
43 Expect.isFalse(rect.isComplete); 43 Expect.isFalse(rect.isComplete);
44 Expect.isFalse(computedStyle.isComplete); 44 Expect.isFalse(computedStyle.isComplete);
45 }); 45 });
46 46
47 // TODO(jacobr): add more tests that the results return by measurement 47 // TODO(jacobr): add more tests that the results return by measurement
48 // functions are correct. 48 // functions are correct.
49 } 49 }
OLDNEW
« no previous file with comments | « tests/html/localstorage_test.dart ('k') | tests/html/node_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698