summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html')
-rw-r--r--testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html b/testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html
new file mode 100644
index 0000000000..4ba68d79e4
--- /dev/null
+++ b/testing/web-platform/tests/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html
@@ -0,0 +1,54 @@
+<html class="reftest-wait">
+<title>Animation Worklet should have access to effect timing from within the worklet thread</title>
+<link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
+<meta name="assert" content="Animation Worklet should have access to effect timing from within the worklet thread">
+<link rel="match" href="references/translated-box-ref.html">
+
+<script src="/web-animations/testcommon.js"></script>
+<script src="/common/reftest-wait.js"></script>
+<script src="common.js"></script>
+
+<style>
+ #box{
+ height: 100px;
+ width: 100px;
+ background-color: green;
+ }
+</style>
+
+<div id="box"></div>
+
+<script id="get_timing_animator" type="text/worklet">
+ registerAnimator('get_timing', class {
+ animate(currentTime, effect){
+ effect.localTime = effect.getTiming().delay + (effect.getTiming().duration / 2);
+ }
+ });
+</script>
+
+<script>
+ runInAnimationWorklet(
+ document.getElementById('get_timing_animator').textContent
+ ).then(() => {
+ const box = document.getElementById("box");
+ const effect = new KeyframeEffect(
+ box,
+ [
+ {transform: 'translateY(0)'},
+ {transform: 'translateY(200px)'}
+ ],
+ {
+ delay: 2000,
+ duration: 1000
+ }
+ );
+
+ const animation = new WorkletAnimation('get_timing', effect);
+ animation.play();
+
+ waitForAsyncAnimationFrames(1).then(_ => {
+ takeScreenshot();
+ });
+ });
+</script>
+</html> \ No newline at end of file