| Index: third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered.html b/third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..188270b26f1a7b88d1f291820e09350ad8de66f2
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/animations/custom-properties/registered-var-to-registered.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<style>
|
| +#target {
|
| + --from: 100;
|
| + --to: 200;
|
| +}
|
| +</style>
|
| +<div id="target"></div>
|
| +<script>
|
| +for (let name of ['--test', '--from', '--to']) {
|
| + CSS.registerProperty({
|
| + name,
|
| + syntax: '<number>',
|
| + initialValue: '0',
|
| + });
|
| +}
|
| +
|
| +test(() => {
|
| + let animation = target.animate({'--test': ['var(--from)', 'var(--to)']}, 100);
|
| +
|
| + animation.currentTime = 25;
|
| + assert_equals(getComputedStyle(target).getPropertyValue('--test'), '125', 'target at 25%');
|
| +
|
| + animation.currentTime = 75;
|
| + assert_equals(getComputedStyle(target).getPropertyValue('--test'), '175', 'target at 75%');
|
| +}, 'Registered custom property animation keyframes with var() references to registered custom properties');
|
| +</script>
|
|
|