summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html')
-rw-r--r--testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html b/testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html
new file mode 100644
index 0000000000..66e29cde65
--- /dev/null
+++ b/testing/web-platform/tests/scroll-animations/scroll-timelines/custom-property-ref.html
@@ -0,0 +1,34 @@
+<!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>