| from { transform: translate3d(0, 0, 0); } |
| to { transform: translate3d(100px, 0, 0); } |
| background-color: silver; |
| animation: move linear 0.1s forwards; |
| testRunner.waitUntilDone(); |
| var out = document.getElementById('out'); |
| out.innerText = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_BACKING_STORE_ATTACHED); |
| function dumpLayersSoon() |
| let box = document.getElementById('box'); |
| box.addEventListener('animationend', dumpLayersSoon, false); |
| box.classList.add('animating'); |
| window.addEventListener('load', runTest, false); |
| <p>An element with a finished fill-forwards animation should not trigger backing store outside the viewport.</p> |
| Some text here to force backing store. |