| Index: LayoutTests/animations/skew-notsequential-compositor.html
|
| diff --git a/LayoutTests/animations/skew-notsequential-compositor.html b/LayoutTests/animations/skew-notsequential-compositor.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8f6925b44f3f29c09079b6b02fa2a967d2116c8d
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/skew-notsequential-compositor.html
|
| @@ -0,0 +1,32 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +div {
|
| + width: 100px;
|
| + height: 100px;
|
| + border: solid;
|
| + margin: 50px;
|
| + position: absolute;
|
| + will-change: transform;
|
| +}
|
| +
|
| +#test {
|
| + border-color: green;
|
| +
|
| + animation-name: anim;
|
| + animation-duration: 2e10s;
|
| + animation-delay: -1e10s;
|
| + animation-fill-mode: forwards;
|
| + animation-timing-function: linear;
|
| +}
|
| +
|
| +@keyframes anim {
|
| + from {
|
| + transform: skew(-45deg, 45deg);
|
| + }
|
| + to {
|
| + transform: skew(-45deg, 45deg);
|
| + }
|
| +}
|
| +</style>
|
| +
|
| +<div id="test"></div>
|
|
|