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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
<!DOCTYPE html>
<title>The various animation longhands with progress based animations</title>
<link rel="help" src="https://drafts.csswg.org/css-animations-2">
<link rel="help" src="https://github.com/w3c/csswg-drafts/issues/4862">
<link rel="help" src="https://github.com/w3c/csswg-drafts/issues/6674">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<script src="support/testcommon.js"></script>
<style>
@keyframes anim {
from { translate: 0px; }
to { translate: 100px; }
}
#container {
width: 300px;
height: 300px;
overflow: scroll;
}
#target {
width: 100px;
height: 100px;
translate: none;
}
</style>
<body>
<div id="log"></div>
<script>
"use strict";
setup(assert_implements_animation_timeline);
const assert_translate_equals = (target, expected, description) => {
assert_approx_equals(parseFloat(getComputedStyle(target).translate), parseFloat(expected), 0.0001, description);
};
const createTargetAndScroller = function(t) {
let container = document.createElement('div');
container.id = 'container';
let target = document.createElement('div');
target.id = 'target';
let content = document.createElement('div');
content.style.blockSize = '100%';
// The height of target is 100px and the content is 100%, so the scroll range
// is [0, 100].
// <div id='container'>
// <div id='target'></div>
// <div style='block-size: 100%;'></div>
// </div>
document.body.appendChild(container);
container.appendChild(target);
container.appendChild(content);
if (t && typeof t.add_cleanup === 'function') {
t.add_cleanup(() => {
content.remove();
target.remove();
container.remove();
});
}
return [target, container];
};
async function scrollTop(element, value) {
element.scrollTop = value;
await waitForNextFrame();
}
// ------------------------------
// Test animation-duration
// ------------------------------
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
});
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '25px');
}, 'animation-duration');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
target.style.animation = '0s linear anim forwards';
target.style.animationTimeline = 'scroll(nearest)';
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '100px');
}, 'animation-duration: 0s');
// ------------------------------
// Test animation-iteration-count
// ------------------------------
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
});
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '25px');
// Let animation become 50% in the 1st iteration.
target.style.animationIterationCount = '2';
await waitForCSSScrollTimelineStyle();
assert_translate_equals(target, '50px');
// Let animation become 0% in the 2nd iteration.
target.style.animationIterationCount = '4';
await waitForCSSScrollTimelineStyle();
assert_translate_equals(target, '0px');
}, 'animation-iteration-count');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim forwards';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationIterationCount = '0';
});
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '0px');
}, 'animation-iteration-count: 0');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim forwards';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationIterationCount = 'infinite';
});
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '100px');
}, 'animation-iteration-count: infinite');
// ------------------------------
// Test animation-direction
// ------------------------------
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
});
await scrollTop(scroller, 25) // [0, 100].
assert_translate_equals(target, '25px');
}, 'animation-direction: normal');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationDirection = 'reverse';
});
await scrollTop(scroller, 25); // 25% in the reversing direction.
assert_translate_equals(target, '75px');
}, 'animation-direction: reverse');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationIterationCount = '2';
target.style.animationDirection = 'alternate';
});
await scrollTop(scroller, 10); // 20% in the 1st iteration.
assert_translate_equals(target, '20px');
await scrollTop(scroller, 60); // 20% in the 2nd iteration (reversing direction).
assert_translate_equals(target, '80px');
}, 'animation-direction: alternate');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationIterationCount = '2';
target.style.animationDirection = 'alternate-reverse';
});
await scrollTop(scroller, 10); // 20% in the 1st iteration (reversing direction).
assert_translate_equals(target, '80px');
await scrollTop(scroller, 60); // 20% in the 2nd iteration.
assert_translate_equals(target, '20px');
}, 'animation-direction: alternate-reverse');
// ------------------------------
// Test animation-delay
// ------------------------------
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
});
await scrollTop(scroller, 25); // [0, 100].
assert_translate_equals(target, '25px');
// (start delay: 10s) (duration: 10s)
// before active
// |--------------------|--------------------|
// 0px 50px 100px (The scroller)
// 0% 100% (The iteration progress)
// Let animation be in before phase.
target.style.animationDelay = '10s';
target.style.animationDelayStart = '10s'; // crbug.com/1375994
assert_translate_equals(target, 'none');
await scrollTop(scroller, 50); // The animation enters active phase.
assert_translate_equals(target, '0px');
await scrollTop(scroller, 75); // The ieration progress is 50%.
assert_translate_equals(target, '50px');
}, 'animation-delay with a positive value');
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
});
// active
// |--------------------|
// 0px 100px (The scroller)
// 50% 100% (The iteration progress)
await scrollTop(scroller, 20); // [0, 100].
target.style.animationDelay = '-5s';
target.style.animationDelayStart = '-5s'; // crbug.com/1375994
await waitForCSSScrollTimelineStyle();
assert_translate_equals(target, '60px');
}, 'animation-delay with a negative value');
// ------------------------------
// Test animation-fill-mode
// ------------------------------
promise_test(async t => {
let [target, scroller] = createTargetAndScroller(t);
await runAndWaitForFrameUpdate(() => {
target.style.animation = '10s linear anim';
target.style.animationTimeline = 'scroll(nearest)';
target.style.animationDelay = '10s';
target.style.animationDelayStart = '10s'; // crbug.com/1375994
});
await scrollTop(scroller, 25);
assert_translate_equals(target, 'none');
target.style.animationFillMode = 'backwards';
await waitForCSSScrollTimelineStyle();
assert_translate_equals(target, '0px');
}, 'animation-fill-mode');
</script>
</body>
|