| Index: LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
|
| diff --git a/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html b/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cf9f7bbb1df5d155e67320e3f47bbfeabc6ea4c5
|
| --- /dev/null
|
| +++ b/LayoutTests/compositing/will-change/neutral-keyframe-not-decomposed.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +@keyframes test {
|
| + to {transform: rotate(360deg);}
|
| +}
|
| +#target {
|
| + border-left: solid;
|
| + border-top: solid;
|
| + will-change: transform;
|
| + animation-name: test;
|
| + animation-duration: 2e10s;
|
| + animation-delay: -1e10s;
|
| + animation-timing-function: linear;
|
| + width: 100px;
|
| + height: 100px;
|
| + margin: 50px;
|
| +}
|
| +</style>
|
| +Th following shape should look like: _|
|
| +<div id="target"></div>
|
|
|