blob: 21f52d7896b3b547306741ed27442a39365b91c0 [file] [log] [blame]
<!DOCTYPE html>
<style>
#box {
width: 100px;
height: 100px;
background-color: #00ff00;
}
#covered {
width: 100px;
height: 100px;
background-color: #ff8080;
}
/* In this test the scroller is composited (forcibly) but is not actually
scrollable. This should result in a composited worklet animation being
created, but it should get a NaN currentTime. */
.scroller {
overflow: visible;
height: 100px;
width: 100px;
/* Force compositing of the scroller. */
backface-visibility: hidden;
}
#contents {
height: 1000px;
}
</style>
<div id="box"></div>
<div id="covered"></div>
<div id="scroller" class="scroller">
<div id="contents"></div>
</div>
<script id="visual_update" type="text/worklet">
registerAnimator("test_animator", class {
animate(currentTime, effect) {
// A non-scrollable scroller should result in a NaN currentTime; set the
// localTime accordingly so we can spot this.
if (isNaN(currentTime)) {
effect.localTime = 500;
} else {
effect.localTime = 1000;
}
}
});
</script>
<script src="resources/animation-worklet-tests.js"></script>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
}
runInAnimationWorklet(
document.getElementById('visual_update').textContent
).then(()=>{
const box = document.getElementById('box');
const effect = new KeyframeEffect(box,
[
{ transform: 'translateY(0)' },
{ transform: 'translateY(200px)' }
], {
duration: 1000,
}
);
const scroller = document.getElementById('scroller');
const timeline = new ScrollTimeline({ scrollSource: scroller, timeRange: 1000, orientation: 'block' });
const animation = new WorkletAnimation('test_animator', effect, timeline);
animation.play();
// Ensure that the WorkletAnimation will have been started on the compositor.
if (window.testRunner) {
waitTwoAnimationFrames(_ => {
testRunner.notifyDone();
});
}
});
</script>