| Index: third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-simple.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-simple.html b/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-simple.html
|
| deleted file mode 100644
|
| index bac89193b8fbd50ea22df12b88232f32f1da2fb5..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-simple.html
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<style>
|
| -@keyframes test {
|
| - from { --x: green; }
|
| - to { --x: lime; }
|
| -}
|
| -div {
|
| - --x: red;
|
| - background-color: var(--x);
|
| -}
|
| -#targetA {
|
| - animation: test 10s -2.5s;
|
| -}
|
| -#targetB {
|
| - animation: test 10s -7.5s;
|
| -}
|
| -</style>
|
| -<div id="targetA"></div>
|
| -<div id="targetB"></div>
|
| -<script>
|
| -test(() => {
|
| - assert_equals(getComputedStyle(targetA).getPropertyValue('--x'), ' green');
|
| - assert_equals(getComputedStyle(targetB).getPropertyValue('--x'), ' lime');
|
| -}, 'CSS Animations on custom properties should be applied');
|
| -
|
| -test(() => {
|
| - assert_equals(getComputedStyle(targetA).backgroundColor, 'rgb(0, 128, 0)');
|
| - assert_equals(getComputedStyle(targetB).backgroundColor, 'rgb(0, 255, 0)');
|
| -}, 'CSS Animations on custom properties should be reflected in var() references');
|
| -</script>
|
|
|