| Index: third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html b/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html
|
| deleted file mode 100644
|
| index 37322a9b27ca6146d89cb3460771a16c231446ec..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/animations/custom-properties/unregistered-at-apply.html
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<style>
|
| -@keyframes test {
|
| - from { --x: { background-color: green; }; }
|
| - to { --x: { background-color: lime; }; }
|
| -}
|
| -div {
|
| - --x: {
|
| - animation: test 10s linear;
|
| - background-color: red;
|
| - };
|
| - @apply --x;
|
| -}
|
| -#targetA {
|
| - animation-delay: -2.5s;
|
| -}
|
| -#targetB {
|
| - animation-delay: -7.5s;
|
| -}
|
| -</style>
|
| -<div id="targetA"></div>
|
| -<div id="targetB"></div>
|
| -<script>
|
| -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 @apply references');
|
| -</script>
|
|
|