Re: [csswg-drafts] [css-animations] The "via" keyframe selector (#6151)

One thing to consider is that at the moment the order of the keyframe rules doesn't matter. When a keyword like `via` is introduced, their order gets relevant.

Also, the keyframe selector takes a comma-separated list, so that also applies in that case. So the following case

```css
@keyframes x {
    from { color: blue; }
    via, via, 30%, via { color: yellow; }
    to { color: lime; }
}
```

would then be equivalent to

```css
@keyframes {
    from { color: blue; }
    10% { color: yellow; }
    20% { color: yellow; }
    30% { color: yellow; }
    65% { color: yellow; }
    to { color: lime; }
}
```

Sebastian

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Friday, 26 March 2021 23:11:03 UTC