Re: [csswg-drafts] [css-color-4] `<hue> | none` is redundant (#7816)

`none` is not allowed in legacy (comma) syntax, but is allowed in modern (no comma, alpha has /) syntax. So:

```css
.correct {
  color: hsl(none 100% 50%)
}
.incorrect  { 
  color: hsl(none, 100%, 50%)
}
```

Here is [a test](https://codepen.io/svgeesus/pen/oNdMEmQ)

Chrome stable 105: Fail
Chrome beta 107: **Pass**
Firefox nightly 107a1: Fail
Safari TP 145: **Pass**

![image](https://user-images.githubusercontent.com/2506926/194136921-65d182f4-e705-4b99-80b6-efcd1d96739e.png)


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


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

Received on Wednesday, 5 October 2022 18:39:54 UTC