-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Updates for Chrome 122 beta #21998
Updates for Chrome 122 beta #21998
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Elchi3 I checked the features added in this PR against the features listed as enabled in Chrome 122 beta release (see https://chromestatus.com/roadmap), and this is what I found:
Found by the collector and listed as enabled in the 122 beta
- Feature: FedCM: disconnect
api.IdentityCredential.disconnect_static
- Feature: Iterator helpers
javascript.builtins.Iterator.Iterator
javascript.builtins.Iterator.drop
javascript.builtins.Iterator.every
javascript.builtins.Iterator.filter
javascript.builtins.Iterator.find
javascript.builtins.Iterator.flatMap
javascript.builtins.Iterator.forEach
javascript.builtins.Iterator.from
javascript.builtins.Iterator.map
javascript.builtins.Iterator.reduce
javascript.builtins.Iterator.some
javascript.builtins.Iterator.take
javascript.builtins.Iterator.toArray
- Feature: Set methods
javascript.builtins.Set.difference
javascript.builtins.Set.intersection
javascript.builtins.Set.isDisjointFrom
javascript.builtins.Set.isSubsetOf
javascript.builtins.Set.isSupersetOf
javascript.builtins.Set.symmetricDifference
javascript.builtins.Set.union
- Feature: Storage Buckets API
api.Navigator.storageBuckets
api.StorageBucket
api.StorageBucket.caches
api.StorageBucket.estimate
api.StorageBucket.expires
api.StorageBucket.getDirectory
api.StorageBucket.indexedDB
api.StorageBucket.name
api.StorageBucket.persist
api.StorageBucket.persisted
api.StorageBucket.setExpires
api.StorageBucketManager
api.StorageBucketManager.delete
api.StorageBucketManager.keys
api.StorageBucketManager.open
api.WorkerNavigator.storageBuckets
- Feature: URLPattern: hasRegExpGroups
api.URLPattern.hasRegExpGroups
- Feature: WebGL drawingBufferStorage
api.WebGL2RenderingContext.drawingBufferFormat
api.WebGL2RenderingContext.drawingBufferStorage
api.WebGLRenderingContext.drawingBufferFormat
api.WebGLRenderingContext.drawingBufferStorage
Found by the collector, but not listed in the 122 beta list
css.types.color.rgb.mixed_type_parameters
(not in this PR but added to BCD manually previously)css.types.color.rgba.mixed_type_parameters
(ditto)
Not found by the collector
- Allow setting IDP login status from same-site subresources: This doesn't sound like something that would be automatically detected anyway. It would be added as a manual sub-feature on api.NavigatorLogin.setStatus
- Feature: Async Clipboard API: Read unsanitized HTML: New
unsanitized
option for api.Clipboard.read; would need to be added manually as a subfeature - Feature: Back/forward cache NotRestoredReason API: I'm pretty sure this is already added to BCD (api.PerformanceNavigationTiming.notRestoredReasons) from when I attempted to document it a while ago
- Feature: CSS @container with unsupported Features never match: New behavior for
css.at-rules.container
; should be manually added as a subfeature - Feature: CSS Pseudo Element ::backdrop inheriting from Originating Element: New behavior for
css.selectors.backdrop
; should be manually added as a subfeature - Feature: Do not delete File kind objects in dataTransfer.clearData(): New behavior for
api.DataTransfer.clearData
; should be manually added as a subfeature - Feature: Interoperable mousedown event cancellation in iframe: New behavior for
api.Element.mousedown_event
; should be manually added as a subfeature - Feature: RTCRtpSender setParameters() extensions for requesting the generation of a key frame: New behavior for
api.RTCRtpSender.setParameters
; should be manually added as a subfeature - Feature: X25519Kyber768 key encapsulation for TLS: Not really sure if/how we'd record this one. More of an infrastructure security thing than a web dev feature?
Thanks again for your detailed look, @chrisdavidmills! Sounds like everything this PR is proposing is correct then and there are few things that could be added as manual additions to BCD as follow-ups. If you're happy with this PR, then I think you could approve and merge :) |
Yup, agreed. I will do so ;-) |
The Open Web Docs BCD collector v10.7.1 found new features shipping in Chrome 122 beta which was released yesterday. Currently, the collector covers about 82% of BCD, so the following list might not be exhaustive. Also, if a feature is in Chrome Canary/behind origin trials/enrollment, it is not considered here.
With this PR, BCD considers the following 44 features as shipping in Chrome 122:
I think all of this is in line with what https://chromestatus.com says currently.
Again, I hope this auto-generated PR is useful to update BCD for the new Chrome 122 more easily and faster. If you have feedback, let me know! /cc @chrisdavidmills