You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use animation style with multiple keyframes referenced while adding space after a comma:
h1 {
animation: color 5s infinite, opacity 5s;
}
If the space after comma is removed, everything works.
What is expected?
All animations keyframe references should be scoped
What is actually happening?
Only the first one will be scoped
I have created pull request with fix and added new assertions to tests to test this scenario #1030
The text was updated successfully, but these errors were encountered:
Version
13.3.0
Reproduction link
https://codesandbox.io/s/38qjmqom46
Steps to reproduce
Use animation style with multiple keyframes referenced while adding space after a comma:
h1 {
animation: color 5s infinite, opacity 5s;
}
If the space after comma is removed, everything works.
What is expected?
All animations keyframe references should be scoped
What is actually happening?
Only the first one will be scoped
I have created pull request with fix and added new assertions to tests to test this scenario #1030
The text was updated successfully, but these errors were encountered: