Re: [csswg-drafts] [css-animations-2] Specify the interaction between API methods and animation-* properties (#4822)

Just to be clear, does this example (from your original post) still pause, but just not set the sticky override?

```js
div.style.animation = 'anim 10s';
const animation = div.getAnimations()[0];
await animation.ready;
// Pause using the start time
animation.startTime = null;
```

-- 
GitHub Notification of comment by flackr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4822#issuecomment-594474104 using your GitHub account

Received on Wednesday, 4 March 2020 11:44:58 UTC