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

To expediate the discussion:

If the above pauses, the `div.style.animationPlayState` would still resolve to running, so we would have to have some level of stickiness in order to ensure the pause, right?

Then does flipping it cause the animation to start running?
```js
div.style.animationPlayState = 'paused';
animation.playState; // still paused, style flushed
div.style.animationPlayState = 'running';
// is it now running?
```

If the above doesn't pause, then setting the start time has no effect?

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

Received on Wednesday, 4 March 2020 16:32:40 UTC