1
0
Fork 0
firefox/testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
705 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<link rel="help" src="https://github.com/w3c/csswg-drafts/issues/7759">
<script src="/web-animations/testcommon.js"></script>
<script src="/common/reftest-wait.js"></script>
<style>
html {
overflow: hidden;
}
.spacer {
height: 300vh;
}
.box {
position: fixed;
left: 0;
top: 0;
width: 100px;
height: 100px;
background: black;
border: solid red;
translate: 100px;
will-change: transform;
}
</style>
</head>
<body>
<div class="box"></div>
<div class='spacer'></div>
</body>
<script>
waitForCompositorReady().then(takeScreenshot);
</script>
</html>