web-features 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/index.d.ts +45 -0
- package/index.json +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
package/index.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/** Web platform feature */
|
|
2
|
+
interface FeatureData {
|
|
3
|
+
/** Short name */
|
|
4
|
+
name: string;
|
|
5
|
+
/** Alias identifier */
|
|
6
|
+
alias?: string | [string, string, ...string[]];
|
|
7
|
+
/** Specification */
|
|
8
|
+
spec: specification_url | [specification_url, specification_url, ...specification_url[]];
|
|
9
|
+
/** caniuse.com identifier */
|
|
10
|
+
caniuse?: string | [string, string, ...string[]];
|
|
11
|
+
/** Whether a feature is considered a "baseline" web platform feature and when it achieved that status */
|
|
12
|
+
status?: SupportStatus;
|
|
13
|
+
/** Sources of support data for this feature */
|
|
14
|
+
compat_features?: string[];
|
|
15
|
+
/** Usage stats */
|
|
16
|
+
usage_stats?: usage_stats_url | [usage_stats_url, usage_stats_url, ...usage_stats_url[]];
|
|
17
|
+
}
|
|
18
|
+
type browserIdentifier = "chrome" | "chrome_android" | "edge" | "firefox" | "firefox_android" | "safari" | "safari_ios";
|
|
19
|
+
type BaselineHighLow = "high" | "low";
|
|
20
|
+
interface SupportStatus {
|
|
21
|
+
/** Whether the feature is Baseline (low substatus), Baseline (high substatus), or not (false) */
|
|
22
|
+
baseline?: BaselineHighLow | false;
|
|
23
|
+
/** Date the feature achieved Baseline low status */
|
|
24
|
+
baseline_low_date?: string;
|
|
25
|
+
/** Date the feature achieved Baseline high status */
|
|
26
|
+
baseline_high_date?: string;
|
|
27
|
+
/** Browser versions that most-recently introduced the feature */
|
|
28
|
+
support?: {
|
|
29
|
+
[K in browserIdentifier]?: string;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
/** Specification URL
|
|
33
|
+
* @format uri
|
|
34
|
+
*/
|
|
35
|
+
type specification_url = string;
|
|
36
|
+
/** Usage stats URL
|
|
37
|
+
* @format uri
|
|
38
|
+
*/
|
|
39
|
+
type usage_stats_url = string;
|
|
40
|
+
|
|
41
|
+
declare const features: {
|
|
42
|
+
[id: string]: FeatureData;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export { features as default };
|
package/index.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"anchor-positioning":{"spec":"https://drafts.csswg.org/css-anchor-position-1/#anchoring"},"array-at":{"compat_features":["javascript.builtins.Array.at"],"spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.at","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"92","chrome_android":"92","edge":"92","firefox":"90","firefox_android":"90","safari":"15.4","safari_ios":"15.4"}}},"array-flat":{"caniuse":"array-flat","compat_features":["javascript.builtins.Array.flat","javascript.builtins.Array.flatMap"],"spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flat","status":{"baseline":"high","baseline_low_date":"2020-01-15","support":{"chrome":"69","chrome_android":"69","edge":"79","firefox":"62","firefox_android":"62","safari":"12","safari_ios":"12"}}},"array-group":{"compat_features":["javascript.builtins.Object.groupBy","javascript.builtins.Map.groupBy"],"spec":"https://tc39.es/proposal-array-grouping/","status":{"baseline":false,"support":{"chrome":"117","chrome_android":"117","edge":"117","firefox":"119","firefox_android":"119"}}},"async-await":{"caniuse":"async-functions","compat_features":["javascript.builtins.AsyncFunction","javascript.builtins.AsyncFunction.AsyncFunction","javascript.operators.async_function","javascript.operators.await","javascript.statements.async_function"],"spec":"https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-async-function-definitions","status":{"baseline":"high","baseline_low_date":"2017-04-05","support":{"chrome":"55","chrome_android":"55","edge":"15","firefox":"52","firefox_android":"52","safari":"10.1","safari_ios":"10.3"}}},"async-clipboard":{"caniuse":"async-clipboard","compat_features":["api.Clipboard","api.Clipboard.read","api.Clipboard.readText","api.Clipboard.write","api.Clipboard.writeText","api.ClipboardEvent","api.ClipboardEvent.ClipboardEvent","api.ClipboardEvent.clipboardData","api.ClipboardItem","api.ClipboardItem.ClipboardItem","api.ClipboardItem.getType","api.ClipboardItem.presentationStyle","api.ClipboardItem.types","api.Navigator.clipboard","api.Permissions.permission_clipboard-read"],"spec":"https://w3c.github.io/clipboard-apis/#async-clipboard-api","status":{"baseline":false,"support":{}}},"avif":{"caniuse":"avif","spec":"https://aomediacodec.github.io/av1-avif/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3798"},"background-fetch":{"compat_features":["api.BackgroundFetchEvent","api.BackgroundFetchEvent.BackgroundFetchEvent","api.BackgroundFetchEvent.registration","api.BackgroundFetchManager","api.BackgroundFetchManager","api.BackgroundFetchManager.fetch","api.BackgroundFetchManager.get","api.BackgroundFetchManager.getIds","api.BackgroundFetchRecord","api.BackgroundFetchRecord.request","api.BackgroundFetchRecord.responseReady","api.BackgroundFetchRegistration.abort","api.BackgroundFetchRegistration.downloaded","api.BackgroundFetchRegistration.downloadTotal","api.BackgroundFetchRegistration.failureReason","api.BackgroundFetchRegistration.id","api.BackgroundFetchRegistration.match","api.BackgroundFetchRegistration.matchAll","api.BackgroundFetchRegistration.progress_event","api.BackgroundFetchRegistration.recordsAvailable","api.BackgroundFetchRegistration.result","api.BackgroundFetchRegistration.uploaded","api.BackgroundFetchRegistration.uploadTotal","api.BackgroundFetchUpdateUIEvent","api.BackgroundFetchUpdateUIEvent.BackgroundFetchUpdateUIEvent","api.BackgroundFetchUpdateUIEvent.updateUI","api.ServiceWorkerGlobalScope.backgroundfetchabort_event","api.ServiceWorkerGlobalScope.backgroundfetchclick_event","api.ServiceWorkerGlobalScope.backgroundfetchfail_event","api.ServiceWorkerGlobalScope.backgroundfetchsuccess_event","api.ServiceWorkerRegistration.backgroundFetch"],"spec":"https://wicg.github.io/background-fetch/","status":{"baseline":false,"support":{"chrome":"74","chrome_android":"74","edge":"79"}}},"background-gradients":{"caniuse":["css-gradients","css-repeating-gradients","css-conic-gradients"],"compat_features":["css.properties.background-image.gradients","css.types.image.gradient.linear-gradient","css.types.image.gradient.linear-gradient.doubleposition","css.types.image.gradient.linear-gradient.interpolation_hints","css.types.image.gradient.linear-gradient.to","css.types.image.gradient.linear-gradient.unitless_0_angle","css.types.image.gradient.radial-gradient","css.types.image.gradient.radial-gradient.at","css.types.image.gradient.radial-gradient.doubleposition","css.types.image.gradient.radial-gradient.interpolation_hints","css.types.image.gradient.conic-gradient","css.types.image.gradient.conic-gradient.doubleposition","css.types.image.gradient.repeating-linear-gradient","css.types.image.gradient.repeating-linear-gradient.doubleposition","css.types.image.gradient.repeating-linear-gradient.interpolation_hints","css.types.image.gradient.repeating-linear-gradient.to","css.types.image.gradient.repeating-linear-gradient.unitless_0_angle","css.types.image.gradient.repeating-radial-gradient","css.types.image.gradient.repeating-radial-gradient.at","css.types.image.gradient.repeating-radial-gradient.doubleposition","css.types.image.gradient.repeating-radial-gradient.interpolation_hints","css.types.image.gradient.repeating-conic-gradient"],"spec":"https://drafts.csswg.org/css-images-4/#gradients"},"bigint":{"caniuse":"bigint","compat_features":["javascript.builtins.BigInt","javascript.builtins.BigInt.asIntN","javascript.builtins.BigInt.asUintN","javascript.builtins.BigInt.BigInt","javascript.builtins.BigInt.toLocaleString","javascript.builtins.BigInt.toString","javascript.builtins.BigInt.valueOf"],"spec":"https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint-objects","status":{"baseline":"high","baseline_low_date":"2020-09-16","support":{"chrome":"67","chrome_android":"67","edge":"79","firefox":"68","firefox_android":"68","safari":"14","safari_ios":"14"}}},"border-image":{"caniuse":"border-image","compat_features":["css.properties.border-image","css.properties.border-image.fill","css.properties.border-image.gradient","css.properties.border-image.optional_border_image_slice","css.properties.border-image-outset","css.properties.border-image-repeat","css.properties.border-image-repeat.round","css.properties.border-image-repeat.space","css.properties.border-image-slice","css.properties.border-image-source","css.properties.border-image-width"],"spec":"https://drafts.csswg.org/css-backgrounds-3/#border-images","status":{"baseline":"high","baseline_low_date":"2017-02-01","support":{"chrome":"56","chrome_android":"56","edge":"12","firefox":"50","firefox_android":"50","safari":"9.1","safari_ios":"9.3"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/43"},"broadcast-channel":{"caniuse":"broadcastchannel","compat_features":["api.BroadcastChannel","api.BroadcastChannel.BroadcastChannel","api.BroadcastChannel.close","api.BroadcastChannel.message_event","api.BroadcastChannel.messageerror_event","api.BroadcastChannel.name","api.BroadcastChannel.postMessage"],"spec":"https://html.spec.whatwg.org/multipage/web-messaging.html#broadcasting-to-other-browsing-contexts","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"60","chrome_android":"60","edge":"79","firefox":"57","firefox_android":"57","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1447"},"canvas-context-lost":{"compat_features":["api.CanvasRenderingContext2D.isContextLost","api.HTMLCanvasElement.contextlost_event","api.HTMLCanvasElement.contextrestored_event","api.OffscreenCanvas.contextlost_event","api.OffscreenCanvas.contextrestored_event","api.OffscreenCanvasRenderingContext2D.isContextLost"],"spec":"https://html.spec.whatwg.org/multipage/webappapis.html#context-lost-steps","status":{"baseline":false,"support":{"chrome":"99","chrome_android":"99","edge":"99"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3974"},"cascade-layers":{"caniuse":"css-cascade-layers","compat_features":["css.at-rules.layer","css.at-rules.import.layer","api.CSSImportRule.layerName","api.CSSLayerBlockRule","api.CSSLayerBlockRule.name","api.CSSLayerStatementRule","api.CSSLayerStatementRule.nameList"],"spec":"https://drafts.csswg.org/css-cascade-5/#layering","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"99","chrome_android":"99","edge":"99","firefox":"97","firefox_android":"97","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4007"},"class-syntax":{"caniuse":"es6-class","compat_features":["javascript.classes","javascript.classes.constructor","javascript.classes.extends","javascript.classes.static","javascript.statements.class"],"spec":"https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-class-definitions","status":{"baseline":"high","baseline_low_date":"2017-03-27","support":{"chrome":"42","chrome_android":"42","edge":"13","firefox":"45","firefox_android":"45","safari":"10.1","safari_ios":"10.3"}}},"constraint-validation":{"caniuse":"constraint-validation","compat_features":["api.ElementInternals.checkValidity","api.ElementInternals.reportValidity","api.ElementInternals.setValidity","api.ElementInternals.validationMessage","api.ElementInternals.validity","api.ElementInternals.willValidate","api.HTMLButtonElement.checkValidity","api.HTMLButtonElement.reportValidity","api.HTMLButtonElement.setCustomValidity","api.HTMLButtonElement.validationMessage","api.HTMLButtonElement.validity","api.HTMLButtonElement.willValidate","api.HTMLFieldSetElement.checkValidity","api.HTMLFieldSetElement.reportValidity","api.HTMLFieldSetElement.setCustomValidity","api.HTMLFieldSetElement.validationMessage","api.HTMLFieldSetElement.validity","api.HTMLFieldSetElement.willValidate","api.HTMLFormElement.checkValidity","api.HTMLFormElement.reportValidity","api.HTMLInputElement.checkValidity","api.HTMLInputElement.reportValidity","api.HTMLInputElement.setCustomValidity","api.HTMLInputElement.validationMessage","api.HTMLInputElement.validity","api.HTMLInputElement.willValidate","api.HTMLObjectElement.checkValidity","api.HTMLObjectElement.reportValidity","api.HTMLObjectElement.setCustomValidity","api.HTMLObjectElement.validationMessage","api.HTMLObjectElement.validity","api.HTMLObjectElement.willValidate","api.HTMLOutputElement.checkValidity","api.HTMLOutputElement.reportValidity","api.HTMLOutputElement.setCustomValidity","api.HTMLOutputElement.validationMessage","api.HTMLOutputElement.validity","api.HTMLOutputElement.willValidate","api.HTMLSelectElement.checkValidity","api.HTMLSelectElement.reportValidity","api.HTMLSelectElement.setCustomValidity","api.HTMLSelectElement.validationMessage","api.HTMLSelectElement.validity","api.HTMLSelectElement.willValidate","api.HTMLTextAreaElement.checkValidity","api.HTMLTextAreaElement.reportValidity","api.HTMLTextAreaElement.setCustomValidity","api.HTMLTextAreaElement.validationMessage","api.HTMLTextAreaElement.validity","api.HTMLTextAreaElement.willValidate","api.ValidityState","api.ValidityState.badInput","api.ValidityState.customError","api.ValidityState.patternMismatch","api.ValidityState.rangeOverflow","api.ValidityState.rangeUnderflow","api.ValidityState.stepMismatch","api.ValidityState.tooLong","api.ValidityState.tooShort","api.ValidityState.typeMismatch","api.ValidityState.valid","api.ValidityState.valueMissing"],"spec":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#the-constraint-validation-api","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"77","chrome_android":"77","edge":"79","firefox":"98","firefox_android":"98","safari":"16.4","safari_ios":"16.4"}}},"container-queries":{"caniuse":"css-container-queries","compat_features":["css.at-rules.container","css.properties.contain","css.properties.contain.inline-size","css.properties.contain.style","css.properties.container","css.properties.container-name","css.properties.container-type"],"spec":"https://drafts.csswg.org/css-contain-3/#container-queries","status":{"baseline":"low","baseline_low_date":"2023-02-14","support":{"chrome":"105","chrome_android":"105","edge":"105","firefox":"110","firefox_android":"110","safari":"16","safari_ios":"16"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4165"},"content-visibility":{"caniuse":"css-content-visibility","compat_features":["api.ContentVisibilityAutoStateChangeEvent","api.ContentVisibilityAutoStateChangeEvent.ContentVisibilityAutoStateChangeEvent","api.ContentVisibilityAutoStateChangeEvent.skipped","css.properties.content-visibility"],"spec":"https://drafts.csswg.org/css-contain-2/#content-visibility","status":{"baseline":false,"support":{"chrome":"108","chrome_android":"108","edge":"108"}}},"custom-elements":{"caniuse":"custom-elementsv1","compat_features":["api.CustomElementRegistry","api.CustomElementRegistry.builtin_element_support","api.CustomElementRegistry.define","api.Window.customElements","css.selectors.defined","css.selectors.host","css.selectors.host-context","css.selectors.part"],"spec":"https://html.spec.whatwg.org/multipage/custom-elements.html","status":{"baseline":false,"support":{"chrome":"73","chrome_android":"73","edge":"79"}}},"custom-properties":{"caniuse":"css-variables","compat_features":["css.properties.custom-property","css.properties.custom-property.var"],"spec":"https://drafts.csswg.org/css-variables-1/","status":{"baseline":"high","baseline_low_date":"2017-04-05","support":{"chrome":"49","chrome_android":"49","edge":"15","firefox":"31","firefox_android":"31","safari":"9.1","safari_ios":"9.3"}}},"default":{"caniuse":"css-default-pseudo","compat_features":["css.selectors.default"],"spec":"https://drafts.csswg.org/selectors-4/#the-default-pseudo","status":{"baseline":"high","baseline_low_date":"2020-01-15","support":{"chrome":"10","chrome_android":"18","edge":"79","firefox":"4","firefox_android":"4","safari":"5","safari_ios":"5"}}},"dialog":{"caniuse":"dialog","compat_features":["api.HTMLDialogElement","api.HTMLDialogElement.cancel_event","api.HTMLDialogElement.close","api.HTMLDialogElement.close_event","api.HTMLDialogElement.open","api.HTMLDialogElement.returnValue","api.HTMLDialogElement.show","api.HTMLDialogElement.showModal","css.selectors.backdrop.dialog","html.elements.dialog","html.elements.dialog.open"],"spec":"https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"37","chrome_android":"37","edge":"79","firefox":"98","firefox_android":"98","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/481"},"document-picture-in-picture":{"spec":"https://wicg.github.io/document-picture-in-picture/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4397"},"edit-context":{"spec":"https://w3c.github.io/edit-context/"},"fetch-priority":{"compat_features":["api.fetch.init_priority_parameter","api.HTMLImageElement.fetchPriority","api.HTMLLinkElement.fetchPriority","api.HTMLScriptElement.fetchPriority","api.Request.Request.init_priority_parameter","html.elements.img.fetchpriority","html.elements.link.fetchpriority","html.elements.script.fetchpriority"],"spec":["https://fetch.spec.whatwg.org/#request-priority","https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes"],"status":{"baseline":false,"support":{"chrome":"102","chrome_android":"102","edge":"102","safari":"17.2","safari_ios":"17.2"}}},"flexbox":{"caniuse":"flexbox","compat_features":["css.properties.align-content.flex_context","css.properties.align-content.flex_context.stretch","css.properties.align-items.flex_context","css.properties.align-items.flex_context.baseline","css.properties.align-self.flex_context","css.properties.align-self.flex_context.baseline","css.properties.align-self.flex_context.stretch","css.properties.display.flex","css.properties.display.inline-flex","css.properties.flex","css.properties.flex-basis","css.properties.flex-basis.auto","css.properties.flex-direction","css.properties.flex-flow","css.properties.flex-grow","css.properties.flex-shrink","css.properties.flex-wrap","css.properties.justify-content.flex_context","css.properties.justify-content.flex_context.stretch","css.properties.justify-items.flex_context","css.properties.justify-self.flex_context","css.properties.order","css.properties.place-content.flex_context","css.properties.place-items.flex_context","css.properties.place-self.flex_context"],"spec":"https://drafts.csswg.org/css-flexbox-1/","status":{"baseline":"high","baseline_low_date":"2020-09-22","support":{"chrome":"59","chrome_android":"59","edge":"79","firefox":"81","firefox_android":"81","safari":"11","safari_ios":"11"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1692"},"flexbox-gap":{"caniuse":"flexbox-gap","spec":"https://drafts.csswg.org/css-align-3/#gaps"},"focus-visible":{"caniuse":"css-focus-visible","compat_features":["css.selectors.focus-visible"],"spec":"https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"86","chrome_android":"86","edge":"86","firefox":"85","firefox_android":"85","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2388"},"font-variant-alternates":{"caniuse":"font-variant-alternates","compat_features":["css.properties.font-variant-alternates","css.properties.font-variant-alternates.annotation","css.properties.font-variant-alternates.character_variant","css.properties.font-variant-alternates.ornaments","css.properties.font-variant-alternates.styleset","css.properties.font-variant-alternates.stylistic","css.properties.font-variant-alternates.swash"],"spec":"https://drafts.csswg.org/css-fonts-4/#font-variant-alternates-prop","status":{"baseline":"low","baseline_low_date":"2023-03-13","support":{"chrome":"111","chrome_android":"111","edge":"111","firefox":"34","firefox_android":"34","safari":"16.2","safari_ios":"16.2"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/738"},"fonts":{"caniuse":"fontface","compat_features":["css.at-rules.font-face","css.at-rules.font-face.font-family","css.at-rules.font-face.src","css.at-rules.font-face.WOFF","css.at-rules.font-face.WOFF_2"],"spec":"https://drafts.csswg.org/css-fonts-5/","status":{"baseline":"high","baseline_low_date":"2016-09-20","support":{"chrome":"36","chrome_android":"36","edge":"14","firefox":"39","firefox_android":"39","safari":"10","safari_ios":"10"}}},"fullscreen":{"caniuse":"fullscreen","compat_features":["api.Document.exitFullscreen","api.Document.exitFullscreen.returns_promise","api.Document.fullscreen","api.Document.fullscreenchange_event","api.Document.fullscreenElement","api.Document.fullscreenEnabled","api.Document.fullscreenerror_event","api.Element.fullscreenchange_event","api.Element.fullscreenerror_event","api.Element.requestFullscreen","api.Element.requestFullscreen.returns_promise","api.HTMLIFrameElement.allowFullscreen","api.ShadowRoot.fullscreenElement","css.selectors.backdrop.fullscreen","css.selectors.fullscreen","css.selectors.fullscreen.all_elements","html.elements.iframe.allowfullscreen"],"spec":"https://fullscreen.spec.whatwg.org/"},"grid":{"caniuse":"css-grid","compat_features":["css.properties.align-content.grid_context","css.properties.align-items.grid_context","css.properties.align-items.grid_context.start_end","css.properties.align-self.grid_context","css.properties.column-gap.grid_context","css.properties.display.grid","css.properties.display.inline-grid","css.properties.gap.grid_context","css.properties.gap.grid_context.calc_values","css.properties.gap.grid_context.percentage_values","css.properties.grid","css.properties.grid-area","css.properties.grid-auto-columns","css.properties.grid-auto-flow","css.properties.grid-auto-rows","css.properties.grid-column","css.properties.grid-column-end","css.properties.grid-column-start","css.properties.grid-row","css.properties.grid-row-end","css.properties.grid-row-start","css.properties.grid-template","css.properties.grid-template-areas","css.properties.grid-template-columns","css.properties.grid-template-columns.fit-content","css.properties.grid-template-columns.minmax","css.properties.grid-template-columns.repeat","css.properties.grid-template-rows","css.properties.grid-template-rows.fit-content","css.properties.grid-template-rows.minmax","css.properties.grid-template-rows.repeat","css.properties.justify-content.grid_context","css.properties.justify-items.grid_context","css.properties.justify-self.grid_context","css.properties.place-content.grid_context","css.properties.place-items.grid_context","css.properties.place-self.grid_context","css.properties.row-gap.grid_context","css.types.flex"],"spec":"https://drafts.csswg.org/css-grid-3/","status":{"baseline":"high","baseline_low_date":"2020-07-28","support":{"chrome":"66","chrome_android":"66","edge":"79","firefox":"76","firefox_android":"79","safari":"12.1","safari_ios":"12.2"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1693"},"grid-animation":{"compat_features":["css.properties.grid-template-columns.animation","css.properties.grid-template-rows.animation"],"spec":"https://drafts.csswg.org/css-grid-2/#track-sizing","status":{"baseline":"low","baseline_low_date":"2022-10-27","support":{"chrome":"107","chrome_android":"107","edge":"107","firefox":"66","firefox_android":"66","safari":"16","safari_ios":"16"}}},"has":{"caniuse":"css-has","compat_features":["css.selectors.has"],"spec":"https://drafts.csswg.org/selectors-4/#relational","status":{"baseline":"low","baseline_low_date":"2023-12-19","support":{"chrome":"105","chrome_android":"105","edge":"105","firefox":"121","firefox_android":"121","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4743"},"idle-detection":{"compat_features":["api.IdleDetector","api.IdleDetector.IdleDetector","api.IdleDetector.change_event","api.IdleDetector.requestPermission_static","api.IdleDetector.screenState","api.IdleDetector.start","api.IdleDetector.userState","http.headers.Permissions-Policy.idle-detection"],"spec":"https://wicg.github.io/idle-detection/","status":{"baseline":false,"support":{"chrome":"94","chrome_android":"94","edge":"94"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2834"},"image-set":{"caniuse":"css-image-set","spec":"https://drafts.csswg.org/css-images-4/#image-set-notation"},"import-maps":{"caniuse":"import-maps","compat_features":["html.elements.script.type.importmap"],"spec":"https://html.spec.whatwg.org/multipage/webappapis.html#import-maps","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"89","chrome_android":"89","edge":"89","firefox":"108","firefox_android":"108","safari":"16.4","safari_ios":"16.4"}}},"indeterminate":{"caniuse":"css-indeterminate-pseudo","compat_features":["css.selectors.indeterminate","css.selectors.indeterminate.checkbox","css.selectors.indeterminate.progress","css.selectors.indeterminate.radio"],"spec":["https://drafts.csswg.org/selectors-4/#indeterminate","https://html.spec.whatwg.org/multipage/semantics-other.html#selector-indeterminate"],"status":{"baseline":"high","baseline_low_date":"2020-01-15","support":{"chrome":"39","chrome_android":"39","edge":"79","firefox":"51","firefox_android":"51","safari":"10","safari_ios":"10"}}},"input-event":{"caniuse":"input-event","compat_features":["api.Element.input_event","api.InputEvent","api.InputEvent.InputEvent","api.InputEvent.data","api.InputEvent.dataTransfer","api.InputEvent.getTargetRanges","api.InputEvent.inputType","api.InputEvent.isComposing"],"spec":"https://w3c.github.io/uievents/#event-type-input","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"60","chrome_android":"60","edge":"79","firefox":"87","firefox_android":"87","safari":"16.4","safari_ios":"16.4"}}},"is":{"caniuse":"css-matches-pseudo","compat_features":["css.selectors.is","css.selectors.is.forgiving_selector_list"],"spec":"https://drafts.csswg.org/selectors-4/#matches","status":{"baseline":"high","baseline_low_date":"2021-01-21","support":{"chrome":"88","chrome_android":"88","edge":"88","firefox":"82","firefox_android":"82","safari":"14","safari_ios":"14"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2322"},"line-clamp":{"caniuse":"css-line-clamp","compat_features":["css.properties.-webkit-line-clamp"],"spec":"https://drafts.csswg.org/css-overflow-3/#line-clamp"},"masonry":{"compat_features":["css.properties.align-tracks","css.properties.grid-template-columns.masonry","css.properties.grid-template-rows.masonry","css.properties.justify-tracks","css.properties.masonry-auto-flow"],"spec":"https://drafts.csswg.org/css-grid-3/","status":{"baseline":false,"support":{}}},"media-capture":{"caniuse":"html-media-capture","compat_features":["api.HTMLInputElement.capture","html.elements.input.capture"],"spec":"https://w3c.github.io/html-media-capture/"},"motion-path":{"caniuse":"css-motion-paths","compat_features":["css.properties.offset-anchor","css.properties.offset-distance","css.properties.offset-path","css.properties.offset-path.path","css.properties.offset-rotate","css.properties.offset"],"spec":"https://drafts.fxtf.org/motion-1/","status":{"baseline":"low","baseline_low_date":"2023-08-21","support":{"chrome":"116","chrome_android":"116","edge":"116","firefox":"72","firefox_android":"79","safari":"16","safari_ios":"16"}}},"navigation":{"spec":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api"},"nesting":{"caniuse":"css-nesting","compat_features":["css.selectors.nesting","api.CSSStyleRule.cssRules","api.CSSStyleRule.deleteRule","api.CSSStyleRule.insertRule"],"spec":"https://drafts.csswg.org/css-nesting-1/","status":{"baseline":"low","baseline_low_date":"2023-12-11","support":{"chrome":"120","chrome_android":"120","edge":"120","firefox":"117","firefox_android":"117","safari":"17.2","safari_ios":"17.2"}}},"offscreen-canvas":{"caniuse":"offscreencanvas","compat_features":["api.HTMLCanvasElement.transferControlToOffscreen","api.OffscreenCanvas","api.OffscreenCanvas.convertToBlob","api.OffscreenCanvas.getContext","api.OffscreenCanvas.height","api.OffscreenCanvas.OffscreenCanvas","api.OffscreenCanvas.transferToImageBitmap","api.OffscreenCanvas.width","api.OffscreenCanvasRenderingContext2D","api.OffscreenCanvasRenderingContext2D.arc","api.OffscreenCanvasRenderingContext2D.arcTo","api.OffscreenCanvasRenderingContext2D.beginPath","api.OffscreenCanvasRenderingContext2D.bezierCurveTo","api.OffscreenCanvasRenderingContext2D.canvas","api.OffscreenCanvasRenderingContext2D.clearRect","api.OffscreenCanvasRenderingContext2D.clip","api.OffscreenCanvasRenderingContext2D.closePath","api.OffscreenCanvasRenderingContext2D.createImageData","api.OffscreenCanvasRenderingContext2D.createLinearGradient","api.OffscreenCanvasRenderingContext2D.createPattern","api.OffscreenCanvasRenderingContext2D.createRadialGradient","api.OffscreenCanvasRenderingContext2D.direction","api.OffscreenCanvasRenderingContext2D.drawImage","api.OffscreenCanvasRenderingContext2D.ellipse","api.OffscreenCanvasRenderingContext2D.fill","api.OffscreenCanvasRenderingContext2D.fillRect","api.OffscreenCanvasRenderingContext2D.fillStyle","api.OffscreenCanvasRenderingContext2D.fillText","api.OffscreenCanvasRenderingContext2D.font","api.OffscreenCanvasRenderingContext2D.getImageData","api.OffscreenCanvasRenderingContext2D.getLineDash","api.OffscreenCanvasRenderingContext2D.getTransform","api.OffscreenCanvasRenderingContext2D.globalAlpha","api.OffscreenCanvasRenderingContext2D.globalCompositeOperation","api.OffscreenCanvasRenderingContext2D.imageSmoothingEnabled","api.OffscreenCanvasRenderingContext2D.isPointInPath","api.OffscreenCanvasRenderingContext2D.isPointInStroke","api.OffscreenCanvasRenderingContext2D.lineCap","api.OffscreenCanvasRenderingContext2D.lineDashOffset","api.OffscreenCanvasRenderingContext2D.lineJoin","api.OffscreenCanvasRenderingContext2D.lineTo","api.OffscreenCanvasRenderingContext2D.lineWidth","api.OffscreenCanvasRenderingContext2D.measureText","api.OffscreenCanvasRenderingContext2D.miterLimit","api.OffscreenCanvasRenderingContext2D.moveTo","api.OffscreenCanvasRenderingContext2D.putImageData","api.OffscreenCanvasRenderingContext2D.quadraticCurveTo","api.OffscreenCanvasRenderingContext2D.rect","api.OffscreenCanvasRenderingContext2D.resetTransform","api.OffscreenCanvasRenderingContext2D.restore","api.OffscreenCanvasRenderingContext2D.rotate","api.OffscreenCanvasRenderingContext2D.save","api.OffscreenCanvasRenderingContext2D.scale","api.OffscreenCanvasRenderingContext2D.setLineDash","api.OffscreenCanvasRenderingContext2D.setTransform","api.OffscreenCanvasRenderingContext2D.shadowBlur","api.OffscreenCanvasRenderingContext2D.shadowColor","api.OffscreenCanvasRenderingContext2D.shadowOffsetX","api.OffscreenCanvasRenderingContext2D.shadowOffsetY","api.OffscreenCanvasRenderingContext2D.stroke","api.OffscreenCanvasRenderingContext2D.strokeRect","api.OffscreenCanvasRenderingContext2D.strokeStyle","api.OffscreenCanvasRenderingContext2D.strokeText","api.OffscreenCanvasRenderingContext2D.textAlign","api.OffscreenCanvasRenderingContext2D.textBaseline","api.OffscreenCanvasRenderingContext2D.transform","api.OffscreenCanvasRenderingContext2D.translate"],"spec":"https://html.spec.whatwg.org/multipage/canvas.html#the-offscreencanvas-interface","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"80","chrome_android":"80","edge":"80","firefox":"105","firefox_android":"105","safari":"16.4","safari_ios":"16.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1624"},"overflow-shorthand":{"caniuse":"css-overflow","compat_features":["css.properties.overflow-x","css.properties.overflow-x.clip","css.properties.overflow-y","css.properties.overflow-y.clip","css.properties.overflow","css.properties.overflow.clip","css.properties.overflow.multiple_keywords","css.types.overflow","css.types.overflow.clip"],"spec":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow","status":{"baseline":"low","baseline_low_date":"2022-09-12","support":{"chrome":"90","chrome_android":"90","edge":"90","firefox":"81","firefox_android":"81","safari":"16","safari_ios":"16"}}},"picture-in-picture":{"caniuse":"picture-in-picture","spec":"https://w3c.github.io/picture-in-picture/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2444"},"popover":{"compat_features":["api.HTMLButtonElement.popoverTargetAction","api.HTMLButtonElement.popoverTargetElement","api.HTMLElement.beforetoggle_event","api.HTMLElement.hidePopover","api.HTMLElement.popover","api.HTMLElement.showPopover","api.HTMLElement.toggle_event","api.HTMLElement.togglePopover","api.HTMLInputElement.popoverTargetAction","api.HTMLInputElement.popoverTargetElement","api.ToggleEvent","api.ToggleEvent.ToggleEvent","api.ToggleEvent.newState","api.ToggleEvent.oldState","css.selectors.backdrop.popover","css.selectors.popover-open","html.global_attributes.popover","html.global_attributes.popovertarget","html.global_attributes.popovertargetaction"],"spec":"https://html.spec.whatwg.org/multipage/popover.html","status":{"baseline":false,"support":{"chrome":"114","chrome_android":"114","edge":"114","safari":"17","safari_ios":"17"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4191"},"read-write-pseudo-classes":{"caniuse":"css-read-only-write","compat_features":["css.selectors.read-only","css.selectors.read-write"],"spec":["https://html.spec.whatwg.org/multipage/semantics-other.html#selector-read-only","https://drafts.csswg.org/selectors-4/#rw-pseudos"],"status":{"baseline":"high","baseline_low_date":"2020-07-28","support":{"chrome":"1","chrome_android":"18","edge":"13","firefox":"78","firefox_android":"79","safari":"4","safari_ios":"3.2"}}},"registered-custom-properties":{"compat_features":["api.CSS.registerProperty_static","api.CSSPropertyRule","api.CSSPropertyRule.inherits","api.CSSPropertyRule.initialValue","api.CSSPropertyRule.name","api.CSSPropertyRule.syntax","css.at-rules.property","css.at-rules.property.inherits","css.at-rules.property.initial-value","css.at-rules.property.syntax"],"spec":"https://drafts.css-houdini.org/css-properties-values-api-1/","status":{"baseline":false,"support":{"chrome":"85","chrome_android":"85","edge":"85","safari":"16.4","safari_ios":"16.4"}}},"sanitizer":{"spec":"https://wicg.github.io/sanitizer-api/"},"scheduler":{"compat_features":["api.Scheduler","api.Scheduler.postTask","api.TaskController","api.TaskController.setPriority","api.TaskController.TaskController","api.TaskPriorityChangeEvent","api.TaskPriorityChangeEvent.previousPriority","api.TaskPriorityChangeEvent.TaskPriorityChangeEvent","api.TaskSignal","api.TaskSignal.priority","api.scheduler"],"spec":"https://wicg.github.io/scheduling-apis/","status":{"baseline":false,"support":{"chrome":"94","chrome_android":"94","edge":"94"}}},"scope":{"spec":"https://drafts.csswg.org/css-cascade-6/#scope-atrule"},"scrollintoview":{"caniuse":"scrollintoview","compat_features":["api.Element.scrollIntoView","api.Element.scrollIntoView.options_parameter"],"spec":"https://drafts.csswg.org/cssom-view-1/#dom-element-scrollintoview","status":{"baseline":"high","baseline_low_date":"2020-09-16","support":{"chrome":"61","chrome_android":"61","edge":"79","firefox":"36","firefox_android":"36","safari":"14","safari_ios":"14"}}},"set-methods":{"compat_features":["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"],"spec":"https://tc39.es/proposal-set-methods/","status":{"baseline":false,"support":{"safari":"17","safari_ios":"17"}}},"shadow-dom":{"caniuse":"shadowdomv1","compat_features":["api.Element.attachShadow","api.Element.shadowRoot","api.Event.composed","api.Event.composedPath","api.HTMLSlotElement","api.HTMLSlotElement.slotchange_event","api.Node.getRootNode","api.Node.isConnected","api.ShadowRoot","api.ShadowRoot.host","api.ShadowRoot.mode","html.elements.slot"],"spec":"https://dom.spec.whatwg.org/#shadow-trees","status":{"baseline":"high","baseline_low_date":"2020-01-15","support":{"chrome":"54","chrome_android":"54","edge":"79","firefox":"63","firefox_android":"63","safari":"10.1","safari_ios":"10.3"}}},"sticky-positioning":{"caniuse":"css-sticky","compat_features":["css.properties.position.position_sticky_table_elements","css.properties.position.sticky"],"spec":"https://drafts.csswg.org/css-position-3/#stickypos-insets","status":{"baseline":"high","baseline_low_date":"2019-09-19","support":{"chrome":"56","chrome_android":"56","edge":"16","firefox":"59","firefox_android":"59","safari":"13","safari_ios":"13"}}},"structured-clone":{"compat_features":["api.structuredClone"],"spec":"https://html.spec.whatwg.org/multipage/structured-data.html#structured-cloning","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"98","chrome_android":"98","edge":"98","firefox":"94","firefox_android":"94","safari":"15.4","safari_ios":"15.4"}}},"subgrid":{"caniuse":"css-subgrid","compat_features":["css.properties.grid-template-columns.subgrid","css.properties.grid-template-rows.subgrid"],"spec":"https://drafts.csswg.org/css-grid-2/#subgrids","status":{"baseline":"low","baseline_low_date":"2023-09-15","support":{"chrome":"117","chrome_android":"117","edge":"117","firefox":"71","firefox_android":"79","safari":"16","safari_ios":"16"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4680"},"svg2-script-html-equivalence":{"compat_features":["api.SVGScriptElement.async","api.SVGScriptElement.defer","svg.elements.script.async","svg.elements.script.defer","svg.elements.script.type.module"],"spec":"https://svgwg.org/svg2-draft/interact.html#ScriptElement","status":{"baseline":false,"support":{"firefox":"117","firefox_android":"117"}}},"tabindex":{"caniuse":"tabindex-attr","compat_features":["api.HTMLElement.tabIndex","html.global_attributes.tabindex"],"spec":"https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex","status":{"baseline":"high","baseline_low_date":"2018-10-02","support":{"chrome":"1","chrome_android":"18","edge":"18","firefox":"1.5","firefox_android":"4","safari":"4","safari_ios":"3.2"}}},"temporal":{"caniuse":"temporal","spec":"https://tc39.es/proposal-temporal/"},"text-box-trim":{"alias":"leading-trim","spec":"https://drafts.csswg.org/css-inline-3/#leading-trim"},"text-indent":{"caniuse":"css-text-indent","compat_features":["css.properties.text-indent"],"spec":"https://drafts.csswg.org/css-text-3/#text-indent-property","status":{"baseline":"high","baseline_low_date":"2015-07-28","support":{"chrome":"1","chrome_android":"18","edge":"12","firefox":"1","firefox_android":"4","safari":"1","safari_ios":"1"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/130"},"view-transitions":{"caniuse":"view-transitions","compat_features":["api.Document.startViewTransition","api.ViewTransition","api.ViewTransition.finished","api.ViewTransition.ready","api.ViewTransition.skipTransition","api.ViewTransition.updateCallbackDone","css.properties.view-transition-name","css.selectors.view-transition-group","css.selectors.view-transition-image-pair","css.selectors.view-transition-new","css.selectors.view-transition-old","css.selectors.view-transition"],"spec":"https://drafts.csswg.org/css-view-transitions-1/","status":{"baseline":false,"support":{"chrome":"111","chrome_android":"111","edge":"111"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4383"},"viewport-relative-unit-variants":{"caniuse":"viewport-unit-variants","compat_features":["css.types.length.vb","css.types.length.vi","css.types.length.viewport_percentage_units_dynamic","css.types.length.viewport_percentage_units_large","css.types.length.viewport_percentage_units_small"],"spec":["https://drafts.csswg.org/css-values-4/#viewport-variants","https://drafts.csswg.org/css-values-4/#viewport-relative-lengths"],"status":{"baseline":"low","baseline_low_date":"2022-12-06","support":{"chrome":"108","chrome_android":"108","edge":"108","firefox":"101","firefox_android":"101","safari":"15.4","safari_ios":"15.4"}}},"viewport-relative-units":{"caniuse":"viewport-units","compat_features":["css.types.length.vh","css.types.length.vmax","css.types.length.vmin","css.types.length.vw"],"spec":"https://drafts.csswg.org/css-values-4/#viewport-relative-lengths","status":{"baseline":"high","baseline_low_date":"2017-10-17","support":{"chrome":"26","chrome_android":"26","edge":"16","firefox":"19","firefox_android":"19","safari":"7","safari_ios":"7"}}},"web-animations":{"caniuse":"web-animation","compat_features":["api.Animation","api.Animation.Animation","api.Animation.cancel_event","api.Animation.cancel","api.Animation.commitStyles","api.Animation.currentTime","api.Animation.effect","api.Animation.finish","api.Animation.finished","api.Animation.finish_event","api.Animation.id","api.Animation.pause","api.Animation.pending","api.Animation.persist","api.Animation.play","api.Animation.playbackRate","api.Animation.playState","api.Animation.ready","api.Animation.remove_event","api.Animation.replaceState","api.Animation.reverse","api.Animation.startTime","api.Animation.timeline","api.Animation.updatePlaybackRate","api.AnimationTimeline","api.AnimationTimeline.currentTime","api.AnimationEffect","api.AnimationEffect.getComputedTiming","api.AnimationEffect.getTiming","api.AnimationEffect.updateTiming","api.AnimationPlaybackEvent","api.AnimationPlaybackEvent.AnimationPlaybackEvent","api.AnimationPlaybackEvent.currentTime","api.AnimationPlaybackEvent.timelineTime","api.KeyframeEffect","api.KeyframeEffect.KeyframeEffect","api.KeyframeEffect.composite","api.KeyframeEffect.getKeyframes","api.KeyframeEffect.pseudoElement","api.KeyframeEffect.setKeyframes","api.KeyframeEffect.target","api.DocumentTimeline","api.DocumentTimeline.DocumentTimeline","api.Document.getAnimations","api.Document.timeline","api.Element.animate"],"spec":"https://drafts.csswg.org/web-animations-1/","status":{"baseline":"low","baseline_low_date":"2022-09-12","support":{"chrome":"84","chrome_android":"84","edge":"84","firefox":"80","firefox_android":"80","safari":"16","safari_ios":"16"}}},"webcodecs":{"caniuse":"webcodecs","compat_features":["api.AudioData","api.AudioData.allocationSize","api.AudioData.AudioData","api.AudioData.clone","api.AudioData.close","api.AudioData.copyTo","api.AudioData.duration","api.AudioData.format","api.AudioData.numberOfChannels","api.AudioData.numberOfFrames","api.AudioData.sampleRate","api.AudioData.timestamp","api.AudioDecoder","api.AudioDecoder.AudioDecoder","api.AudioDecoder.close","api.AudioDecoder.configure","api.AudioDecoder.decode","api.AudioDecoder.decodeQueueSize","api.AudioDecoder.dequeue_event","api.AudioDecoder.flush","api.AudioDecoder.isConfigSupported_static","api.AudioDecoder.reset","api.AudioDecoder.state","api.AudioEncoder","api.AudioEncoder.AudioEncoder","api.AudioEncoder.close","api.AudioEncoder.configure","api.AudioEncoder.dequeue_event","api.AudioEncoder.encode","api.AudioEncoder.encodeQueueSize","api.AudioEncoder.flush","api.AudioEncoder.isConfigSupported_static","api.AudioEncoder.reset","api.AudioEncoder.state","api.EncodedAudioChunk","api.EncodedAudioChunk.byteLength","api.EncodedAudioChunk.copyTo","api.EncodedAudioChunk.duration","api.EncodedAudioChunk.EncodedAudioChunk","api.EncodedAudioChunk.timestamp","api.EncodedAudioChunk.type","api.EncodedVideoChunk","api.EncodedVideoChunk.byteLength","api.EncodedVideoChunk.copyTo","api.EncodedVideoChunk.duration","api.EncodedVideoChunk.EncodedVideoChunk","api.EncodedVideoChunk.timestamp","api.EncodedVideoChunk.type","api.ImageDecoder","api.ImageDecoder.close","api.ImageDecoder.complete","api.ImageDecoder.completed","api.ImageDecoder.decode","api.ImageDecoder.ImageDecoder","api.ImageDecoder.isTypeSupported_static","api.ImageDecoder.reset","api.ImageDecoder.tracks","api.ImageDecoder.type","api.ImageTrack","api.ImageTrack.animated","api.ImageTrack.frameCount","api.ImageTrack.repetitionCount","api.ImageTrack.selected","api.ImageTrackList","api.ImageTrackList.length","api.ImageTrackList.ready","api.ImageTrackList.selectedIndex","api.ImageTrackList.selectedTrack","api.VideoColorSpace","api.VideoColorSpace.fullRange","api.VideoColorSpace.matrix","api.VideoColorSpace.primaries","api.VideoColorSpace.toJSON","api.VideoColorSpace.transfer","api.VideoColorSpace.VideoColorSpace","api.VideoDecoder","api.VideoDecoder.close","api.VideoDecoder.configure","api.VideoDecoder.decode","api.VideoDecoder.decodeQueueSize","api.VideoDecoder.dequeue_event","api.VideoDecoder.flush","api.VideoDecoder.isConfigSupported_static","api.VideoDecoder.reset","api.VideoDecoder.state","api.VideoDecoder.VideoDecoder","api.VideoEncoder","api.VideoEncoder.close","api.VideoEncoder.configure","api.VideoEncoder.dequeue_event","api.VideoEncoder.encode","api.VideoEncoder.encodeQueueSize","api.VideoEncoder.flush","api.VideoEncoder.isConfigSupported_static","api.VideoEncoder.reset","api.VideoEncoder.state","api.VideoEncoder.VideoEncoder","api.VideoFrame","api.VideoFrame.allocationSize","api.VideoFrame.clone","api.VideoFrame.close","api.VideoFrame.codedHeight","api.VideoFrame.codedRect","api.VideoFrame.codedWidth","api.VideoFrame.colorSpace","api.VideoFrame.copyTo","api.VideoFrame.displayHeight","api.VideoFrame.displayWidth","api.VideoFrame.duration","api.VideoFrame.format","api.VideoFrame.timestamp","api.VideoFrame.VideoFrame","api.VideoFrame.visibleRect"],"spec":"https://w3c.github.io/webcodecs/","status":{"baseline":false,"support":{"chrome":"106","chrome_android":"106","edge":"106"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3464"},"webdriver-bidi":{"spec":"https://w3c.github.io/webdriver-bidi/"},"webhid":{"caniuse":"webhid","compat_features":["api.HID","api.HID.connect_event","api.HID.disconnect_event","api.HID.getDevices","api.HID.requestDevice","api.HIDConnectionEvent","api.HIDConnectionEvent.HIDConnectionEvent","api.HIDConnectionEvent.device","api.HIDDevice","api.HIDDevice.close","api.HIDDevice.collections","api.HIDDevice.inputreport_event","api.HIDDevice.open","api.HIDDevice.opened","api.HIDDevice.productId","api.HIDDevice.productName","api.HIDDevice.receiveFeatureReport","api.HIDDevice.sendFeatureReport","api.HIDDevice.sendReport","api.HIDDevice.vendorId","api.HIDInputReportEvent","api.HIDInputReportEvent.data","api.HIDInputReportEvent.device","api.HIDInputReportEvent.reportId","api.Navigator.hid","http.headers.Permissions-Policy.hid"],"spec":"https://wicg.github.io/webhid/","status":{"baseline":false,"support":{"chrome":"89","edge":"89"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2865"},"webp":{"caniuse":"webp","spec":"https://www.ietf.org/archive/id/draft-zern-webp-13.html","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3797"},"webtransport":{"caniuse":"webtransport","compat_features":["api.WebTransport","api.WebTransport.WebTransport","api.WebTransport.close","api.WebTransport.closed","api.WebTransport.createBidirectionalStream","api.WebTransport.createUnidirectionalStream","api.WebTransport.datagrams","api.WebTransport.incomingBidirectionalStreams","api.WebTransport.incomingUnidirectionalStreams","api.WebTransport.ready","api.WebTransportBidirectionalStream","api.WebTransportBidirectionalStream.readable","api.WebTransportBidirectionalStream.writable","api.WebTransportDatagramDuplexStream","api.WebTransportDatagramDuplexStream.incomingHighWaterMark","api.WebTransportDatagramDuplexStream.incomingMaxAge","api.WebTransportDatagramDuplexStream.maxDatagramSize","api.WebTransportDatagramDuplexStream.outgoingHighWaterMark","api.WebTransportDatagramDuplexStream.outgoingMaxAge","api.WebTransportDatagramDuplexStream.readable","api.WebTransportDatagramDuplexStream.writable","api.WebTransportError","api.WebTransportError.WebTransportError","api.WebTransportError.source","api.WebTransportError.streamErrorCode"],"spec":"https://w3c.github.io/webtransport/","status":{"baseline":false,"support":{"chrome":"97","chrome_android":"97","edge":"97"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3472"},"webusb":{"caniuse":"webusb","compat_features":["api.Navigator.usb","api.USB","api.USB.connect_event","api.USB.disconnect_event","api.USB.getDevices","api.USB.requestDevice","api.USBAlternateInterface","api.USBAlternateInterface.alternateSetting","api.USBAlternateInterface.endpoints","api.USBAlternateInterface.interfaceClass","api.USBAlternateInterface.interfaceName","api.USBAlternateInterface.interfaceProtocol","api.USBAlternateInterface.interfaceSubclass","api.USBAlternateInterface.USBAlternateInterface","api.USBConfiguration","api.USBConfiguration.configurationName","api.USBConfiguration.configurationValue","api.USBConfiguration.interfaces","api.USBConfiguration.USBConfiguration","api.USBConnectionEvent","api.USBConnectionEvent.device","api.USBConnectionEvent.USBConnectionEvent","api.USBDevice","api.USBDevice.claimInterface","api.USBDevice.clearHalt","api.USBDevice.close","api.USBDevice.configuration","api.USBDevice.configurations","api.USBDevice.controlTransferIn","api.USBDevice.controlTransferOut","api.USBDevice.deviceClass","api.USBDevice.deviceProtocol","api.USBDevice.deviceSubclass","api.USBDevice.deviceVersionMajor","api.USBDevice.deviceVersionMinor","api.USBDevice.deviceVersionSubminor","api.USBDevice.forget","api.USBDevice.isochronousTransferIn","api.USBDevice.isochronousTransferOut","api.USBDevice.manufacturerName","api.USBDevice.open","api.USBDevice.opened","api.USBDevice.productId","api.USBDevice.productName","api.USBDevice.releaseInterface","api.USBDevice.reset","api.USBDevice.selectAlternateInterface","api.USBDevice.selectConfiguration","api.USBDevice.serialNumber","api.USBDevice.transferIn","api.USBDevice.transferOut","api.USBDevice.usbVersionMajor","api.USBDevice.usbVersionMinor","api.USBDevice.usbVersionSubminor","api.USBDevice.vendorId","api.USBEndpoint","api.USBEndpoint.direction","api.USBEndpoint.endpointNumber","api.USBEndpoint.packetSize","api.USBEndpoint.type","api.USBEndpoint.USBEndpoint","api.USBInterface","api.USBInterface.alternate","api.USBInterface.alternates","api.USBInterface.claimed","api.USBInterface.interfaceNumber","api.USBInterface.USBInterface","api.USBInTransferResult","api.USBInTransferResult.data","api.USBInTransferResult.status","api.USBInTransferResult.USBInTransferResult","api.USBIsochronousInTransferPacket","api.USBIsochronousInTransferPacket.data","api.USBIsochronousInTransferPacket.status","api.USBIsochronousInTransferPacket.USBIsochronousInTransferPacket","api.USBIsochronousInTransferResult","api.USBIsochronousInTransferResult.data","api.USBIsochronousInTransferResult.packets","api.USBIsochronousInTransferResult.USBIsochronousInTransferResult","api.USBIsochronousOutTransferPacket","api.USBIsochronousOutTransferPacket.bytesWritten","api.USBIsochronousOutTransferPacket.status","api.USBIsochronousOutTransferPacket.USBIsochronousOutTransferPacket","api.USBIsochronousOutTransferResult","api.USBIsochronousOutTransferResult.packets","api.USBIsochronousOutTransferResult.USBIsochronousOutTransferResult","api.USBOutTransferResult","api.USBOutTransferResult.bytesWritten","api.USBOutTransferResult.status","api.USBOutTransferResult.USBOutTransferResult","api.WorkerNavigator.usb","http.headers.Permissions-Policy.usb"],"spec":"https://wicg.github.io/webusb/","status":{"baseline":false,"support":{"chrome":"101","chrome_android":"101","edge":"101"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1519"},"webvtt":{"caniuse":"webvtt","compat_features":["api.VTTCue","api.VTTCue.VTTCue","api.VTTCue.align","api.VTTCue.getCueAsHTML","api.VTTCue.line","api.VTTCue.position","api.VTTCue.size","api.VTTCue.snapToLines","api.VTTCue.text","api.VTTCue.vertical"],"spec":"https://w3c.github.io/webvtt/","status":{"baseline":"high","baseline_low_date":"2020-01-15","support":{"chrome":"33","chrome_android":"33","edge":"79","firefox":"31","firefox_android":"31","safari":"8","safari_ios":"8"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/409"},"where":{"compat_features":["css.selectors.where","css.selectors.where.forgiving_selector_list"],"spec":"https://drafts.csswg.org/selectors-4/#zero-matches","status":{"baseline":"high","baseline_low_date":"2021-01-21","support":{"chrome":"88","chrome_android":"88","edge":"88","firefox":"82","firefox_android":"82","safari":"14","safari_ios":"14"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2431"}}
|
|
1
|
+
{"aborting":{"caniuse":"abortcontroller","compat_features":["api.AbortController","api.AbortController.AbortController","api.AbortController.abort","api.AbortController.signal","api.AbortSignal","api.AbortSignal.abort_event","api.AbortSignal.aborted"],"name":"AbortController and AbortSignal","spec":"https://dom.spec.whatwg.org/#aborting-ongoing-activities"},"anchor-positioning":{"name":"Anchor positioning","spec":"https://drafts.csswg.org/css-anchor-position-1/#anchoring"},"appearance":{"compat_features":["css.properties.appearance","css.properties.appearance.auto","css.properties.appearance.compat-auto","css.properties.appearance.menulist-button","css.properties.appearance.none","css.properties.appearance.textfield"],"name":"appearance","spec":"https://drafts.csswg.org/css-ui-4/#appearance-switching","usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/658"},"array":{"compat_features":["javascript.builtins.Array","javascript.builtins.Array.Array","javascript.builtins.Array.concat","javascript.builtins.Array.join","javascript.builtins.Array.length","javascript.builtins.Array.pop","javascript.builtins.Array.push","javascript.builtins.Array.reverse","javascript.builtins.Array.shift","javascript.builtins.Array.slice","javascript.builtins.Array.sort","javascript.builtins.Array.toLocaleString","javascript.builtins.Array.toString","javascript.builtins.Array.unshift","javascript.grammar.array_literals"],"name":"Arrays","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array-objects","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array-constructor","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.concat","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.join","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-array-instances-length","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.pop","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.push","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reverse","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.shift","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.slice","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.sort","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tolocalestring","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tostring","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.unshift","https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-array-initializer"],"status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"1","chrome_android":"18","edge":"12","firefox":"1","firefox_android":"4","safari":"1","safari_ios":"1"}}},"array-at":{"compat_features":["javascript.builtins.Array.at","javascript.builtins.TypedArray.at"],"name":"Array at()","spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.at","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"92","chrome_android":"92","edge":"92","firefox":"90","firefox_android":"90","safari":"15.4","safari_ios":"15.4"}}},"array-by-copy":{"compat_features":["javascript.builtins.Array.toReversed","javascript.builtins.Array.toSorted","javascript.builtins.Array.toSpliced","javascript.builtins.Array.with","javascript.builtins.TypedArray.toReversed","javascript.builtins.TypedArray.toSorted","javascript.builtins.TypedArray.with"],"name":"Array by copy","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.toreversed","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tosorted","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.tospliced","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.with","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.toreversed","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tosorted","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.with"],"status":{"baseline":"low","baseline_low_date":"2023-07-04","support":{"chrome":"110","chrome_android":"110","edge":"110","firefox":"115","firefox_android":"115","safari":"16","safari_ios":"16"}}},"array-copywithin":{"compat_features":["javascript.builtins.Array.copyWithin","javascript.builtins.TypedArray.copyWithin"],"name":"Array copyWithin()","spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.copywithin","status":{"baseline":"high","baseline_high_date":"2018-03-30","baseline_low_date":"2015-09-30","support":{"chrome":"45","chrome_android":"45","edge":"12","firefox":"32","firefox_android":"32","safari":"9","safari_ios":"9"}}},"array-fill":{"compat_features":["javascript.builtins.Array.fill","javascript.builtins.TypedArray.fill"],"name":"Array fill()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.fill","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.fill"],"status":{"baseline":"high","baseline_high_date":"2018-03-01","baseline_low_date":"2015-09-01","support":{"chrome":"45","chrome_android":"45","edge":"12","firefox":"31","firefox_android":"31","safari":"8","safari_ios":"8"}}},"array-find":{"compat_features":["javascript.builtins.Array.find","javascript.builtins.Array.findIndex","javascript.builtins.TypedArray.find","javascript.builtins.TypedArray.findIndex"],"name":"Array find() and findIndex()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.find","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.findindex","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.find","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findindex"],"status":{"baseline":"high","baseline_high_date":"2018-03-01","baseline_low_date":"2015-09-01","support":{"chrome":"45","chrome_android":"45","edge":"12","firefox":"25","firefox_android":"4","safari":"8","safari_ios":"8"}}},"array-findlast":{"compat_features":["javascript.builtins.Array.findLast","javascript.builtins.Array.findLastIndex","javascript.builtins.TypedArray.findLast","javascript.builtins.TypedArray.findLastIndex"],"name":"Array findLast() and findLastIndex()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.findlast","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.findlastindex","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlast","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.findlastindex"],"status":{"baseline":"low","baseline_low_date":"2022-08-23","support":{"chrome":"97","chrome_android":"97","edge":"97","firefox":"104","firefox_android":"104","safari":"15.4","safari_ios":"15.4"}}},"array-flat":{"caniuse":"array-flat","compat_features":["javascript.builtins.Array.flat","javascript.builtins.Array.flatMap"],"name":"Array flat() and flatMap()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flat","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.flatmap"],"status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"69","chrome_android":"69","edge":"79","firefox":"62","firefox_android":"62","safari":"12","safari_ios":"12"}}},"array-from":{"compat_features":["javascript.builtins.Array.from","javascript.builtins.TypedArray.from"],"name":"Array.from()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.from","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of"],"status":{"baseline":"high","baseline_high_date":"2018-03-30","baseline_low_date":"2015-09-30","support":{"chrome":"45","chrome_android":"45","edge":"12","firefox":"32","firefox_android":"32","safari":"9","safari_ios":"9"}}},"array-fromasync":{"compat_features":["javascript.builtins.Array.fromAsync"],"name":"Array.fromAsync()","spec":"https://tc39.es/proposal-array-from-async/#sec-array.fromAsync","status":{"baseline":"low","baseline_low_date":"2024-01-23","support":{"chrome":"121","chrome_android":"121","edge":"121","firefox":"115","firefox_android":"115","safari":"16.4","safari_ios":"16.4"}}},"array-group":{"compat_features":["javascript.builtins.Object.groupBy","javascript.builtins.Map.groupBy"],"name":"Array grouping","spec":"https://tc39.es/proposal-array-grouping/","status":{"baseline":false,"support":{"chrome":"117","chrome_android":"117","edge":"117","firefox":"119","firefox_android":"119"}}},"array-includes":{"compat_features":["javascript.builtins.Array.includes","javascript.builtins.TypedArray.includes"],"name":"Array includes()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.includes","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.includes"],"status":{"baseline":"high","baseline_high_date":"2018-06-01","baseline_low_date":"2015-12-01","support":{"chrome":"47","chrome_android":"47","edge":"14","firefox":"43","firefox_android":"43","safari":"9","safari_ios":"9"}}},"array-isarray":{"compat_features":["javascript.builtins.Array.isArray"],"name":"Array.isArray()","spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.isarray","status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"4","chrome_android":"18","edge":"12","firefox":"4","firefox_android":"4","safari":"5","safari_ios":"5"}}},"array-iteration-methods":{"compat_features":["javascript.builtins.Array.every","javascript.builtins.Array.filter","javascript.builtins.Array.forEach","javascript.builtins.Array.indexOf","javascript.builtins.Array.lastIndexOf","javascript.builtins.Array.map","javascript.builtins.Array.reduce","javascript.builtins.Array.reduceRight","javascript.builtins.Array.some"],"name":"Array iteration methods","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.every","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.filter","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.foreach","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.indexof","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.lastindexof","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.map","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduce","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.reduceright","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.some"],"status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"1","chrome_android":"18","edge":"12","firefox":"1.5","firefox_android":"4","safari":"3","safari_ios":"1"}}},"array-iterators":{"compat_features":["javascript.builtins.Array.@@iterator","javascript.builtins.Array.entries","javascript.builtins.Array.keys","javascript.builtins.Array.values"],"name":"Array iterators","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype-@@iterator","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.entries","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.keys","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.values"],"status":{"baseline":"high","baseline_high_date":"2019-03-20","baseline_low_date":"2016-09-20","support":{"chrome":"38","chrome_android":"38","edge":"12","firefox":"36","firefox_android":"36","safari":"10","safari_ios":"10"}}},"array-of":{"compat_features":["javascript.builtins.Array.of","javascript.builtins.TypedArray.of"],"name":"Array.of()","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.of","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.of"],"status":{"baseline":"high","baseline_high_date":"2018-03-30","baseline_low_date":"2015-09-30","support":{"chrome":"45","chrome_android":"39","edge":"12","firefox":"25","firefox_android":"25","safari":"9","safari_ios":"9"}}},"array-splice":{"compat_features":["javascript.builtins.Array.splice"],"name":"Array splice()","spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.splice","status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"1","chrome_android":"18","edge":"12","firefox":"1","firefox_android":"4","safari":"1","safari_ios":"1"}}},"aspect-ratio":{"compat_features":["css.properties.aspect-ratio","html.elements.img.aspect_ratio_computed_from_attributes","html.elements.video.aspect_ratio_computed_from_attributes"],"name":"aspect-ratio","spec":"https://drafts.csswg.org/css-sizing-4/#aspect-ratio","usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/657"},"async-await":{"caniuse":"async-functions","compat_features":["javascript.builtins.AsyncFunction","javascript.builtins.AsyncFunction.AsyncFunction","javascript.operators.async_function","javascript.operators.await","javascript.statements.async_function"],"name":"Async functions","spec":"https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-async-function-definitions","status":{"baseline":"high","baseline_high_date":"2019-10-05","baseline_low_date":"2017-04-05","support":{"chrome":"55","chrome_android":"55","edge":"15","firefox":"52","firefox_android":"52","safari":"10.1","safari_ios":"10.3"}}},"async-clipboard":{"caniuse":"async-clipboard","compat_features":["api.Clipboard","api.Clipboard.read","api.Clipboard.readText","api.Clipboard.write","api.Clipboard.writeText","api.ClipboardEvent","api.ClipboardEvent.ClipboardEvent","api.ClipboardEvent.clipboardData","api.ClipboardItem","api.ClipboardItem.ClipboardItem","api.ClipboardItem.getType","api.ClipboardItem.presentationStyle","api.ClipboardItem.types","api.Navigator.clipboard","api.Permissions.permission_clipboard-read"],"name":"Async clipboard","spec":"https://w3c.github.io/clipboard-apis/#async-clipboard-api","status":{"baseline":false,"support":{}}},"autofill":{"compat_features":["css.selectors.autofill"],"name":":autofill","spec":"https://html.spec.whatwg.org/multipage/semantics-other.html#selector-autofill"},"avif":{"caniuse":"avif","name":"AVIF","spec":"https://aomediacodec.github.io/av1-avif/","status":{"baseline":"low","baseline_low_date":"2024-01-26","support":{"chrome":"85","chrome_android":"85","edge":"121","firefox":"93","firefox_android":"93","safari":"16","safari_ios":"16"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3798"},"backdrop-filter":{"caniuse":"css-backdrop-filter","compat_features":["css.properties.backdrop-filter"],"name":"backdrop-filter","spec":"https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty"},"background-fetch":{"compat_features":["api.BackgroundFetchEvent","api.BackgroundFetchEvent.BackgroundFetchEvent","api.BackgroundFetchEvent.registration","api.BackgroundFetchManager","api.BackgroundFetchManager","api.BackgroundFetchManager.fetch","api.BackgroundFetchManager.get","api.BackgroundFetchManager.getIds","api.BackgroundFetchRecord","api.BackgroundFetchRecord.request","api.BackgroundFetchRecord.responseReady","api.BackgroundFetchRegistration.abort","api.BackgroundFetchRegistration.downloaded","api.BackgroundFetchRegistration.downloadTotal","api.BackgroundFetchRegistration.failureReason","api.BackgroundFetchRegistration.id","api.BackgroundFetchRegistration.match","api.BackgroundFetchRegistration.matchAll","api.BackgroundFetchRegistration.progress_event","api.BackgroundFetchRegistration.recordsAvailable","api.BackgroundFetchRegistration.result","api.BackgroundFetchRegistration.uploaded","api.BackgroundFetchRegistration.uploadTotal","api.BackgroundFetchUpdateUIEvent","api.BackgroundFetchUpdateUIEvent.BackgroundFetchUpdateUIEvent","api.BackgroundFetchUpdateUIEvent.updateUI","api.ServiceWorkerGlobalScope.backgroundfetchabort_event","api.ServiceWorkerGlobalScope.backgroundfetchclick_event","api.ServiceWorkerGlobalScope.backgroundfetchfail_event","api.ServiceWorkerGlobalScope.backgroundfetchsuccess_event","api.ServiceWorkerRegistration.backgroundFetch"],"name":"Background fetch","spec":"https://wicg.github.io/background-fetch/","status":{"baseline":false,"support":{"chrome":"74","chrome_android":"74","edge":"79"}}},"background-gradients":{"caniuse":["css-gradients","css-repeating-gradients","css-conic-gradients"],"compat_features":["css.properties.background-image.gradients","css.types.image.gradient.linear-gradient","css.types.image.gradient.linear-gradient.doubleposition","css.types.image.gradient.linear-gradient.interpolation_hints","css.types.image.gradient.linear-gradient.to","css.types.image.gradient.linear-gradient.unitless_0_angle","css.types.image.gradient.radial-gradient","css.types.image.gradient.radial-gradient.at","css.types.image.gradient.radial-gradient.doubleposition","css.types.image.gradient.radial-gradient.interpolation_hints","css.types.image.gradient.conic-gradient","css.types.image.gradient.conic-gradient.doubleposition","css.types.image.gradient.repeating-linear-gradient","css.types.image.gradient.repeating-linear-gradient.doubleposition","css.types.image.gradient.repeating-linear-gradient.interpolation_hints","css.types.image.gradient.repeating-linear-gradient.to","css.types.image.gradient.repeating-linear-gradient.unitless_0_angle","css.types.image.gradient.repeating-radial-gradient","css.types.image.gradient.repeating-radial-gradient.at","css.types.image.gradient.repeating-radial-gradient.doubleposition","css.types.image.gradient.repeating-radial-gradient.interpolation_hints","css.types.image.gradient.repeating-conic-gradient"],"name":"Background gradients","spec":"https://drafts.csswg.org/css-images-4/#gradients"},"bigint":{"caniuse":"bigint","compat_features":["javascript.builtins.BigInt","javascript.builtins.BigInt.asIntN","javascript.builtins.BigInt.asUintN","javascript.builtins.BigInt.BigInt","javascript.builtins.BigInt.toLocaleString","javascript.builtins.BigInt.toString","javascript.builtins.BigInt.valueOf"],"name":"BigInt","spec":"https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-bigint-objects","status":{"baseline":"high","baseline_high_date":"2023-03-16","baseline_low_date":"2020-09-16","support":{"chrome":"67","chrome_android":"67","edge":"79","firefox":"68","firefox_android":"68","safari":"14","safari_ios":"14"}}},"border-image":{"caniuse":"border-image","compat_features":["css.properties.border-image","css.properties.border-image.fill","css.properties.border-image.gradient","css.properties.border-image.optional_border_image_slice","css.properties.border-image-outset","css.properties.border-image-repeat","css.properties.border-image-repeat.round","css.properties.border-image-repeat.space","css.properties.border-image-slice","css.properties.border-image-source","css.properties.border-image-width"],"name":"Border images","spec":"https://drafts.csswg.org/css-backgrounds-3/#border-images","status":{"baseline":"high","baseline_high_date":"2019-08-01","baseline_low_date":"2017-02-01","support":{"chrome":"56","chrome_android":"56","edge":"12","firefox":"50","firefox_android":"50","safari":"9.1","safari_ios":"9.3"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/43"},"broadcast-channel":{"caniuse":"broadcastchannel","compat_features":["api.BroadcastChannel","api.BroadcastChannel.BroadcastChannel","api.BroadcastChannel.close","api.BroadcastChannel.message_event","api.BroadcastChannel.messageerror_event","api.BroadcastChannel.name","api.BroadcastChannel.postMessage"],"name":"BroadcastChannel","spec":"https://html.spec.whatwg.org/multipage/web-messaging.html#broadcasting-to-other-browsing-contexts","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"60","chrome_android":"60","edge":"79","firefox":"57","firefox_android":"57","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1447"},"canvas-context-lost":{"compat_features":["api.CanvasRenderingContext2D.isContextLost","api.HTMLCanvasElement.contextlost_event","api.HTMLCanvasElement.contextrestored_event","api.OffscreenCanvas.contextlost_event","api.OffscreenCanvas.contextrestored_event","api.OffscreenCanvasRenderingContext2D.isContextLost"],"name":"contextlost and contextrestored","spec":"https://html.spec.whatwg.org/multipage/webappapis.html#context-lost-steps","status":{"baseline":false,"support":{"chrome":"99","chrome_android":"99","edge":"99"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3974"},"cap":{"compat_features":["api.CSS.cap_static","css.types.length-percentage.cap","css.types.length.cap"],"name":"cap unit","spec":"https://drafts.csswg.org/css-values-4/#cap"},"cascade-layers":{"caniuse":"css-cascade-layers","compat_features":["css.at-rules.layer","css.at-rules.import.layer","api.CSSImportRule.layerName","api.CSSLayerBlockRule","api.CSSLayerBlockRule.name","api.CSSLayerStatementRule","api.CSSLayerStatementRule.nameList"],"name":"Cascade layers","spec":"https://drafts.csswg.org/css-cascade-5/#layering","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"99","chrome_android":"99","edge":"99","firefox":"97","firefox_android":"97","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4007"},"check-visibility":{"compat_features":["api.Element.checkVisibility","api.Element.checkVisibility.options_checkOpacity_parameter","api.Element.checkVisibility.options_checkVisibilityCSS_parameter"],"name":"checkVisibility()","spec":"https://drafts.csswg.org/cssom-view-1/#dom-element-checkvisibility"},"class-syntax":{"caniuse":"es6-class","compat_features":["javascript.classes","javascript.classes.constructor","javascript.classes.extends","javascript.classes.static","javascript.statements.class"],"name":"Classes","spec":"https://tc39.es/ecma262/multipage/ecmascript-language-functions-and-classes.html#sec-class-definitions","status":{"baseline":"high","baseline_high_date":"2019-09-27","baseline_low_date":"2017-03-27","support":{"chrome":"42","chrome_android":"42","edge":"13","firefox":"45","firefox_android":"45","safari":"10.1","safari_ios":"10.3"}}},"color-function":{"caniuse":"css-color-function","compat_features":["css.types.color.color","css.types.color.color.mixed_type_parameters"],"name":"color()","spec":"https://drafts.csswg.org/css-color-4/#color-function","status":{"baseline":"low","baseline_low_date":"2023-05-09","support":{"chrome":"111","chrome_android":"111","edge":"111","firefox":"113","firefox_android":"113","safari":"15","safari_ios":"15"}}},"color-mix":{"compat_features":["css.types.color.color-mix"],"name":"color-mix()","spec":"https://drafts.csswg.org/css-color-5/#color-mix","status":{"baseline":"low","baseline_low_date":"2023-05-09","support":{"chrome":"111","chrome_android":"111","edge":"111","firefox":"113","firefox_android":"113","safari":"16.2","safari_ios":"16.2"}}},"colrv1":{"caniuse":"colr-v1","compat_features":["css.at-rules.font-face.OpenType_COLRv1"],"name":"COLRv1","spec":"https://www.iso.org/standard/87621.html"},"compression-streams":{"compat_features":["api.CompressionStream","api.CompressionStream.CompressionStream","api.CompressionStream.readable","api.CompressionStream.writable","api.DecompressionStream","api.DecompressionStream.DecompressionStream","api.DecompressionStream.readable","api.DecompressionStream.writable"],"name":"Compression streams","spec":"https://wicg.github.io/compression/","usage_stats":["https://chromestatus.com/metrics/feature/timeline/popularity/3060","https://chromestatus.com/metrics/feature/timeline/popularity/3061"]},"constraint-validation":{"caniuse":"constraint-validation","compat_features":["api.ElementInternals.checkValidity","api.ElementInternals.reportValidity","api.ElementInternals.setValidity","api.ElementInternals.validationMessage","api.ElementInternals.validity","api.ElementInternals.willValidate","api.HTMLButtonElement.checkValidity","api.HTMLButtonElement.reportValidity","api.HTMLButtonElement.setCustomValidity","api.HTMLButtonElement.validationMessage","api.HTMLButtonElement.validity","api.HTMLButtonElement.willValidate","api.HTMLFieldSetElement.checkValidity","api.HTMLFieldSetElement.reportValidity","api.HTMLFieldSetElement.setCustomValidity","api.HTMLFieldSetElement.validationMessage","api.HTMLFieldSetElement.validity","api.HTMLFieldSetElement.willValidate","api.HTMLFormElement.checkValidity","api.HTMLFormElement.reportValidity","api.HTMLInputElement.checkValidity","api.HTMLInputElement.reportValidity","api.HTMLInputElement.setCustomValidity","api.HTMLInputElement.validationMessage","api.HTMLInputElement.validity","api.HTMLInputElement.willValidate","api.HTMLObjectElement.checkValidity","api.HTMLObjectElement.reportValidity","api.HTMLObjectElement.setCustomValidity","api.HTMLObjectElement.validationMessage","api.HTMLObjectElement.validity","api.HTMLObjectElement.willValidate","api.HTMLOutputElement.checkValidity","api.HTMLOutputElement.reportValidity","api.HTMLOutputElement.setCustomValidity","api.HTMLOutputElement.validationMessage","api.HTMLOutputElement.validity","api.HTMLOutputElement.willValidate","api.HTMLSelectElement.checkValidity","api.HTMLSelectElement.reportValidity","api.HTMLSelectElement.setCustomValidity","api.HTMLSelectElement.validationMessage","api.HTMLSelectElement.validity","api.HTMLSelectElement.willValidate","api.HTMLTextAreaElement.checkValidity","api.HTMLTextAreaElement.reportValidity","api.HTMLTextAreaElement.setCustomValidity","api.HTMLTextAreaElement.validationMessage","api.HTMLTextAreaElement.validity","api.HTMLTextAreaElement.willValidate","api.ValidityState","api.ValidityState.badInput","api.ValidityState.customError","api.ValidityState.patternMismatch","api.ValidityState.rangeOverflow","api.ValidityState.rangeUnderflow","api.ValidityState.stepMismatch","api.ValidityState.tooLong","api.ValidityState.tooShort","api.ValidityState.typeMismatch","api.ValidityState.valid","api.ValidityState.valueMissing"],"name":"Constraint validation API","spec":"https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#the-constraint-validation-api","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"77","chrome_android":"77","edge":"79","firefox":"98","firefox_android":"98","safari":"16.4","safari_ios":"16.4"}}},"constructed-stylesheets":{"compat_features":["api.CSSStyleSheet.CSSStyleSheet","api.CSSStyleSheet.replace","api.CSSStyleSheet.replaceSync","api.Document.adoptedStyleSheets","api.ShadowRoot.adoptedStyleSheets"],"name":"Constructed stylesheets","spec":["https://drafts.csswg.org/cssom-1/#dom-cssstylesheet-cssstylesheet","https://drafts.csswg.org/cssom-1/#dom-documentorshadowroot-adoptedstylesheets"],"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2846"},"container-queries":{"caniuse":"css-container-queries","compat_features":["api.CSSContainerRule","api.CSSContainerRule.containerName","api.CSSContainerRule.containerQuery","css.at-rules.container","css.properties.contain","css.properties.contain.inline-size","css.properties.contain.style","css.properties.container","css.properties.container-name","css.properties.container-type","css.types.length.container_query_length_units"],"name":"Container queries","spec":"https://drafts.csswg.org/css-contain-3/#container-queries","status":{"baseline":"low","baseline_low_date":"2023-02-14","support":{"chrome":"105","chrome_android":"105","edge":"105","firefox":"110","firefox_android":"110","safari":"16","safari_ios":"16"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4165"},"container-style-queries":{"caniuse":"css-container-queries-style","compat_features":["css.at-rules.container.style_queries_for_custom_properties"],"name":"Container style queries","spec":"https://drafts.csswg.org/css-contain-3/#style-container","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4550"},"content-visibility":{"caniuse":"css-content-visibility","compat_features":["api.ContentVisibilityAutoStateChangeEvent","api.ContentVisibilityAutoStateChangeEvent.ContentVisibilityAutoStateChangeEvent","api.ContentVisibilityAutoStateChangeEvent.skipped","css.properties.content-visibility"],"name":"content-visibility","spec":"https://drafts.csswg.org/css-contain-2/#content-visibility","status":{"baseline":false,"support":{"chrome":"108","chrome_android":"108","edge":"108"}}},"custom-elements":{"caniuse":"custom-elementsv1","compat_features":["api.CustomElementRegistry","api.CustomElementRegistry.builtin_element_support","api.CustomElementRegistry.define","api.Window.customElements","css.selectors.defined","css.selectors.host","css.selectors.host-context","css.selectors.part"],"name":"Custom elements","spec":"https://html.spec.whatwg.org/multipage/custom-elements.html","status":{"baseline":false,"support":{"chrome":"73","chrome_android":"73","edge":"79"}}},"custom-properties":{"caniuse":"css-variables","compat_features":["css.properties.custom-property","css.properties.custom-property.var"],"name":"Custom properties","spec":"https://drafts.csswg.org/css-variables-1/","status":{"baseline":"high","baseline_high_date":"2019-10-05","baseline_low_date":"2017-04-05","support":{"chrome":"49","chrome_android":"49","edge":"15","firefox":"31","firefox_android":"31","safari":"9.1","safari_ios":"9.3"}}},"declarative-shadow-dom":{"caniuse":"declarative-shadow-dom","compat_features":["api.HTMLTemplateElement.shadowRootMode","html.elements.template.shadowrootmode"],"name":"Declarative shadow DOM","spec":"https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4421"},"default":{"caniuse":"css-default-pseudo","compat_features":["css.selectors.default"],"name":":default","spec":"https://drafts.csswg.org/selectors-4/#the-default-pseudo","status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"10","chrome_android":"18","edge":"79","firefox":"4","firefox_android":"4","safari":"5","safari_ios":"5"}}},"details":{"compat_features":["api.HTMLDetailsElement","api.HTMLDetailsElement.open","api.HTMLDetailsElement.toggle_event","html.elements.details","html.elements.details.open"],"name":"<details>","spec":"https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element"},"details-name":{"compat_features":["api.HTMLDetailsElement.name","html.elements.details.name"],"name":"Mutually exclusive <details> elements","spec":"https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-name"},"device-posture":{"name":"Device posture","spec":"https://w3c.github.io/device-posture/","status":{"baseline":false,"support":{}}},"dialog":{"caniuse":"dialog","compat_features":["api.HTMLDialogElement","api.HTMLDialogElement.cancel_event","api.HTMLDialogElement.close","api.HTMLDialogElement.close_event","api.HTMLDialogElement.open","api.HTMLDialogElement.returnValue","api.HTMLDialogElement.show","api.HTMLDialogElement.showModal","css.selectors.backdrop.dialog","html.elements.dialog","html.elements.dialog.open"],"name":"<dialog>","spec":"https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"37","chrome_android":"37","edge":"79","firefox":"98","firefox_android":"98","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/481"},"document-picture-in-picture":{"name":"Document picture-in-picture","spec":"https://wicg.github.io/document-picture-in-picture/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4397"},"edit-context":{"name":"EditContext","spec":"https://w3c.github.io/edit-context/"},"fast-seek":{"compat_features":["api.HTMLMediaElement.fastSeek"],"name":"fastSeek()","spec":"https://html.spec.whatwg.org/multipage/media.html#dom-media-fastseek-dev","status":{"baseline":false,"support":{"firefox":"31","firefox_android":"31","safari":"8","safari_ios":"8"}}},"fetch-priority":{"compat_features":["api.fetch.init_priority_parameter","api.HTMLImageElement.fetchPriority","api.HTMLLinkElement.fetchPriority","api.HTMLScriptElement.fetchPriority","api.Request.Request.init_priority_parameter","html.elements.img.fetchpriority","html.elements.link.fetchpriority","html.elements.script.fetchpriority"],"name":"Fetch priority","spec":["https://fetch.spec.whatwg.org/#request-priority","https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes"],"status":{"baseline":false,"support":{"chrome":"102","chrome_android":"102","edge":"102","safari":"17.2","safari_ios":"17.2"}}},"flexbox":{"caniuse":"flexbox","compat_features":["css.properties.align-content.flex_context","css.properties.align-content.flex_context.stretch","css.properties.align-items.flex_context","css.properties.align-items.flex_context.baseline","css.properties.align-self.flex_context","css.properties.align-self.flex_context.baseline","css.properties.align-self.flex_context.stretch","css.properties.display.flex","css.properties.display.inline-flex","css.properties.flex","css.properties.flex-basis","css.properties.flex-basis.auto","css.properties.flex-direction","css.properties.flex-flow","css.properties.flex-grow","css.properties.flex-shrink","css.properties.flex-wrap","css.properties.justify-content.flex_context","css.properties.justify-content.flex_context.stretch","css.properties.justify-items.flex_context","css.properties.justify-self.flex_context","css.properties.order","css.properties.place-content.flex_context","css.properties.place-items.flex_context","css.properties.place-self.flex_context"],"name":"Flexbox","spec":"https://drafts.csswg.org/css-flexbox-1/","status":{"baseline":"high","baseline_high_date":"2023-03-22","baseline_low_date":"2020-09-22","support":{"chrome":"59","chrome_android":"59","edge":"79","firefox":"81","firefox_android":"81","safari":"11","safari_ios":"11"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1692"},"flexbox-gap":{"caniuse":"flexbox-gap","name":"Flexbox gap","spec":"https://drafts.csswg.org/css-align-3/#gaps"},"focus-visible":{"caniuse":"css-focus-visible","compat_features":["css.selectors.focus-visible"],"name":":focus-visible","spec":"https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"86","chrome_android":"86","edge":"86","firefox":"85","firefox_android":"85","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2388"},"font-optical-sizing":{"compat_features":["css.properties.font-optical-sizing"],"name":"font-optical-sizing","spec":"https://drafts.csswg.org/css-fonts-4/#font-optical-sizing-def","usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/647"},"font-palette":{"compat_features":["api.CSSFontPaletteValuesRule","api.CSSFontPaletteValuesRule.basePalette","api.CSSFontPaletteValuesRule.fontFamily","api.CSSFontPaletteValuesRule.name","api.CSSFontPaletteValuesRule.overrideColors","css.at-rules.font-palette-values","css.at-rules.font-palette-values.base-palette","css.at-rules.font-palette-values.font-family","css.at-rules.font-palette-values.override-colors","css.properties.font-palette"],"name":"font-palette and @font-palette-values","spec":["https://drafts.csswg.org/css-fonts-4/#font-palette-prop","https://drafts.csswg.org/css-fonts-4/#font-palette-values"],"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/709"},"font-palette-animation":{"compat_features":["css.properties.font-palette.palette-mix_function"],"name":"font-palette animation","spec":"https://drafts.csswg.org/css-fonts-4/#font-palette-prop","usage_stats":"https://chromestatus.com/metrics/css/timeline/animated/709"},"font-synthesis":{"compat_features":["css.properties.font-synthesis-position","css.properties.font-synthesis-small-caps","css.properties.font-synthesis-style","css.properties.font-synthesis-weight","css.properties.font-synthesis","css.properties.font-synthesis.position","css.properties.font-synthesis.small-caps","css.properties.font-synthesis.style","css.properties.font-synthesis.weight"],"name":"font-synthesis","spec":"https://drafts.csswg.org/css-fonts-4/#font-synthesis-intro","usage_stats":["https://chromestatus.com/metrics/css/timeline/popularity/700","https://chromestatus.com/metrics/css/timeline/popularity/701","https://chromestatus.com/metrics/css/timeline/popularity/703","https://chromestatus.com/metrics/css/timeline/popularity/704"]},"font-variant-alternates":{"caniuse":"font-variant-alternates","compat_features":["css.properties.font-variant-alternates","css.properties.font-variant-alternates.annotation","css.properties.font-variant-alternates.character_variant","css.properties.font-variant-alternates.ornaments","css.properties.font-variant-alternates.styleset","css.properties.font-variant-alternates.stylistic","css.properties.font-variant-alternates.swash"],"name":"font-variant-alternates","spec":"https://drafts.csswg.org/css-fonts-4/#font-variant-alternates-prop","status":{"baseline":"low","baseline_low_date":"2023-03-13","support":{"chrome":"111","chrome_android":"111","edge":"111","firefox":"34","firefox_android":"34","safari":"16.2","safari_ios":"16.2"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/738"},"fonts":{"caniuse":"fontface","compat_features":["css.at-rules.font-face","css.at-rules.font-face.font-family","css.at-rules.font-face.src","css.at-rules.font-face.WOFF","css.at-rules.font-face.WOFF_2"],"name":"@font-face","spec":"https://drafts.csswg.org/css-fonts-5/","status":{"baseline":"high","baseline_high_date":"2019-03-20","baseline_low_date":"2016-09-20","support":{"chrome":"36","chrome_android":"36","edge":"14","firefox":"39","firefox_android":"39","safari":"10","safari_ios":"10"}}},"fullscreen":{"caniuse":"fullscreen","compat_features":["api.Document.exitFullscreen","api.Document.exitFullscreen.returns_promise","api.Document.fullscreen","api.Document.fullscreenchange_event","api.Document.fullscreenElement","api.Document.fullscreenEnabled","api.Document.fullscreenerror_event","api.Element.fullscreenchange_event","api.Element.fullscreenerror_event","api.Element.requestFullscreen","api.Element.requestFullscreen.returns_promise","api.HTMLIFrameElement.allowFullscreen","api.ShadowRoot.fullscreenElement","css.selectors.backdrop.fullscreen","css.selectors.fullscreen","css.selectors.fullscreen.all_elements","html.elements.iframe.allowfullscreen"],"name":"Fullscreen API","spec":"https://fullscreen.spec.whatwg.org/"},"grid":{"caniuse":"css-grid","compat_features":["css.properties.align-content.grid_context","css.properties.align-items.grid_context","css.properties.align-items.grid_context.start_end","css.properties.align-self.grid_context","css.properties.column-gap.grid_context","css.properties.display.grid","css.properties.display.inline-grid","css.properties.gap.grid_context","css.properties.gap.grid_context.calc_values","css.properties.gap.grid_context.percentage_values","css.properties.grid","css.properties.grid-area","css.properties.grid-auto-columns","css.properties.grid-auto-flow","css.properties.grid-auto-rows","css.properties.grid-column","css.properties.grid-column-end","css.properties.grid-column-start","css.properties.grid-row","css.properties.grid-row-end","css.properties.grid-row-start","css.properties.grid-template","css.properties.grid-template-areas","css.properties.grid-template-columns","css.properties.grid-template-columns.fit-content","css.properties.grid-template-columns.minmax","css.properties.grid-template-columns.repeat","css.properties.grid-template-rows","css.properties.grid-template-rows.fit-content","css.properties.grid-template-rows.minmax","css.properties.grid-template-rows.repeat","css.properties.justify-content.grid_context","css.properties.justify-items.grid_context","css.properties.justify-self.grid_context","css.properties.place-content.grid_context","css.properties.place-items.grid_context","css.properties.place-self.grid_context","css.properties.row-gap.grid_context","css.types.flex"],"name":"Grid","spec":"https://drafts.csswg.org/css-grid-3/","status":{"baseline":"high","baseline_high_date":"2023-01-28","baseline_low_date":"2020-07-28","support":{"chrome":"66","chrome_android":"66","edge":"79","firefox":"76","firefox_android":"79","safari":"12.1","safari_ios":"12.2"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1693"},"grid-animation":{"compat_features":["css.properties.grid-template-columns.animation","css.properties.grid-template-rows.animation"],"name":"Grid animation","spec":"https://drafts.csswg.org/css-grid-2/#track-sizing","status":{"baseline":"low","baseline_low_date":"2022-10-27","support":{"chrome":"107","chrome_android":"107","edge":"107","firefox":"66","firefox_android":"66","safari":"16","safari_ios":"16"}}},"has":{"caniuse":"css-has","compat_features":["css.selectors.has"],"name":":has()","spec":"https://drafts.csswg.org/selectors-4/#relational","status":{"baseline":"low","baseline_low_date":"2023-12-19","support":{"chrome":"105","chrome_android":"105","edge":"105","firefox":"121","firefox_android":"121","safari":"15.4","safari_ios":"15.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4743"},"html-media-capture":{"caniuse":"html-media-capture","compat_features":["api.HTMLInputElement.capture","html.elements.input.capture"],"name":"HTML media capture","spec":"https://w3c.github.io/html-media-capture/"},"http11":{"compat_features":["http.headers.Accept","http.headers.Accept-Encoding","http.headers.Accept-Language","http.headers.Accept-Ranges","http.headers.Age","http.headers.Authorization","http.headers.Cache-Control","http.headers.Connection","http.headers.Content-Encoding","http.headers.Content-Language","http.headers.Content-Length","http.headers.Content-Location","http.headers.Content-Range","http.headers.Content-Type","http.headers.Date","http.headers.ETag","http.headers.Expect","http.headers.Expires","http.headers.From","http.headers.Host","http.headers.If-Match","http.headers.If-Modified-Since","http.headers.If-None-Match","http.headers.If-Range","http.headers.If-Unmodified-Since","http.headers.Last-Modified","http.headers.Location","http.headers.Pragma","http.headers.Proxy-Authenticate","http.headers.Range","http.headers.Referer","http.headers.Retry-After","http.headers.Server","http.headers.TE","http.headers.Trailer","http.headers.Transfer-Encoding","http.headers.User-Agent","http.headers.Vary","http.headers.Via","http.headers.Warning","http.headers.WWW-Authenticate","http.methods.CONNECT","http.methods.DELETE","http.methods.GET","http.methods.HEAD","http.methods.OPTIONS","http.methods.POST","http.methods.PUT","http.methods.TRACE","http.status.100","http.status.200","http.status.201","http.status.204","http.status.206","http.status.301","http.status.302","http.status.303","http.status.304","http.status.307","http.status.401","http.status.403","http.status.404","http.status.406","http.status.407","http.status.409","http.status.410","http.status.412","http.status.416","http.status.500","http.status.501","http.status.502","http.status.503","http.status.504"],"name":"HTTP/1.1","spec":"https://httpwg.org/specs/rfc9112.html"},"http2":{"caniuse":"http2","name":"HTTP/2","spec":"https://httpwg.org/specs/rfc9113.html"},"http3":{"caniuse":"http3","name":"HTTP/3","spec":"https://httpwg.org/specs/rfc9114.html"},"ic":{"compat_features":["api.CSS.ic_static","css.types.length-percentage.ic","css.types.length.ic"],"name":"ic unit","spec":"https://drafts.csswg.org/css-values-4/#ic"},"idle-detection":{"compat_features":["api.IdleDetector","api.IdleDetector.IdleDetector","api.IdleDetector.change_event","api.IdleDetector.requestPermission_static","api.IdleDetector.screenState","api.IdleDetector.start","api.IdleDetector.userState","http.headers.Permissions-Policy.idle-detection"],"name":"Idle detection","spec":"https://wicg.github.io/idle-detection/","status":{"baseline":false,"support":{"chrome":"94","chrome_android":"94","edge":"94"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2834"},"image-set":{"caniuse":"css-image-set","name":"image-set()","spec":"https://drafts.csswg.org/css-images-4/#image-set-notation"},"import-maps":{"caniuse":"import-maps","compat_features":["html.elements.script.type.importmap"],"name":"Import maps","spec":"https://html.spec.whatwg.org/multipage/webappapis.html#import-maps","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"89","chrome_android":"89","edge":"89","firefox":"108","firefox_android":"108","safari":"16.4","safari_ios":"16.4"}}},"indeterminate":{"caniuse":"css-indeterminate-pseudo","compat_features":["css.selectors.indeterminate","css.selectors.indeterminate.checkbox","css.selectors.indeterminate.progress","css.selectors.indeterminate.radio"],"name":":indeterminate()","spec":["https://drafts.csswg.org/selectors-4/#indeterminate","https://html.spec.whatwg.org/multipage/semantics-other.html#selector-indeterminate"],"status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"39","chrome_android":"39","edge":"79","firefox":"51","firefox_android":"51","safari":"10","safari_ios":"10"}}},"individual-transforms":{"compat_features":["css.properties.rotate","css.properties.scale","css.properties.translate"],"name":"Individual transform properties","spec":"https://drafts.csswg.org/css-transforms-2/#individual-transforms","usage_stats":["https://chromestatus.com/metrics/css/timeline/popularity/504","https://chromestatus.com/metrics/css/timeline/popularity/505","https://chromestatus.com/metrics/css/timeline/popularity/506"]},"input-event":{"caniuse":"input-event","compat_features":["api.Element.input_event","api.InputEvent","api.InputEvent.InputEvent","api.InputEvent.data","api.InputEvent.dataTransfer","api.InputEvent.getTargetRanges","api.InputEvent.inputType","api.InputEvent.isComposing"],"name":"input event","spec":"https://w3c.github.io/uievents/#event-type-input","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"60","chrome_android":"60","edge":"79","firefox":"87","firefox_android":"87","safari":"16.4","safari_ios":"16.4"}}},"intersection-observer":{"caniuse":"intersectionobserver","compat_features":["api.IntersectionObserver","api.IntersectionObserver.IntersectionObserver","api.IntersectionObserver.disconnect","api.IntersectionObserver.observe","api.IntersectionObserver.root","api.IntersectionObserver.rootMargin","api.IntersectionObserver.takeRecords","api.IntersectionObserver.thresholds","api.IntersectionObserver.unobserve","api.IntersectionObserverEntry","api.IntersectionObserverEntry.boundingClientRect","api.IntersectionObserverEntry.intersectionRatio","api.IntersectionObserverEntry.intersectionRect","api.IntersectionObserverEntry.isIntersecting","api.IntersectionObserverEntry.rootBounds","api.IntersectionObserverEntry.target","api.IntersectionObserverEntry.time"],"name":"Intersection observer","spec":"https://w3c.github.io/IntersectionObserver/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1368"},"intersection-observer-v2":{"caniuse":"intersectionobserver-v2","compat_features":["api.IntersectionObserver.IntersectionObserver.options_trackVisibility_parameter","api.IntersectionObserverEntry.isVisible"],"name":"IntersectionObserver visibility tracking","spec":"https://w3c.github.io/IntersectionObserver/v2/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3051"},"is":{"caniuse":"css-matches-pseudo","compat_features":["css.selectors.is","css.selectors.is.forgiving_selector_list"],"name":":is()","spec":"https://drafts.csswg.org/selectors-4/#matches","status":{"baseline":"high","baseline_high_date":"2023-07-21","baseline_low_date":"2021-01-21","support":{"chrome":"88","chrome_android":"88","edge":"88","firefox":"82","firefox_android":"82","safari":"14","safari_ios":"14"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2322"},"jpegxl":{"caniuse":"jpegxl","name":"JPEG XL","spec":"https://www.iso.org/standard/85253.html","status":{"baseline":false,"support":{"safari":"17","safari_ios":"17"}}},"js-modules":{"caniuse":"es6-module","compat_features":["html.elements.script.nomodule","html.elements.script.type.module","javascript.statements.export","javascript.statements.export.default","javascript.statements.import","svg.elements.script.type.module"],"name":"JavaScript modules","spec":["https://html.spec.whatwg.org/multipage/webappapis.html#javascript-module-script","https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-modules"],"status":{"baseline":"high","baseline_high_date":"2020-11-09","baseline_low_date":"2018-05-09","support":{"chrome":"61","chrome_android":"61","edge":"16","firefox":"60","firefox_android":"60","safari":"10.1","safari_ios":"10.3"}},"usage_stats":["https://chromestatus.com/metrics/feature/timeline/popularity/2062","https://chromestatus.com/metrics/feature/timeline/popularity/2615"]},"lh":{"compat_features":["api.CSS.lh_static","css.types.length-percentage.lh","css.types.length.lh"],"name":"lh unit","spec":"https://drafts.csswg.org/css-values-4/#lh"},"line-clamp":{"caniuse":"css-line-clamp","compat_features":["css.properties.-webkit-line-clamp"],"name":"line-clamp","spec":"https://drafts.csswg.org/css-overflow-3/#line-clamp"},"linear-easing":{"compat_features":["css.types.easing-function.linear-function"],"name":"linear() easing","spec":"https://drafts.csswg.org/css-easing-2/#the-linear-easing-function"},"masonry":{"compat_features":["css.properties.align-tracks","css.properties.grid-template-columns.masonry","css.properties.grid-template-rows.masonry","css.properties.justify-tracks","css.properties.masonry-auto-flow"],"name":"Masonry","spec":"https://drafts.csswg.org/css-grid-3/","status":{"baseline":false,"support":{}}},"media-query-range-syntax":{"caniuse":"css-media-range-syntax","compat_features":["css.at-rules.media.range_syntax"],"name":"Media query range syntax","spec":"https://drafts.csswg.org/mediaqueries-4/#mq-range-context","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"104","chrome_android":"104","edge":"104","firefox":"102","firefox_android":"102","safari":"16.4","safari_ios":"16.4"}}},"modulepreload":{"caniuse":"link-rel-modulepreload","compat_features":["html.elements.link.modulepreload"],"name":"<link rel=\"modulepreload\">","spec":"https://html.spec.whatwg.org/multipage/links.html#link-type-modulepreload"},"motion-path":{"caniuse":"css-motion-paths","compat_features":["css.properties.offset-anchor","css.properties.offset-distance","css.properties.offset-path","css.properties.offset-path.path","css.properties.offset-rotate","css.properties.offset"],"name":"Motion path","spec":"https://drafts.fxtf.org/motion-1/","status":{"baseline":"low","baseline_low_date":"2023-08-21","support":{"chrome":"116","chrome_android":"116","edge":"116","firefox":"72","firefox_android":"79","safari":"16","safari_ios":"16"}}},"navigation":{"name":"Navigation API","spec":"https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api"},"nesting":{"caniuse":"css-nesting","compat_features":["css.selectors.nesting","api.CSSStyleRule.cssRules","api.CSSStyleRule.deleteRule","api.CSSStyleRule.insertRule"],"name":"Nesting","spec":"https://drafts.csswg.org/css-nesting-1/","status":{"baseline":"low","baseline_low_date":"2023-12-11","support":{"chrome":"120","chrome_android":"120","edge":"120","firefox":"117","firefox_android":"117","safari":"17.2","safari_ios":"17.2"}}},"offscreen-canvas":{"caniuse":"offscreencanvas","compat_features":["api.HTMLCanvasElement.transferControlToOffscreen","api.OffscreenCanvas","api.OffscreenCanvas.convertToBlob","api.OffscreenCanvas.getContext","api.OffscreenCanvas.height","api.OffscreenCanvas.OffscreenCanvas","api.OffscreenCanvas.transferToImageBitmap","api.OffscreenCanvas.width","api.OffscreenCanvasRenderingContext2D","api.OffscreenCanvasRenderingContext2D.arc","api.OffscreenCanvasRenderingContext2D.arcTo","api.OffscreenCanvasRenderingContext2D.beginPath","api.OffscreenCanvasRenderingContext2D.bezierCurveTo","api.OffscreenCanvasRenderingContext2D.canvas","api.OffscreenCanvasRenderingContext2D.clearRect","api.OffscreenCanvasRenderingContext2D.clip","api.OffscreenCanvasRenderingContext2D.closePath","api.OffscreenCanvasRenderingContext2D.createImageData","api.OffscreenCanvasRenderingContext2D.createLinearGradient","api.OffscreenCanvasRenderingContext2D.createPattern","api.OffscreenCanvasRenderingContext2D.createRadialGradient","api.OffscreenCanvasRenderingContext2D.direction","api.OffscreenCanvasRenderingContext2D.drawImage","api.OffscreenCanvasRenderingContext2D.ellipse","api.OffscreenCanvasRenderingContext2D.fill","api.OffscreenCanvasRenderingContext2D.fillRect","api.OffscreenCanvasRenderingContext2D.fillStyle","api.OffscreenCanvasRenderingContext2D.fillText","api.OffscreenCanvasRenderingContext2D.font","api.OffscreenCanvasRenderingContext2D.getImageData","api.OffscreenCanvasRenderingContext2D.getLineDash","api.OffscreenCanvasRenderingContext2D.getTransform","api.OffscreenCanvasRenderingContext2D.globalAlpha","api.OffscreenCanvasRenderingContext2D.globalCompositeOperation","api.OffscreenCanvasRenderingContext2D.imageSmoothingEnabled","api.OffscreenCanvasRenderingContext2D.isPointInPath","api.OffscreenCanvasRenderingContext2D.isPointInStroke","api.OffscreenCanvasRenderingContext2D.lineCap","api.OffscreenCanvasRenderingContext2D.lineDashOffset","api.OffscreenCanvasRenderingContext2D.lineJoin","api.OffscreenCanvasRenderingContext2D.lineTo","api.OffscreenCanvasRenderingContext2D.lineWidth","api.OffscreenCanvasRenderingContext2D.measureText","api.OffscreenCanvasRenderingContext2D.miterLimit","api.OffscreenCanvasRenderingContext2D.moveTo","api.OffscreenCanvasRenderingContext2D.putImageData","api.OffscreenCanvasRenderingContext2D.quadraticCurveTo","api.OffscreenCanvasRenderingContext2D.rect","api.OffscreenCanvasRenderingContext2D.resetTransform","api.OffscreenCanvasRenderingContext2D.restore","api.OffscreenCanvasRenderingContext2D.rotate","api.OffscreenCanvasRenderingContext2D.save","api.OffscreenCanvasRenderingContext2D.scale","api.OffscreenCanvasRenderingContext2D.setLineDash","api.OffscreenCanvasRenderingContext2D.setTransform","api.OffscreenCanvasRenderingContext2D.shadowBlur","api.OffscreenCanvasRenderingContext2D.shadowColor","api.OffscreenCanvasRenderingContext2D.shadowOffsetX","api.OffscreenCanvasRenderingContext2D.shadowOffsetY","api.OffscreenCanvasRenderingContext2D.stroke","api.OffscreenCanvasRenderingContext2D.strokeRect","api.OffscreenCanvasRenderingContext2D.strokeStyle","api.OffscreenCanvasRenderingContext2D.strokeText","api.OffscreenCanvasRenderingContext2D.textAlign","api.OffscreenCanvasRenderingContext2D.textBaseline","api.OffscreenCanvasRenderingContext2D.transform","api.OffscreenCanvasRenderingContext2D.translate"],"name":"Offscreen canvas","spec":"https://html.spec.whatwg.org/multipage/canvas.html#the-offscreencanvas-interface","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"80","chrome_android":"80","edge":"80","firefox":"105","firefox_android":"105","safari":"16.4","safari_ios":"16.4"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1624"},"overflow-shorthand":{"caniuse":"css-overflow","compat_features":["css.properties.overflow-x","css.properties.overflow-x.clip","css.properties.overflow-y","css.properties.overflow-y.clip","css.properties.overflow","css.properties.overflow.clip","css.properties.overflow.multiple_keywords","css.types.overflow","css.types.overflow.clip"],"name":"overflow","spec":"https://drafts.csswg.org/css-overflow-3/#propdef-overflow","status":{"baseline":"low","baseline_low_date":"2022-09-12","support":{"chrome":"90","chrome_android":"90","edge":"90","firefox":"81","firefox_android":"81","safari":"16","safari_ios":"16"}}},"picture-in-picture":{"caniuse":"picture-in-picture","compat_features":["api.Document.exitPictureInPicture","api.Document.pictureInPictureElement","api.Document.pictureInPictureEnabled","api.HTMLVideoElement.disablePictureInPicture","api.HTMLVideoElement.enterpictureinpicture_event","api.HTMLVideoElement.leavepictureinpicture_event","api.HTMLVideoElement.requestPictureInPicture","api.PictureInPictureEvent","api.PictureInPictureEvent.PictureInPictureEvent","api.PictureInPictureEvent.pictureInPictureWindow","api.PictureInPictureWindow","api.PictureInPictureWindow.height","api.PictureInPictureWindow.resize_event","api.PictureInPictureWindow.width","api.ShadowRoot.pictureInPictureElement","css.selectors.picture-in-picture","http.headers.Permissions-Policy.picture-in-picture"],"name":"Picture-in-picture","spec":"https://w3c.github.io/picture-in-picture/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2444"},"pointer-lock":{"caniuse":"pointerlock","compat_features":["api.Document.exitPointerLock","api.Document.pointerlockchange_event","api.Document.pointerLockElement","api.Document.pointerlockerror_event","api.Element.requestPointerLock","api.MouseEvent.movementX","api.MouseEvent.movementY","api.ShadowRoot.pointerLockElement","html.elements.iframe.sandbox.allow-pointer-lock"],"name":"Pointer lock","spec":"https://w3c.github.io/pointerlock/","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/417"},"popover":{"compat_features":["api.HTMLButtonElement.popoverTargetAction","api.HTMLButtonElement.popoverTargetElement","api.HTMLElement.beforetoggle_event","api.HTMLElement.hidePopover","api.HTMLElement.popover","api.HTMLElement.showPopover","api.HTMLElement.toggle_event","api.HTMLElement.togglePopover","api.HTMLInputElement.popoverTargetAction","api.HTMLInputElement.popoverTargetElement","api.ToggleEvent","api.ToggleEvent.ToggleEvent","api.ToggleEvent.newState","api.ToggleEvent.oldState","css.selectors.backdrop.popover","css.selectors.popover-open","html.global_attributes.popover","html.elements.button.popovertarget","html.elements.button.popovertargetaction","html.elements.input.popovertarget","html.elements.input.popovertargetaction"],"name":"Popover","spec":"https://html.spec.whatwg.org/multipage/popover.html","status":{"baseline":false,"support":{"chrome":"114","chrome_android":"114","edge":"114","safari":"17","safari_ios":"17"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4191"},"promise-allsettled":{"compat_features":["javascript.builtins.Promise.allSettled"],"name":"Promise.allSettled()","spec":"https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.allsettled","status":{"baseline":"high","baseline_high_date":"2023-01-28","baseline_low_date":"2020-07-28","support":{"chrome":"76","chrome_android":"76","edge":"79","firefox":"71","firefox_android":"79","safari":"13","safari_ios":"13"}}},"promise-any":{"compat_features":["javascript.builtins.Promise.any"],"name":"Promise.any()","spec":"https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.any","status":{"baseline":"high","baseline_high_date":"2023-03-16","baseline_low_date":"2020-09-16","support":{"chrome":"85","chrome_android":"85","edge":"85","firefox":"79","firefox_android":"79","safari":"14","safari_ios":"14"}}},"promise-finally":{"caniuse":"promise-finally","compat_features":["javascript.builtins.Promise.finally"],"name":"Promise finally()","spec":"https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype.finally","status":{"baseline":"high","baseline_high_date":"2020-10-12","baseline_low_date":"2018-04-12","support":{"chrome":"63","chrome_android":"63","edge":"18","firefox":"58","firefox_android":"58","safari":"11.1","safari_ios":"11.3"}}},"promise-withresolvers":{"compat_features":["javascript.builtins.Promise.withResolvers"],"name":"Promise.withResolvers()","spec":"https://tc39.es/proposal-promise-with-resolvers/#sec-promise.withResolvers","status":{"baseline":false,"support":{"chrome":"119","chrome_android":"119","edge":"119","firefox":"121","firefox_android":"121"}}},"promises":{"caniuse":"promises","compat_features":["javascript.builtins.Promise","javascript.builtins.Promise.@@species","javascript.builtins.Promise.Promise","javascript.builtins.Promise.all","javascript.builtins.Promise.catch","javascript.builtins.Promise.race","javascript.builtins.Promise.reject","javascript.builtins.Promise.resolve","javascript.builtins.Promise.then"],"name":"Promises","spec":["https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise-objects","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-get-promise-@@species","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise-constructor","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.all","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype.catch","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.race","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.reject","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.resolve","https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise.prototype.then"],"status":{"baseline":"high","baseline_high_date":"2018-01-28","baseline_low_date":"2015-07-28","support":{"chrome":"32","chrome_android":"32","edge":"12","firefox":"29","firefox_android":"29","safari":"8","safari_ios":"8"}}},"read-write-pseudo-classes":{"caniuse":"css-read-only-write","compat_features":["css.selectors.read-only","css.selectors.read-write"],"name":":read and :write","spec":["https://html.spec.whatwg.org/multipage/semantics-other.html#selector-read-only","https://drafts.csswg.org/selectors-4/#rw-pseudos"],"status":{"baseline":"high","baseline_high_date":"2023-01-28","baseline_low_date":"2020-07-28","support":{"chrome":"1","chrome_android":"18","edge":"13","firefox":"78","firefox_android":"79","safari":"4","safari_ios":"3.2"}}},"registered-custom-properties":{"compat_features":["api.CSS.registerProperty_static","api.CSSPropertyRule","api.CSSPropertyRule.inherits","api.CSSPropertyRule.initialValue","api.CSSPropertyRule.name","api.CSSPropertyRule.syntax","css.at-rules.property","css.at-rules.property.inherits","css.at-rules.property.initial-value","css.at-rules.property.syntax"],"name":"Registered custom properties","spec":"https://drafts.css-houdini.org/css-properties-values-api-1/","status":{"baseline":false,"support":{"chrome":"85","chrome_android":"85","edge":"85","safari":"16.4","safari_ios":"16.4"}}},"relative-color":{"caniuse":"css-relative-colors","compat_features":["css.types.color.color.relative_syntax","css.types.color.hsl.relative_syntax","css.types.color.hwb.relative_syntax","css.types.color.lab.relative_syntax","css.types.color.lch.relative_syntax","css.types.color.oklab.relative_syntax","css.types.color.oklch.relative_syntax","css.types.color.rgb.relative_syntax"],"name":"Relative colors","spec":"https://drafts.csswg.org/css-color-5/#relative-color-function","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4632"},"sanitizer":{"name":"Sanitizer","spec":"https://wicg.github.io/sanitizer-api/"},"scheduler":{"compat_features":["api.Scheduler","api.Scheduler.postTask","api.TaskController","api.TaskController.setPriority","api.TaskController.TaskController","api.TaskPriorityChangeEvent","api.TaskPriorityChangeEvent.previousPriority","api.TaskPriorityChangeEvent.TaskPriorityChangeEvent","api.TaskSignal","api.TaskSignal.priority","api.scheduler"],"name":"Scheduler API","spec":"https://wicg.github.io/scheduling-apis/","status":{"baseline":false,"support":{"chrome":"94","chrome_android":"94","edge":"94"}}},"scope":{"name":"@scope","spec":"https://drafts.csswg.org/css-cascade-6/#scope-atrule"},"scroll-driven-animations":{"compat_features":["api.ScrollTimeline","api.ScrollTimeline.axis","api.ScrollTimeline.ScrollTimeline","api.ScrollTimeline.source","api.ViewTimeline","api.ViewTimeline.endOffset","api.ViewTimeline.startOffset","api.ViewTimeline.subject","api.ViewTimeline.ViewTimeline","css.properties.animation-range","css.properties.animation-range-end","css.properties.animation-range-start","css.properties.animation-timeline","css.properties.animation-timeline.scroll","css.properties.animation-timeline.view","css.properties.animation.animation-timeline_included","css.properties.scroll-timeline","css.properties.scroll-timeline-axis","css.properties.scroll-timeline-name","css.properties.timeline-scope","css.properties.view-timeline","css.properties.view-timeline-axis","css.properties.view-timeline-inset","css.properties.view-timeline-name"],"name":"Scroll-driven animations","spec":"https://drafts.csswg.org/scroll-animations-1/"},"scroll-snap":{"caniuse":"css-snappoints","compat_features":["css.properties.scroll-margin-block-end","css.properties.scroll-margin-block-start","css.properties.scroll-margin-block","css.properties.scroll-margin-bottom","css.properties.scroll-margin-inline-end","css.properties.scroll-margin-inline-start","css.properties.scroll-margin-inline","css.properties.scroll-margin-left","css.properties.scroll-margin-right","css.properties.scroll-margin-top","css.properties.scroll-margin","css.properties.scroll-padding-block-end","css.properties.scroll-padding-block-start","css.properties.scroll-padding-block","css.properties.scroll-padding-bottom","css.properties.scroll-padding-inline-end","css.properties.scroll-padding-inline-start","css.properties.scroll-padding-inline","css.properties.scroll-padding-left","css.properties.scroll-padding-right","css.properties.scroll-padding-top","css.properties.scroll-padding","css.properties.scroll-snap-align","css.properties.scroll-snap-stop","css.properties.scroll-snap-type"],"name":"Scroll snap","spec":"https://drafts.csswg.org/css-scroll-snap-1/","usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/499"},"scrollintoview":{"caniuse":"scrollintoview","compat_features":["api.Element.scrollIntoView","api.Element.scrollIntoView.options_parameter"],"name":"scrollIntoView()","spec":"https://drafts.csswg.org/cssom-view-1/#dom-element-scrollintoview","status":{"baseline":"high","baseline_high_date":"2023-03-16","baseline_low_date":"2020-09-16","support":{"chrome":"61","chrome_android":"61","edge":"79","firefox":"36","firefox_android":"36","safari":"14","safari_ios":"14"}}},"search":{"compat_features":["html.elements.search"],"name":"<search>","spec":"https://html.spec.whatwg.org/multipage/grouping-content.html#the-search-element"},"search-input-type":{"caniuse":"input-search","compat_features":["html.elements.input.type_search"],"name":"<input type=\"search\">","spec":"https://html.spec.whatwg.org/multipage/input.html#text-(type=text)-state-and-search-state-(type=search)"},"server-timing":{"caniuse":"server-timing","name":"Server timing","spec":"https://w3c.github.io/server-timing/","status":{"baseline":"low","baseline_low_date":"2023-03-27","support":{"chrome":"65","chrome_android":"65","edge":"79","firefox":"61","firefox_android":"61","safari":"16.4","safari_ios":"16.4"}}},"set-methods":{"compat_features":["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"],"name":"Set methods","spec":"https://tc39.es/proposal-set-methods/","status":{"baseline":false,"support":{"safari":"17","safari_ios":"17"}}},"shadow-dom":{"caniuse":"shadowdomv1","compat_features":["api.Element.attachShadow","api.Element.shadowRoot","api.Event.composed","api.Event.composedPath","api.HTMLSlotElement","api.HTMLSlotElement.slotchange_event","api.Node.getRootNode","api.Node.isConnected","api.ShadowRoot","api.ShadowRoot.host","api.ShadowRoot.mode","html.elements.slot"],"name":"Shadow DOM","spec":"https://dom.spec.whatwg.org/#shadow-trees","status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"54","chrome_android":"54","edge":"79","firefox":"63","firefox_android":"63","safari":"10.1","safari_ios":"10.3"}}},"slot":{"compat_features":["api.Element.assignedSlot","api.Element.slot","api.HTMLSlotElement","api.HTMLSlotElement.assign","api.HTMLSlotElement.assignedElements","api.HTMLSlotElement.assignedNodes","api.HTMLSlotElement.name","api.HTMLSlotElement.slotchange_event","api.ShadowRoot.slotAssignment","api.Text.assignedSlot","css.selectors.slotted","html.elements.slot","html.elements.slot.name","html.global_attributes.slot"],"name":"<slot>","spec":"https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1898"},"speech-recognition":{"caniuse":"speech-recognition","name":"Speech recognition","spec":"https://wicg.github.io/speech-api/#speechreco-section","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2014"},"speech-synthesis":{"caniuse":"speech-synthesis","name":"Speech synthesis","spec":"https://wicg.github.io/speech-api/#tts-section","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2483"},"stable-array-sort":{"compat_features":["javascript.builtins.Array.sort.stable_sorting"],"name":"Stable array sort","spec":"https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.sort","status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"70","chrome_android":"70","edge":"79","firefox":"3","firefox_android":"4","safari":"10.1","safari_ios":"10.3"}}},"starting-style":{"compat_features":["api.CSSStartingStyleRule","css.at-rules.starting-style"],"name":"@starting-style","spec":"https://drafts.csswg.org/css-transitions-2/#defining-before-change-style"},"sticky-positioning":{"caniuse":"css-sticky","compat_features":["css.properties.position.position_sticky_table_elements","css.properties.position.sticky"],"name":"Sticky positioning","spec":"https://drafts.csswg.org/css-position-3/#stickypos-insets","status":{"baseline":"high","baseline_high_date":"2022-03-19","baseline_low_date":"2019-09-19","support":{"chrome":"56","chrome_android":"56","edge":"16","firefox":"59","firefox_android":"59","safari":"13","safari_ios":"13"}}},"storage-buckets":{"name":"Storage buckets","spec":"https://wicg.github.io/storage-buckets/","status":{"baseline":false,"support":{"chrome":"122","chrome_android":"122","edge":"122"}}},"structured-clone":{"compat_features":["api.structuredClone"],"name":"structuredClone()","spec":"https://html.spec.whatwg.org/multipage/structured-data.html#structured-cloning","status":{"baseline":"low","baseline_low_date":"2022-03-14","support":{"chrome":"98","chrome_android":"98","edge":"98","firefox":"94","firefox_android":"94","safari":"15.4","safari_ios":"15.4"}}},"subgrid":{"caniuse":"css-subgrid","compat_features":["css.properties.grid-template-columns.subgrid","css.properties.grid-template-rows.subgrid"],"name":"Subgrid","spec":"https://drafts.csswg.org/css-grid-2/#subgrids","status":{"baseline":"low","baseline_low_date":"2023-09-15","support":{"chrome":"117","chrome_android":"117","edge":"117","firefox":"71","firefox_android":"79","safari":"16","safari_ios":"16"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4680"},"svg2-script-html-equivalence":{"compat_features":["api.SVGScriptElement.async","api.SVGScriptElement.defer","svg.elements.script.async","svg.elements.script.defer"],"name":"SVG <script> async and defer","spec":"https://svgwg.org/svg2-draft/interact.html#ScriptElement","status":{"baseline":false,"support":{"firefox":"117","firefox_android":"117"}}},"tabindex":{"caniuse":"tabindex-attr","compat_features":["api.HTMLElement.tabIndex","html.global_attributes.tabindex"],"name":"tabindex","spec":"https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex","status":{"baseline":"high","baseline_high_date":"2021-04-02","baseline_low_date":"2018-10-02","support":{"chrome":"1","chrome_android":"18","edge":"18","firefox":"1.5","firefox_android":"4","safari":"4","safari_ios":"3.2"}}},"template":{"compat_features":["api.HTMLTemplateElement","api.HTMLTemplateElement.content","html.elements.template"],"name":"<template>","spec":"https://html.spec.whatwg.org/multipage/scripting.html#the-template-element","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2769"},"temporal":{"caniuse":"temporal","name":"Temporal","spec":"https://tc39.es/proposal-temporal/"},"text-box-trim":{"alias":"leading-trim","name":"text-box-trim","spec":"https://drafts.csswg.org/css-inline-3/#leading-trim"},"text-indent":{"caniuse":"css-text-indent","compat_features":["css.properties.text-indent"],"name":"text-indent","spec":"https://drafts.csswg.org/css-text-3/#text-indent-property","status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"1","chrome_android":"18","edge":"12","firefox":"1","firefox_android":"4","safari":"1","safari_ios":"1"}},"usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/130"},"text-spacing-trim":{"compat_features":["css.properties.text-spacing-trim"],"name":"text-spacing-trim","spec":"https://drafts.csswg.org/css-text-4/#text-spacing-trim-property","usage_stats":"https://chromestatus.com/metrics/css/timeline/popularity/771"},"text-wrap-balance":{"compat_features":["css.properties.text-wrap.balance"],"name":"text-wrap: balance","spec":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-balance","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4673"},"text-wrap-pretty":{"compat_features":["css.properties.text-wrap.pretty"],"name":"text-wrap: pretty","spec":"https://drafts.csswg.org/css-text-4/#valdef-text-wrap-style-pretty","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4674"},"trusted-types":{"caniuse":"trusted-types","compat_features":["api.TrustedHTML","api.TrustedHTML.toJSON","api.TrustedHTML.toString","api.TrustedScript","api.TrustedScript.toJSON","api.TrustedScript.toString","api.TrustedScriptURL","api.TrustedScriptURL.toJSON","api.TrustedScriptURL.toString","api.TrustedTypePolicy","api.TrustedTypePolicy.createHTML","api.TrustedTypePolicy.createScript","api.TrustedTypePolicy.createScriptURL","api.TrustedTypePolicy.name","api.TrustedTypePolicyFactory","api.TrustedTypePolicyFactory.createPolicy","api.TrustedTypePolicyFactory.defaultPolicy","api.TrustedTypePolicyFactory.emptyHTML","api.TrustedTypePolicyFactory.emptyScript","api.TrustedTypePolicyFactory.getAttributeType","api.TrustedTypePolicyFactory.getPropertyType","api.TrustedTypePolicyFactory.isHTML","api.TrustedTypePolicyFactory.isScript","api.TrustedTypePolicyFactory.isScriptURL","api.trustedTypes","http.headers.Content-Security-Policy.require-trusted-types-for","http.headers.Content-Security-Policy.trusted-types"],"name":"Trusted types","spec":"https://w3c.github.io/trusted-types/dist/spec/","status":{"baseline":false,"support":{"chrome":"83","chrome_android":"83","edge":"83"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2722"},"typed-array-iteration-methods":{"compat_features":["javascript.builtins.TypedArray.every","javascript.builtins.TypedArray.filter","javascript.builtins.TypedArray.forEach","javascript.builtins.TypedArray.indexOf","javascript.builtins.TypedArray.lastIndexOf","javascript.builtins.TypedArray.map","javascript.builtins.TypedArray.reduce","javascript.builtins.TypedArray.reduceRight","javascript.builtins.TypedArray.some"],"name":"Typed array iteration methods","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.every","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.filter","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.foreach","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.indexof","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.lastindexof","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.map","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduce","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reduceright","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.some"],"status":{"baseline":"high","baseline_high_date":"2018-09-21","baseline_low_date":"2016-03-21","support":{"chrome":"45","chrome_android":"45","edge":"12","firefox":"37","firefox_android":"37","safari":"9.1","safari_ios":"9.3"}}},"typed-array-iterators":{"compat_features":["javascript.builtins.TypedArray.@@iterator","javascript.builtins.TypedArray.entries","javascript.builtins.TypedArray.keys","javascript.builtins.TypedArray.values"],"name":"Typed array iterators","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype-@@iterator","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.entries","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.values"],"status":{"baseline":"high","baseline_high_date":"2019-03-20","baseline_low_date":"2016-09-20","support":{"chrome":"38","chrome_android":"38","edge":"12","firefox":"36","firefox_android":"36","safari":"10","safari_ios":"10"}}},"typed-arrays":{"compat_features":["javascript.builtins.Float32Array","javascript.builtins.Float32Array.Float32Array","javascript.builtins.Float32Array.Float32Array.constructor_without_parameters","javascript.builtins.Float32Array.Float32Array.iterable_allowed","javascript.builtins.Float32Array.Float32Array.new_required","javascript.builtins.Float64Array","javascript.builtins.Float64Array.Float64Array","javascript.builtins.Float64Array.Float64Array.constructor_without_parameters","javascript.builtins.Float64Array.Float64Array.iterable_allowed","javascript.builtins.Float64Array.Float64Array.new_required","javascript.builtins.Int16Array","javascript.builtins.Int16Array.Int16Array","javascript.builtins.Int16Array.Int16Array.constructor_without_parameters","javascript.builtins.Int16Array.Int16Array.new_required","javascript.builtins.Int32Array","javascript.builtins.Int32Array.Int32Array","javascript.builtins.Int32Array.Int32Array.constructor_without_parameters","javascript.builtins.Int32Array.Int32Array.iterable_allowed","javascript.builtins.Int32Array.Int32Array.new_required","javascript.builtins.Int8Array","javascript.builtins.Int8Array.Int8Array","javascript.builtins.Int8Array.Int8Array.constructor_without_parameters","javascript.builtins.Int8Array.Int8Array.iterable_allowed","javascript.builtins.Int8Array.Int8Array.new_required","javascript.builtins.TypedArray","javascript.builtins.TypedArray.BYTES_PER_ELEMENT","javascript.builtins.TypedArray.buffer","javascript.builtins.TypedArray.byteLength","javascript.builtins.TypedArray.byteOffset","javascript.builtins.TypedArray.constructor_without_parameters","javascript.builtins.TypedArray.join","javascript.builtins.TypedArray.length","javascript.builtins.TypedArray.name","javascript.builtins.TypedArray.named_properties","javascript.builtins.TypedArray.new_required","javascript.builtins.TypedArray.reverse","javascript.builtins.TypedArray.set","javascript.builtins.TypedArray.slice","javascript.builtins.TypedArray.sort","javascript.builtins.TypedArray.subarray","javascript.builtins.TypedArray.toLocaleString","javascript.builtins.TypedArray.toString","javascript.builtins.Uint16Array","javascript.builtins.Uint16Array.Uint16Array","javascript.builtins.Uint16Array.Uint16Array.constructor_without_parameters","javascript.builtins.Uint16Array.Uint16Array.iterable_allowed","javascript.builtins.Uint16Array.Uint16Array.new_required","javascript.builtins.Uint8Array","javascript.builtins.Uint8Array.Uint8Array","javascript.builtins.Uint8Array.Uint8Array.constructor_without_parameters","javascript.builtins.Uint8Array.Uint8Array.iterable_allowed","javascript.builtins.Uint8Array.Uint8Array.new_required","javascript.builtins.Uint8ClampedArray","javascript.builtins.Uint8ClampedArray.Uint8ClampedArray","javascript.builtins.Uint8ClampedArray.Uint8ClampedArray.iterable_allowed","javascript.builtins.Uint8ClampedArray.Uint8ClampedArray.new_required"],"name":"Typed arrays","spec":["https://tc39.es/ecma262/multipage/indexed-collections.html#table-49","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-constructors","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray-objects","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-typedarray.bytes_per_element","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.buffer","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.bytelength","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.byteoffset","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.join","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype.length","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-properties-of-the-typedarray-constructors","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.reverse","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.set","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.slice","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.sort","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.subarray","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tolocalestring","https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.tostring"],"status":{"baseline":"high","baseline_high_date":"2018-01-29","baseline_low_date":"2015-07-29","support":{"chrome":"7","chrome_android":"18","edge":"12","firefox":"4","firefox_android":"4","safari":"5.1","safari_ios":"4.2"}}},"user-pseudos":{"compat_features":["css.selectors.user-invalid","css.selectors.user-valid"],"name":":user-valid and :user-invalid","spec":"https://drafts.csswg.org/selectors-4/#user-pseudos"},"view-transitions":{"caniuse":"view-transitions","compat_features":["api.Document.startViewTransition","api.ViewTransition","api.ViewTransition.finished","api.ViewTransition.ready","api.ViewTransition.skipTransition","api.ViewTransition.updateCallbackDone","css.properties.view-transition-name","css.selectors.view-transition-group","css.selectors.view-transition-image-pair","css.selectors.view-transition-new","css.selectors.view-transition-old","css.selectors.view-transition"],"name":"View transitions","spec":"https://drafts.csswg.org/css-view-transitions-1/","status":{"baseline":false,"support":{"chrome":"111","chrome_android":"111","edge":"111"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/4383"},"viewport-relative-unit-variants":{"caniuse":"viewport-unit-variants","compat_features":["css.types.length.vb","css.types.length.vi","css.types.length.viewport_percentage_units_dynamic","css.types.length.viewport_percentage_units_large","css.types.length.viewport_percentage_units_small"],"name":"sv*, lv*, and dv* viewport units","spec":["https://drafts.csswg.org/css-values-4/#viewport-variants","https://drafts.csswg.org/css-values-4/#viewport-relative-lengths"],"status":{"baseline":"low","baseline_low_date":"2022-12-06","support":{"chrome":"108","chrome_android":"108","edge":"108","firefox":"101","firefox_android":"101","safari":"15.4","safari_ios":"15.4"}}},"viewport-relative-units":{"caniuse":"viewport-units","compat_features":["css.types.length.vh","css.types.length.vmax","css.types.length.vmin","css.types.length.vw"],"name":"vw, vh, vmin, and vmax viewport units","spec":"https://drafts.csswg.org/css-values-4/#viewport-relative-lengths","status":{"baseline":"high","baseline_high_date":"2020-04-17","baseline_low_date":"2017-10-17","support":{"chrome":"26","chrome_android":"26","edge":"16","firefox":"19","firefox_android":"19","safari":"7","safari_ios":"7"}}},"web-animations":{"caniuse":"web-animation","compat_features":["api.Animation","api.Animation.Animation","api.Animation.cancel_event","api.Animation.cancel","api.Animation.commitStyles","api.Animation.currentTime","api.Animation.effect","api.Animation.finish","api.Animation.finished","api.Animation.finish_event","api.Animation.id","api.Animation.pause","api.Animation.pending","api.Animation.persist","api.Animation.play","api.Animation.playbackRate","api.Animation.playState","api.Animation.ready","api.Animation.remove_event","api.Animation.replaceState","api.Animation.reverse","api.Animation.startTime","api.Animation.timeline","api.Animation.updatePlaybackRate","api.AnimationTimeline","api.AnimationTimeline.currentTime","api.AnimationEffect","api.AnimationEffect.getComputedTiming","api.AnimationEffect.getTiming","api.AnimationEffect.updateTiming","api.AnimationPlaybackEvent","api.AnimationPlaybackEvent.AnimationPlaybackEvent","api.AnimationPlaybackEvent.currentTime","api.AnimationPlaybackEvent.timelineTime","api.KeyframeEffect","api.KeyframeEffect.KeyframeEffect","api.KeyframeEffect.composite","api.KeyframeEffect.getKeyframes","api.KeyframeEffect.pseudoElement","api.KeyframeEffect.setKeyframes","api.KeyframeEffect.target","api.DocumentTimeline","api.DocumentTimeline.DocumentTimeline","api.Document.getAnimations","api.Document.timeline","api.Element.animate"],"name":"Web animations","spec":"https://drafts.csswg.org/web-animations-1/","status":{"baseline":"low","baseline_low_date":"2022-09-12","support":{"chrome":"84","chrome_android":"84","edge":"84","firefox":"80","firefox_android":"80","safari":"16","safari_ios":"16"}}},"webcodecs":{"caniuse":"webcodecs","compat_features":["api.AudioData","api.AudioData.allocationSize","api.AudioData.AudioData","api.AudioData.clone","api.AudioData.close","api.AudioData.copyTo","api.AudioData.duration","api.AudioData.format","api.AudioData.numberOfChannels","api.AudioData.numberOfFrames","api.AudioData.sampleRate","api.AudioData.timestamp","api.AudioDecoder","api.AudioDecoder.AudioDecoder","api.AudioDecoder.close","api.AudioDecoder.configure","api.AudioDecoder.decode","api.AudioDecoder.decodeQueueSize","api.AudioDecoder.dequeue_event","api.AudioDecoder.flush","api.AudioDecoder.isConfigSupported_static","api.AudioDecoder.reset","api.AudioDecoder.state","api.AudioEncoder","api.AudioEncoder.AudioEncoder","api.AudioEncoder.close","api.AudioEncoder.configure","api.AudioEncoder.dequeue_event","api.AudioEncoder.encode","api.AudioEncoder.encodeQueueSize","api.AudioEncoder.flush","api.AudioEncoder.isConfigSupported_static","api.AudioEncoder.reset","api.AudioEncoder.state","api.EncodedAudioChunk","api.EncodedAudioChunk.byteLength","api.EncodedAudioChunk.copyTo","api.EncodedAudioChunk.duration","api.EncodedAudioChunk.EncodedAudioChunk","api.EncodedAudioChunk.timestamp","api.EncodedAudioChunk.type","api.EncodedVideoChunk","api.EncodedVideoChunk.byteLength","api.EncodedVideoChunk.copyTo","api.EncodedVideoChunk.duration","api.EncodedVideoChunk.EncodedVideoChunk","api.EncodedVideoChunk.timestamp","api.EncodedVideoChunk.type","api.ImageDecoder","api.ImageDecoder.close","api.ImageDecoder.complete","api.ImageDecoder.completed","api.ImageDecoder.decode","api.ImageDecoder.ImageDecoder","api.ImageDecoder.isTypeSupported_static","api.ImageDecoder.reset","api.ImageDecoder.tracks","api.ImageDecoder.type","api.ImageTrack","api.ImageTrack.animated","api.ImageTrack.frameCount","api.ImageTrack.repetitionCount","api.ImageTrack.selected","api.ImageTrackList","api.ImageTrackList.length","api.ImageTrackList.ready","api.ImageTrackList.selectedIndex","api.ImageTrackList.selectedTrack","api.VideoColorSpace","api.VideoColorSpace.fullRange","api.VideoColorSpace.matrix","api.VideoColorSpace.primaries","api.VideoColorSpace.toJSON","api.VideoColorSpace.transfer","api.VideoColorSpace.VideoColorSpace","api.VideoDecoder","api.VideoDecoder.close","api.VideoDecoder.configure","api.VideoDecoder.decode","api.VideoDecoder.decodeQueueSize","api.VideoDecoder.dequeue_event","api.VideoDecoder.flush","api.VideoDecoder.isConfigSupported_static","api.VideoDecoder.reset","api.VideoDecoder.state","api.VideoDecoder.VideoDecoder","api.VideoEncoder","api.VideoEncoder.close","api.VideoEncoder.configure","api.VideoEncoder.dequeue_event","api.VideoEncoder.encode","api.VideoEncoder.encodeQueueSize","api.VideoEncoder.flush","api.VideoEncoder.isConfigSupported_static","api.VideoEncoder.reset","api.VideoEncoder.state","api.VideoEncoder.VideoEncoder","api.VideoFrame","api.VideoFrame.allocationSize","api.VideoFrame.clone","api.VideoFrame.close","api.VideoFrame.codedHeight","api.VideoFrame.codedRect","api.VideoFrame.codedWidth","api.VideoFrame.colorSpace","api.VideoFrame.copyTo","api.VideoFrame.displayHeight","api.VideoFrame.displayWidth","api.VideoFrame.duration","api.VideoFrame.format","api.VideoFrame.timestamp","api.VideoFrame.VideoFrame","api.VideoFrame.visibleRect"],"name":"WebCodecs","spec":"https://w3c.github.io/webcodecs/","status":{"baseline":false,"support":{"chrome":"106","chrome_android":"106","edge":"106"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3464"},"webdriver-bidi":{"name":"WebDriver BiDi","spec":"https://w3c.github.io/webdriver-bidi/"},"webhid":{"caniuse":"webhid","compat_features":["api.HID","api.HID.connect_event","api.HID.disconnect_event","api.HID.getDevices","api.HID.requestDevice","api.HIDConnectionEvent","api.HIDConnectionEvent.HIDConnectionEvent","api.HIDConnectionEvent.device","api.HIDDevice","api.HIDDevice.close","api.HIDDevice.collections","api.HIDDevice.inputreport_event","api.HIDDevice.open","api.HIDDevice.opened","api.HIDDevice.productId","api.HIDDevice.productName","api.HIDDevice.receiveFeatureReport","api.HIDDevice.sendFeatureReport","api.HIDDevice.sendReport","api.HIDDevice.vendorId","api.HIDInputReportEvent","api.HIDInputReportEvent.data","api.HIDInputReportEvent.device","api.HIDInputReportEvent.reportId","api.Navigator.hid","http.headers.Permissions-Policy.hid"],"name":"WebHID","spec":"https://wicg.github.io/webhid/","status":{"baseline":false,"support":{"chrome":"89","edge":"89"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2865"},"webp":{"caniuse":"webp","name":"WebP","spec":"https://www.ietf.org/archive/id/draft-zern-webp-13.html","usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3797"},"webtransport":{"caniuse":"webtransport","compat_features":["api.WebTransport","api.WebTransport.WebTransport","api.WebTransport.close","api.WebTransport.closed","api.WebTransport.createBidirectionalStream","api.WebTransport.createUnidirectionalStream","api.WebTransport.datagrams","api.WebTransport.incomingBidirectionalStreams","api.WebTransport.incomingUnidirectionalStreams","api.WebTransport.ready","api.WebTransportBidirectionalStream","api.WebTransportBidirectionalStream.readable","api.WebTransportBidirectionalStream.writable","api.WebTransportDatagramDuplexStream","api.WebTransportDatagramDuplexStream.incomingHighWaterMark","api.WebTransportDatagramDuplexStream.incomingMaxAge","api.WebTransportDatagramDuplexStream.maxDatagramSize","api.WebTransportDatagramDuplexStream.outgoingHighWaterMark","api.WebTransportDatagramDuplexStream.outgoingMaxAge","api.WebTransportDatagramDuplexStream.readable","api.WebTransportDatagramDuplexStream.writable","api.WebTransportError","api.WebTransportError.WebTransportError","api.WebTransportError.source","api.WebTransportError.streamErrorCode"],"name":"WebTransport","spec":"https://w3c.github.io/webtransport/","status":{"baseline":false,"support":{"chrome":"97","chrome_android":"97","edge":"97","firefox":"114","firefox_android":"114"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/3472"},"webusb":{"caniuse":"webusb","compat_features":["api.Navigator.usb","api.USB","api.USB.connect_event","api.USB.disconnect_event","api.USB.getDevices","api.USB.requestDevice","api.USBAlternateInterface","api.USBAlternateInterface.alternateSetting","api.USBAlternateInterface.endpoints","api.USBAlternateInterface.interfaceClass","api.USBAlternateInterface.interfaceName","api.USBAlternateInterface.interfaceProtocol","api.USBAlternateInterface.interfaceSubclass","api.USBAlternateInterface.USBAlternateInterface","api.USBConfiguration","api.USBConfiguration.configurationName","api.USBConfiguration.configurationValue","api.USBConfiguration.interfaces","api.USBConfiguration.USBConfiguration","api.USBConnectionEvent","api.USBConnectionEvent.device","api.USBConnectionEvent.USBConnectionEvent","api.USBDevice","api.USBDevice.claimInterface","api.USBDevice.clearHalt","api.USBDevice.close","api.USBDevice.configuration","api.USBDevice.configurations","api.USBDevice.controlTransferIn","api.USBDevice.controlTransferOut","api.USBDevice.deviceClass","api.USBDevice.deviceProtocol","api.USBDevice.deviceSubclass","api.USBDevice.deviceVersionMajor","api.USBDevice.deviceVersionMinor","api.USBDevice.deviceVersionSubminor","api.USBDevice.forget","api.USBDevice.isochronousTransferIn","api.USBDevice.isochronousTransferOut","api.USBDevice.manufacturerName","api.USBDevice.open","api.USBDevice.opened","api.USBDevice.productId","api.USBDevice.productName","api.USBDevice.releaseInterface","api.USBDevice.reset","api.USBDevice.selectAlternateInterface","api.USBDevice.selectConfiguration","api.USBDevice.serialNumber","api.USBDevice.transferIn","api.USBDevice.transferOut","api.USBDevice.usbVersionMajor","api.USBDevice.usbVersionMinor","api.USBDevice.usbVersionSubminor","api.USBDevice.vendorId","api.USBEndpoint","api.USBEndpoint.direction","api.USBEndpoint.endpointNumber","api.USBEndpoint.packetSize","api.USBEndpoint.type","api.USBEndpoint.USBEndpoint","api.USBInterface","api.USBInterface.alternate","api.USBInterface.alternates","api.USBInterface.claimed","api.USBInterface.interfaceNumber","api.USBInterface.USBInterface","api.USBInTransferResult","api.USBInTransferResult.data","api.USBInTransferResult.status","api.USBInTransferResult.USBInTransferResult","api.USBIsochronousInTransferPacket","api.USBIsochronousInTransferPacket.data","api.USBIsochronousInTransferPacket.status","api.USBIsochronousInTransferPacket.USBIsochronousInTransferPacket","api.USBIsochronousInTransferResult","api.USBIsochronousInTransferResult.data","api.USBIsochronousInTransferResult.packets","api.USBIsochronousInTransferResult.USBIsochronousInTransferResult","api.USBIsochronousOutTransferPacket","api.USBIsochronousOutTransferPacket.bytesWritten","api.USBIsochronousOutTransferPacket.status","api.USBIsochronousOutTransferPacket.USBIsochronousOutTransferPacket","api.USBIsochronousOutTransferResult","api.USBIsochronousOutTransferResult.packets","api.USBIsochronousOutTransferResult.USBIsochronousOutTransferResult","api.USBOutTransferResult","api.USBOutTransferResult.bytesWritten","api.USBOutTransferResult.status","api.USBOutTransferResult.USBOutTransferResult","api.WorkerNavigator.usb","http.headers.Permissions-Policy.usb"],"name":"WebUSB","spec":"https://wicg.github.io/webusb/","status":{"baseline":false,"support":{"chrome":"101","chrome_android":"101","edge":"101"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/1519"},"webvtt":{"caniuse":"webvtt","compat_features":["api.VTTCue","api.VTTCue.VTTCue","api.VTTCue.align","api.VTTCue.getCueAsHTML","api.VTTCue.line","api.VTTCue.position","api.VTTCue.size","api.VTTCue.snapToLines","api.VTTCue.text","api.VTTCue.vertical"],"name":"WebVTT","spec":"https://w3c.github.io/webvtt/","status":{"baseline":"high","baseline_high_date":"2022-07-15","baseline_low_date":"2020-01-15","support":{"chrome":"33","chrome_android":"33","edge":"79","firefox":"31","firefox_android":"31","safari":"8","safari_ios":"8"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/409"},"where":{"compat_features":["css.selectors.where","css.selectors.where.forgiving_selector_list"],"name":":where()","spec":"https://drafts.csswg.org/selectors-4/#zero-matches","status":{"baseline":"high","baseline_high_date":"2023-07-21","baseline_low_date":"2021-01-21","support":{"chrome":"88","chrome_android":"88","edge":"88","firefox":"82","firefox_android":"82","safari":"14","safari_ios":"14"}},"usage_stats":"https://chromestatus.com/metrics/feature/timeline/popularity/2431"}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-features",
|
|
3
3
|
"description": "Curated list of Web platform features",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.6.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -13,14 +13,17 @@
|
|
|
13
13
|
".": "./index.js",
|
|
14
14
|
"./index.json": "./index.json"
|
|
15
15
|
},
|
|
16
|
+
"types": "./index.d.ts",
|
|
16
17
|
"files": [
|
|
18
|
+
"index.d.ts",
|
|
17
19
|
"index.js",
|
|
18
20
|
"index.json"
|
|
19
21
|
],
|
|
20
22
|
"scripts": {
|
|
21
|
-
"prepare": "tsc"
|
|
23
|
+
"prepare": "tsc && rm types.js && tsup ./index.ts --dts-only --format=esm --out-dir=."
|
|
22
24
|
},
|
|
23
25
|
"devDependencies": {
|
|
26
|
+
"tsup": "^8.0.1",
|
|
24
27
|
"typescript": "^5.0.4"
|
|
25
28
|
}
|
|
26
29
|
}
|