| from { transform: scale(0) } |
| to { transform: scale(1) } |
| from { transform: scale(0) } |
| transform-origin: top left; |
| animation-timing-function: cubic-bezier(0, 1, 0, 1); |
| animation-name: explicit; |
| background: linear-gradient(white, white); |
| animation-name: implicit; |
| <div class="explicit"></div> |
| <div class="implicit"></div> |
| window.testRunner?.waitUntilDone(); |
| await new Promise(requestAnimationFrame); |
| await new Promise(requestAnimationFrame); |
| await new Promise(requestAnimationFrame); |
| window.testRunner?.notifyDone(); |