-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it obvious when something is in beta/preview/nightly #955
Comments
I was surprised that see the |
I think it'd be good to populate it with all of the core browser set, and setting the value to false where not supported. Is that what you mean? |
Yeah, I think that would be ideal. This way, consumers have a consistent list of browsers in each feature's For example:
"audio-session": {
"compat_features": [ ... ],
"description": "...",
"description_html": "...",
"name": "Audio session",
"spec": "https://w3c.github.io/audio-session/",
"status": {
"baseline": false,
"support": {
"chrome": false,
"chrome_android": false,
"edge": false,
"firefox": false,
"firefox_android": false,
"safari": "16.4",
"safari_ios": "16.4"
}
}
}
"anchor-positioning": {
"compat_features": [ ... ],
"caniuse": "css-anchor-positioning",
"description": "...",
"description_html": "...",
"name": "Anchor positioning",
"spec": "https://drafts.csswg.org/css-anchor-position-1/#anchoring",
"status": {
"baseline": false,
"support": {
"chrome": "125",
"chrome_android": "125",
"edge": "125",
"firefox": false,
"firefox_android": false,
"safari": false,
"safari_ios": false
}
}
} For comparison, anchor-positioning is currently: "anchor-positioning": {
"compat_features": [ ... ],
"caniuse": "css-anchor-positioning",
"description": "...",
"description_html": "...",
"name": "Anchor positioning",
"spec": "https://drafts.csswg.org/css-anchor-position-1/#anchoring",
"status": {
"baseline": false,
"support": {}
}
} |
OK, I think what needs to happen here is:
|
That reduction seems best to make more explicit than |
In #952 I was surprised that Chrome 125 wasn't listed, but it's because that's in beta.
@ddbeck can we put something in dist files that provides a clue that something is in beta, so that we can be confident we got the list of BCD keys correct before it hits stable?
The text was updated successfully, but these errors were encountered: