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

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

Issue 1031723002: Test for the correct class in AnimationPlayer.supported and fix Dartium suppressions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 | « no previous file | tests/html/html.status » ('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) 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
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 }
OLDNEW
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698