| 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 void testMeasurement() { | 5 #library('MeasurementTest'); |
| 6 #import('../../../../lib/unittest/unittest.dart'); |
| 7 #import('../../../../lib/unittest/html_config.dart'); |
| 8 #import('dart:html'); |
| 9 |
| 10 main() { |
| 11 useHtmlConfiguration(); |
| 12 |
| 6 asyncTest('measurement is async but before setTimout 0', 1, () { | 13 asyncTest('measurement is async but before setTimout 0', 1, () { |
| 7 final element = document.body; | 14 final element = document.body; |
| 8 bool timeout0 = false; | 15 bool timeout0 = false; |
| 9 bool fnComplete = false; | 16 bool fnComplete = false; |
| 10 bool animationFrame = false; | 17 bool animationFrame = false; |
| 11 window.setTimeout(() { timeout0 = true; }, 0); | 18 window.setTimeout(() { timeout0 = true; }, 0); |
| 12 final computedStyle = element.computedStyle; | 19 final computedStyle = element.computedStyle; |
| 13 computedStyle.then((style) { | 20 computedStyle.then((style) { |
| 14 Expect.equals(style.getPropertyValue('left'), 'auto'); | 21 Expect.equals(style.getPropertyValue('left'), 'auto'); |
| 15 Expect.isTrue(fnComplete); | 22 Expect.isTrue(fnComplete); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 33 final element = document.body; | 40 final element = document.body; |
| 34 rect = element.rect; | 41 rect = element.rect; |
| 35 computedStyle = element.computedStyle; | 42 computedStyle = element.computedStyle; |
| 36 Expect.isFalse(rect.isComplete); | 43 Expect.isFalse(rect.isComplete); |
| 37 Expect.isFalse(computedStyle.isComplete); | 44 Expect.isFalse(computedStyle.isComplete); |
| 38 }); | 45 }); |
| 39 | 46 |
| 40 // TODO(jacobr): add more tests that the results return by measurement | 47 // TODO(jacobr): add more tests that the results return by measurement |
| 41 // functions are correct. | 48 // functions are correct. |
| 42 } | 49 } |
| OLD | NEW |