| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 element_animate_test; | 5 library element_animate_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 import 'package:unittest/html_individual_config.dart'; | 9 import 'package:unittest/html_individual_config.dart'; |
| 10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
| 11 | 11 |
| 12 main() { | 12 main() { |
| 13 useHtmlIndividualConfiguration(); | 13 useHtmlIndividualConfiguration(); |
| 14 | 14 |
| 15 group('animate_supported', () { | 15 group('animate_supported', () { |
| 16 test('supported', () { | 16 test('supported', () { |
| 17 expect(Notification.supported, true); | 17 expect(AnimationPlayer.supported, true); |
| 18 }); | 18 }); |
| 19 }); | 19 }); |
| 20 | 20 |
| 21 group('simple_timing', () { | 21 group('simple_timing', () { |
| 22 test('simple timing', () { | 22 test('simple timing', () { |
| 23 var body = document.body; | 23 var body = document.body; |
| 24 var opacity = num.parse(body.getComputedStyle().opacity); | 24 var opacity = num.parse(body.getComputedStyle().opacity); |
| 25 body.animate([{"opacity": 100}, {"opacity": 0}], 100); | 25 body.animate([{"opacity": 100}, {"opacity": 0}], 100); |
| 26 var newOpacity = num.parse(body.getComputedStyle().opacity); | 26 var newOpacity = num.parse(body.getComputedStyle().opacity); |
| 27 expect(newOpacity < opacity, isTrue); | 27 expect(newOpacity < opacity, isTrue); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 47 test('omit timing', () { | 47 test('omit timing', () { |
| 48 var body = document.body; | 48 var body = document.body; |
| 49 var player = body.animate([ | 49 var player = body.animate([ |
| 50 {"transform": "translate(100px, -100%)"}, | 50 {"transform": "translate(100px, -100%)"}, |
| 51 {"transform": "translate(400px, 500px)"} | 51 {"transform": "translate(400px, 500px)"} |
| 52 ]); | 52 ]); |
| 53 player.on['finish'].listen(expectAsync((_) => 'done')); | 53 player.on['finish'].listen(expectAsync((_) => 'done')); |
| 54 }); | 54 }); |
| 55 }); | 55 }); |
| 56 } | 56 } |
| OLD | NEW |