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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
<!DOCTYPE html>
<title>The animation-timeline: view() notation</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1">
<link rel="help" src="https://drafts.csswg.org/scroll-animations-1/#view-notation">
<link rel="help" src="https://github.com/w3c/csswg-drafts/issues/7587">
<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 fade-in-out-without-timeline-range {
0% { opacity: 0; }
40% { opacity: 1; }
60% { opacity: 1; }
100% { opacity: 0; }
}
@keyframes fade-out-without-timeline-range {
0% { opacity: 1; }
100% { opacity: 0; }
}
@keyframes change-font-size-without-timeline-range {
0% { font-size: 10px; }
100% { font-size: 30px; }
}
@keyframes fade-in-out {
entry 0% { opacity: 0; }
entry 100% { opacity: 1; }
exit 0% { opacity: 1; }
exit 100% { opacity: 0; }
}
@keyframes fade-out {
exit 0% { opacity: 1; }
exit 100% { opacity: 0; }
}
@keyframes change-font-size {
exit 0% { font-size: 10px; }
exit 100% { font-size: 20px; }
}
#container {
width: 200px;
height: 200px;
overflow-y: scroll;
overflow-x: hidden;
}
.target {
width: 100px;
height: 100px;
background-color: red;
}
.content {
width: 400px;
height: 400px;
background-color: blue;
}
</style>
<body>
<script>
"use strict";
setup(assert_implements_animation_timeline);
const createTargetWithStuff = function(t, divClasses) {
let container = document.createElement('div');
container.id = 'container';
document.body.appendChild(container);
// *** When testing inset
// <div id='container'>
// <div class='content'></div>
// <div class='target'></div>
// <div class='content'></div>
// </div>
// *** When testing axis
// <div id='container'>
// <div class='target'></div>
// <div class='content'></div>
// </div>
let divs = [];
let target;
for(let className of divClasses) {
let div = document.createElement('div');
div.className = className;
container.appendChild(div);
divs.push(div);
if(className === 'target')
target = div;
}
if (t && typeof t.add_cleanup === 'function') {
t.add_cleanup(() => {
for(let div of divs)
div.remove();
container.remove();
});
}
return [container, target];
};
async function scrollLeft(element, value) {
element.scrollLeft = value;
await waitForNextFrame();
}
async function scrollTop(element, value) {
element.scrollTop = value;
await waitForNextFrame();
}
// ---------------------------------
// Tests without timeline range name
// ---------------------------------
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-in-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view()";
});
// So the range is [200px, 500px].
await scrollTop(container, 200);
assert_equals(getComputedStyle(div).opacity, '0', 'At 0%');
await scrollTop(container, 260);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 20%');
await scrollTop(container, 320);
assert_equals(getComputedStyle(div).opacity, '1', 'At 40%');
await scrollTop(container, 380);
assert_equals(getComputedStyle(div).opacity, '1', 'At 60%');
await scrollTop(container, 440);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 80%');
await scrollTop(container, 500);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view() without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-in-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(50px)";
});
// So the range is [250px, 450px].
await scrollTop(container, 250);
assert_equals(getComputedStyle(div).opacity, '0', 'At 0%');
await scrollTop(container, 290);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 20%');
await scrollTop(container, 330);
assert_equals(getComputedStyle(div).opacity, '1', 'At 40%');
await scrollTop(container, 370);
assert_equals(getComputedStyle(div).opacity, '1', 'At 60%');
await scrollTop(container, 410);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 80%');
await scrollTop(container, 450);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(50px) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-in-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(auto 50px)";
});
// So the range is [250px, 500px].
await scrollTop(container, 250);
assert_equals(getComputedStyle(div).opacity, '0', 'At 0%');
await scrollTop(container, 300);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 20%');
await scrollTop(container, 350);
assert_equals(getComputedStyle(div).opacity, '1', 'At 40%');
await scrollTop(container, 400);
assert_equals(getComputedStyle(div).opacity, '1', 'At 60%');
await scrollTop(container, 450);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At 80%');
await scrollTop(container, 500);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(auto 50px) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(inline)";
});
// So the range is [-200px, 100px], but it is impossible to scroll to the
// negative part.
await scrollLeft(container, 0);
assert_approx_equals(parseFloat(getComputedStyle(div).opacity), 0.33333,
0.00001, 'At 66.7%');
// Note: 20% for each 60px.
await scrollLeft(container, 40);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(inline) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(x)";
});
// So the range is [-200px, 100px], but it is impossible to scroll to the
// negative part.
await scrollLeft(container, 0);
assert_approx_equals(parseFloat(getComputedStyle(div).opacity), 0.33333,
0.00001, 'At 66.7%');
// Note: 20% for each 60px.
await scrollLeft(container, 40);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(x) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
div.style.animation = "fade-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(y)";
});
// So the range is [-200px, 100px], but it is impossible to scroll to the
// negative part.
await scrollTop(container, 0);
assert_approx_equals(parseFloat(getComputedStyle(div).opacity), 0.33333,
0.00001, 'At 66.7%');
// Note: 20% for each 60px.
await scrollTop(container, 40);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80%');
await scrollTop(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(y) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(x 50px)";
});
// So the range is [-150px, 50px], but it is impossible to scroll to the
// negative part.
// Note: 25% for each 50px.
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '0.25', 'At 75%');
await scrollLeft(container, 10);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(x 50px) without timeline range name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation
= "fade-out-without-timeline-range 1s linear forwards, " +
"change-font-size-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(50px), view(inline 50px)";
});
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).fontSize, '25px', 'At 75% inline');
await scrollLeft(container, 10);
assert_equals(getComputedStyle(div).fontSize, '26px', 'At 80% inline');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).fontSize, '30px', 'At 100% inline');
await scrollLeft(container, 0);
await scrollTop(container, 0);
assert_equals(getComputedStyle(div).opacity, '0.25', 'At 75% block');
await scrollTop(container, 10);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80% block');
await scrollTop(container, 50);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100% block');
await scrollLeft(container, 10);
await scrollTop(container, 10);
assert_equals(getComputedStyle(div).fontSize, '26px', 'At 80% inline');
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80% block');
}, 'animation-timeline: view(50px), view(inline 50px) without timeline range ' +
'name');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'hidden';
div.style.animation = "fade-out-without-timeline-range 1s linear forwards";
div.style.animationTimeline = "view(inline)";
});
await scrollLeft(container, 0);
assert_approx_equals(parseFloat(getComputedStyle(div).opacity), 0.33333,
0.00001, 'At 66.7%');
await scrollLeft(container, 40);
assert_equals(getComputedStyle(div).opacity, '0.2', 'At 80%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
div.style.animationTimeline = "view(inline 50px)";
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '0.25', 'At 75%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0', 'At 100%');
}, 'animation-timeline: view(inline) changes to view(inline 50px), without' +
'timeline range name');
// ---------------------------------
// Tests with timeline range name
// ---------------------------------
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
div.style.animation = "fade-in-out 1s linear forwards";
div.style.animationTimeline = "view()";
});
await scrollTop(container, 200);
assert_equals(getComputedStyle(div).opacity, '0', 'At entry 0%');
await scrollTop(container, 250);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At entry 50%');
await scrollTop(container, 300);
assert_equals(getComputedStyle(div).opacity, '1', 'At entry 100%');
await scrollTop(container, 400);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollTop(container, 450);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollTop(container, 500);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view()');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
div.style.animation = "fade-in-out 1s linear forwards";
div.style.animationTimeline = "view(50px)";
});
await scrollTop(container, 250);
assert_equals(getComputedStyle(div).opacity, '0', 'At entry 0%');
await scrollTop(container, 300);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At entry 50%');
await scrollTop(container, 350);
assert_equals(getComputedStyle(div).opacity, '1', 'At entry 100% & exit 0%');
await scrollTop(container, 400);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollTop(container, 450);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(50px)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['content', 'target', 'content']);
await runAndWaitForFrameUpdate(() => {
div.style.animation = "fade-in-out 1s linear forwards";
div.style.animationTimeline = "view(auto 50px)";
});
await scrollTop(container, 250);
assert_equals(getComputedStyle(div).opacity, '0', 'At entry 0%');
await scrollTop(container, 300);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At entry 50%');
await scrollTop(container, 350);
assert_equals(getComputedStyle(div).opacity, '1', 'At entry 100%');
await scrollTop(container, 400);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollTop(container, 450);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollTop(container, 500);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(auto 50px)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'scroll';
div.style.animation = "fade-out 1s linear forwards";
div.style.animationTimeline = "view(inline)";
});
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(inline)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'scroll';
div.style.animation = "fade-out 1s linear forwards";
div.style.animationTimeline = "view(x)";
});
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(x)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'scroll';
div.style.animation = "fade-out 1s linear forwards";
div.style.animationTimeline = "view(y)";
});
await scrollTop(container, 0);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollTop(container, 50);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollTop(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(y)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflowY = 'hidden';
container.style.overflowX = 'scroll';
div.style.animation = "fade-out 1s linear forwards";
div.style.animationTimeline = "view(x 50px)";
});
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(x 50px)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflow = 'scroll';
div.style.animation
= "fade-out 1s linear forwards, change-font-size 1s linear forwards";
div.style.animationTimeline = "view(), view(inline)";
});
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).fontSize, '10px', 'At exit 0% inline');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).fontSize, '15px', 'At exit 50% inline');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).fontSize, '20px', 'At exit 100% inline');
await scrollLeft(container, 0);
await scrollTop(container, 0);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0% block');
await scrollTop(container, 50);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50% block');
await scrollTop(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100% block');
await scrollLeft(container, 50);
await scrollTop(container, 50);
assert_equals(getComputedStyle(div).fontSize, '15px', 'At exit 50% inline');
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50% block');
}, 'animation-timeline: view(), view(inline)');
promise_test(async t => {
let [container, div] = createTargetWithStuff(t, ['target', 'content']);
await runAndWaitForFrameUpdate(() => {
container.style.overflowY = 'hidden';
container.style.overflowX = 'scroll';
div.style.animation = "fade-out 1s linear forwards";
});
div.style.animationTimeline = "view(inline)";
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '1', 'At exit 0%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollLeft(container, 100);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
div.style.animationTimeline = "view(inline 50px)";
await scrollLeft(container, 0);
assert_equals(getComputedStyle(div).opacity, '0.5', 'At exit 50%');
await scrollLeft(container, 50);
assert_equals(getComputedStyle(div).opacity, '0', 'At exit 100%');
}, 'animation-timeline: view(inline) changes to view(inline 50px)');
</script>
</body>
|