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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>Tests for seeking using Animation.currentTime</title>
<style>
.animated-div {
margin-left: -10px;
animation-timing-function: linear ! important;
}
@keyframes anim {
from { margin-left: 0px; }
to { margin-left: 100px; }
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../testcommon.js"></script>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
'use strict';
function assert_marginLeft_equals(target, expect, description) {
var marginLeft = parseFloat(getComputedStyle(target).marginLeft);
assert_equals(marginLeft, expect, description);
}
promise_test(function(t) {
var div = addDiv(t, {'class': 'animated-div'});
div.style.animation = "anim 100s";
var animation = div.getAnimations()[0];
return animation.ready.then(function() {
animation.currentTime = 90 * MS_PER_SEC;
assert_marginLeft_equals(div, 90,
'Computed style is updated when seeking forwards in active interval');
animation.currentTime = 10 * MS_PER_SEC;
assert_marginLeft_equals(div, 10,
'Computed style is updated when seeking backwards in active interval');
});
}, 'Seeking forwards and backward in active interval');
promise_test(function(t) {
var div = addDiv(t, {'class': 'animated-div'});
div.style.animation = "anim 100s 100s";
var animation = div.getAnimations()[0];
return animation.ready.then(function() {
assert_marginLeft_equals(div, -10,
'Computed style is unaffected in before phase with no backwards fill');
// before -> active (non-active -> active)
animation.currentTime = 150 * MS_PER_SEC;
assert_marginLeft_equals(div, 50,
'Computed style is updated when seeking forwards from ' +
'not \'in effect\' to \'in effect\' state');
});
}, 'Seeking to non-\'in effect\' from \'in effect\' (before -> active)');
promise_test(function(t) {
var div = addDiv(t, {'class': 'animated-div'});
div.style.animation = "anim 100s 100s";
var animation = div.getAnimations()[0];
return animation.ready.then(function() {
// move to after phase
animation.currentTime = 250 * MS_PER_SEC;
assert_marginLeft_equals(div, -10,
'Computed style is unaffected in after phase with no forwards fill');
// after -> active (non-active -> active)
animation.currentTime = 150 * MS_PER_SEC;
assert_marginLeft_equals(div, 50,
'Computed style is updated when seeking backwards from ' +
'not \'in effect\' to \'in effect\' state');
});
}, 'Seeking to non-\'in effect\' from \'in effect\' (after -> active)');
promise_test(function(t) {
var div = addDiv(t, {'class': 'animated-div'});
div.style.animation = "anim 100s 100s";
var animation = div.getAnimations()[0];
return animation.ready.then(function() {
// move to active phase
animation.currentTime = 150 * MS_PER_SEC;
assert_marginLeft_equals(div, 50,
'Computed value is set during active phase');
// active -> before
animation.currentTime = 50 * MS_PER_SEC;
assert_marginLeft_equals(div, -10,
'Computed value is not effected after seeking backwards from ' +
'\'in effect\' to not \'in effect\' state');
});
}, 'Seeking to \'in effect\' from non-\'in effect\' (active -> before)');
promise_test(function(t) {
var div = addDiv(t, {'class': 'animated-div'});
div.style.animation = "anim 100s 100s";
var animation = div.getAnimations()[0];
return animation.ready.then(function() {
// move to active phase
animation.currentTime = 150 * MS_PER_SEC;
assert_marginLeft_equals(div, 50,
'Computed value is set during active phase');
// active -> after
animation.currentTime = 250 * MS_PER_SEC;
assert_marginLeft_equals(div, -10,
'Computed value is not affected after seeking forwards from ' +
'\'in effect\' to not \'in effect\' state');
});
}, 'Seeking to \'in effect\' from non-\'in effect\' (active -> after)');
</script>
</body>
</html>
|