summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/interfaces/AnimationEffectTiming/getAnimations.html
blob: d96192c9d0116d142fbfbdf059f8c1f0d78e036c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<meta charset=utf-8>
<title>Element.getAnimations tests</title>
<link rel="help" href="http://w3c.github.io/web-animations/#animationeffecttiming">
<link rel="author" title="Ryo Motozawa" href="mailto:motozawa@mozilla-japan.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../testcommon.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';

test(function(t) {
  var div = createDiv(t);
  var anim = div.animate({ opacity: [ 0, 1 ] }, 2000);
  anim.finish();
  assert_equals(div.getAnimations().length, 0, 'animation finished');
  anim.effect.timing.duration += 100000;
  assert_equals(div.getAnimations()[0], anim, 'set duration 102000');
  anim.effect.timing.duration = 0;
  assert_equals(div.getAnimations().length, 0, 'set duration 0');
  anim.effect.timing.duration = 'auto';
  assert_equals(div.getAnimations().length, 0, 'set duration \'auto\'');
}, 'when duration is changed');

test(function(t) {
  var div = createDiv(t);
  var anim = div.animate({ opacity: [ 0, 1 ] }, 2000);

  anim.effect.timing.endDelay = -3000;
  assert_equals(div.getAnimations().length, 0,
    'set negative endDelay so as endTime is less than currentTime');
  anim.effect.timing.endDelay = 1000;
  assert_equals(div.getAnimations()[0], anim,
    'set positive endDelay so as endTime is more than currentTime');

  anim.effect.timing.duration = 1000;
  anim.currentTime = 1500;
  assert_equals(div.getAnimations().length, 0,
    'set currentTime less than endTime');
  anim.effect.timing.endDelay = -500;
  anim.currentTime = 400;
  assert_equals(div.getAnimations()[0], anim,
    'set currentTime less than endTime when endDelay is negative value');
  anim.currentTime = 500;
  assert_equals(div.getAnimations().length, 0,
    'set currentTime same as endTime when endDelay is negative value');
  anim.currentTime = 1000;
  assert_equals(div.getAnimations().length, 0,
    'set currentTime same as duration when endDelay is negative value');
}, 'when endDelay is changed');

test(function(t) {
  var div = createDiv(t);
  var anim = div.animate({ opacity: [ 0, 1 ] }, 2000);
  anim.finish();
  assert_equals(div.getAnimations().length, 0, 'animation finished');
  anim.effect.timing.iterations = 10;
  assert_equals(div.getAnimations()[0], anim, 'set iterations 10');
  anim.effect.timing.iterations = 0;
  assert_equals(div.getAnimations().length, 0, 'set iterations 0');
  anim.effect.timing.iterations = Infinity;
  assert_equals(div.getAnimations().length, 1, 'set iterations Infinity');
}, 'when iterations is changed');

test(function(t) {
  var div = createDiv(t);
  var anim = div.animate({ opacity: [ 0, 1 ] },
                         { duration: 1000, delay: 500, endDelay: -500 });
  assert_equals(div.getAnimations()[0], anim, 'when currentTime 0');
  anim.currentTime = 500;
  assert_equals(div.getAnimations()[0], anim, 'set currentTime 500');
  anim.currentTime = 1000;
  assert_equals(div.getAnimations().length, 0, 'set currentTime 1000');
}, 'when currentTime changed in duration:1000, delay: 500, endDelay: -500');

test(function(t) {
  var div = createDiv(t);
  var anim = div.animate({ opacity: [ 0, 1 ] },
                         { duration: 1000, delay: -500, endDelay: -500 });
  assert_equals(div.getAnimations().length, 0, 'when currentTime 0');
  anim.currentTime = 500;
  assert_equals(div.getAnimations().length, 0, 'set currentTime 500');
  anim.currentTime = 1000;
  assert_equals(div.getAnimations().length, 0, 'set currentTime 1000');
}, 'when currentTime changed in duration:1000, delay: -500, endDelay: -500');


</script>
</body>