chrome-devtools-frontend 1.0.1000934 → 1.0.1002543
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/config/gni/devtools_grd_files.gni +4 -3
- package/front_end/.eslintrc.js +1 -0
- package/front_end/core/common/ParsedURL.ts +3 -3
- package/front_end/core/host/InspectorFrontendHost.ts +30 -1
- package/front_end/core/i18n/locales/en-US.json +177 -12
- package/front_end/core/i18n/locales/en-XL.json +177 -12
- package/front_end/core/protocol_client/InspectorBackend.ts +4 -0
- package/front_end/core/root/Runtime.ts +7 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +6 -5
- package/front_end/entrypoints/formatter_worker/FormatterActions.ts +14 -0
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +491 -0
- package/front_end/entrypoints/formatter_worker/Substitute.ts +4 -440
- package/front_end/entrypoints/formatter_worker/formatter_worker.ts +2 -0
- package/front_end/generated/InspectorBackendCommands.js +38 -10
- package/front_end/generated/protocol-mapping.d.ts +5 -1
- package/front_end/generated/protocol-proxy-api.d.ts +4 -1
- package/front_end/generated/protocol.ts +50 -10
- package/front_end/models/bindings/BreakpointManager.ts +12 -11
- package/front_end/models/bindings/CompilerScriptMapping.ts +1 -1
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +5 -36
- package/front_end/models/issues_manager/DeprecationIssue.ts +233 -257
- package/front_end/models/issues_manager/Issue.ts +8 -4
- package/front_end/models/persistence/PersistenceImpl.ts +2 -2
- package/front_end/models/timeline_model/TimelineModel.ts +0 -48
- package/front_end/panels/application/AppManifestView.ts +3 -3
- package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +11 -6
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +2 -2
- package/front_end/panels/application/BackgroundServiceView.ts +5 -4
- package/front_end/panels/application/ResourcesPanel.ts +1 -1
- package/front_end/panels/application/components/BackForwardCacheView.ts +4 -5
- package/front_end/panels/application/components/FrameDetailsView.ts +19 -19
- package/front_end/panels/application/components/PermissionsPolicySection.ts +2 -2
- package/front_end/panels/console/ConsoleViewMessage.ts +6 -3
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -2
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +4 -0
- package/front_end/panels/elements/StylePropertyTreeElement.ts +19 -13
- package/front_end/panels/elements/StylesSidebarPane.ts +53 -0
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +4 -3
- package/front_end/panels/issues/AffectedSourcesView.ts +2 -1
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +0 -43
- package/front_end/panels/issues/IssueView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +5 -3
- package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +2 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +4 -0
- package/front_end/panels/network/components/RequestTrustTokensView.ts +7 -7
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +2 -2
- package/front_end/panels/profiler/HeapSnapshotView.ts +2 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +1 -1
- package/front_end/panels/security/SecurityPanel.ts +6 -5
- package/front_end/panels/settings/SettingsScreen.ts +2 -3
- package/front_end/panels/sources/DebuggerPlugin.ts +10 -9
- package/front_end/panels/sources/JavaScriptBreakpointsSidebarPane.ts +3 -3
- package/front_end/panels/timeline/PerformanceModel.ts +2 -6
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +1 -14
- package/front_end/panels/timeline/TimelineUIUtils.ts +14 -12
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1036 -1088
- package/front_end/third_party/lighthouse/locales/en-US.json +241 -4
- package/front_end/third_party/lighthouse/locales/en-XL.json +241 -4
- package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -0
- package/front_end/third_party/lighthouse/report/bundle.js +18 -12
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/third_party/puppeteer/package/README.md +11 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +26 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +19 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +6 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js +18 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +5 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.js +2 -15
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js +23 -15
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +17 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/package.json +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +19 -11
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +6 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js +17 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js +4 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +2 -15
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +21 -13
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +17 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/package.json +33 -18
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +4 -1
- package/front_end/ui/components/data_grid/DataGrid.ts +1 -1
- package/front_end/ui/components/data_grid/DataGridUtils.ts +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.ts +2 -1
- package/front_end/ui/components/docs/panel_feedback/basic.ts +3 -2
- package/front_end/ui/components/docs/panel_feedback/button.ts +2 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -3
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +2 -3
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +4 -6
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -4
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +4 -4
- package/front_end/ui/legacy/EmptyWidget.ts +2 -1
- package/front_end/ui/legacy/UIUtils.ts +4 -4
- package/front_end/ui/legacy/XLink.ts +12 -13
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +2 -4
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +0 -2
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +3 -7
- package/front_end/ui/legacy/components/utils/Linkifier.ts +23 -23
- package/front_end/ui/legacy/toolbar.css +1 -1
- package/front_end/ui/lit-html/lit-html.ts +3 -0
- package/package.json +1 -1
- package/scripts/eslint_rules/lib/lit_template_result_or_nothing.js +4 -0
- package/scripts/eslint_rules/tests/lit_template_result_or_nothing_test.js +13 -0
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceEventId.md +0 -3
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md +0 -4
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md +0 -4
@@ -746,24 +746,210 @@
|
|
746
746
|
"lighthouse-core/audits/csp-xss.js | title": {
|
747
747
|
"message": "Ensure CSP is effective against XSS attacks"
|
748
748
|
},
|
749
|
+
"lighthouse-core/audits/deprecations.js | authorizationCoveredByWildcard": {
|
750
|
+
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
|
751
|
+
},
|
752
|
+
"lighthouse-core/audits/deprecations.js | canRequestURLHTTPContainingNewline": {
|
753
|
+
"message": "Resource requests whose URLs contained both removed whitespace `(n|r|t)` characters and less-than characters (`<`) are blocked. Please remove newlines and encode less-than characters from places like element attribute values in order to load these resources."
|
754
|
+
},
|
755
|
+
"lighthouse-core/audits/deprecations.js | chromeLoadTimesConnectionInfo": {
|
756
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
|
757
|
+
},
|
758
|
+
"lighthouse-core/audits/deprecations.js | chromeLoadTimesFirstPaintAfterLoadTime": {
|
759
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
|
760
|
+
},
|
761
|
+
"lighthouse-core/audits/deprecations.js | chromeLoadTimesWasAlternateProtocolAvailable": {
|
762
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
|
763
|
+
},
|
749
764
|
"lighthouse-core/audits/deprecations.js | columnDeprecate": {
|
750
765
|
"message": "Deprecation / Warning"
|
751
766
|
},
|
752
767
|
"lighthouse-core/audits/deprecations.js | columnLine": {
|
753
768
|
"message": "Line"
|
754
769
|
},
|
770
|
+
"lighthouse-core/audits/deprecations.js | cookieWithTruncatingChar": {
|
771
|
+
"message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
|
772
|
+
},
|
773
|
+
"lighthouse-core/audits/deprecations.js | crossOriginAccessBasedOnDocumentDomain": {
|
774
|
+
"message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting `document.domain`."
|
775
|
+
},
|
776
|
+
"lighthouse-core/audits/deprecations.js | crossOriginWindowAlert": {
|
777
|
+
"message": "Triggering `window.alert` from cross origin iframes has been deprecated and will be removed in the future."
|
778
|
+
},
|
779
|
+
"lighthouse-core/audits/deprecations.js | crossOriginWindowConfirm": {
|
780
|
+
"message": "Triggering `window.confirm` from cross origin iframes has been deprecated and will be removed in the future."
|
781
|
+
},
|
782
|
+
"lighthouse-core/audits/deprecations.js | cssSelectorInternalMediaControlsOverlayCastButton": {
|
783
|
+
"message": "The `disableRemotePlayback` attribute should be used in order to disable the default Cast integration instead of using `-internal-media-controls-overlay-cast-button` selector."
|
784
|
+
},
|
785
|
+
"lighthouse-core/audits/deprecations.js | customCursorIntersectsViewport": {
|
786
|
+
"message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
|
787
|
+
},
|
755
788
|
"lighthouse-core/audits/deprecations.js | description": {
|
756
789
|
"message": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://web.dev/deprecations/)."
|
757
790
|
},
|
758
791
|
"lighthouse-core/audits/deprecations.js | displayValue": {
|
759
792
|
"message": "{itemCount, plural,\n =1 {1 warning found}\n other {# warnings found}\n }"
|
760
793
|
},
|
794
|
+
"lighthouse-core/audits/deprecations.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
795
|
+
"message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. To continue using this feature, please opt-out of origin-keyed agent clusters by sending an `Origin-Agent-Cluster: ?0` header along with the HTTP response for the document and frames. See https://developer.chrome.com/blog/immutable-document-domain/ for more details."
|
796
|
+
},
|
797
|
+
"lighthouse-core/audits/deprecations.js | eventPath": {
|
798
|
+
"message": "`Event.path` is deprecated and will be removed. Please use `Event.composedPath()` instead."
|
799
|
+
},
|
761
800
|
"lighthouse-core/audits/deprecations.js | failureTitle": {
|
762
801
|
"message": "Uses deprecated APIs"
|
763
802
|
},
|
803
|
+
"lighthouse-core/audits/deprecations.js | feature": {
|
804
|
+
"message": "Check the feature status page for more details."
|
805
|
+
},
|
806
|
+
"lighthouse-core/audits/deprecations.js | geolocationInsecureOrigin": {
|
807
|
+
"message": "`getCurrentPosition()` and `watchPosition()` no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
808
|
+
},
|
809
|
+
"lighthouse-core/audits/deprecations.js | geolocationInsecureOriginDeprecatedNotRemoved": {
|
810
|
+
"message": "`getCurrentPosition()` and `watchPosition()` are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
811
|
+
},
|
812
|
+
"lighthouse-core/audits/deprecations.js | getUserMediaInsecureOrigin": {
|
813
|
+
"message": "`getUserMedia()` no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
814
|
+
},
|
815
|
+
"lighthouse-core/audits/deprecations.js | hostCandidateAttributeGetter": {
|
816
|
+
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
|
817
|
+
},
|
818
|
+
"lighthouse-core/audits/deprecations.js | insecurePrivateNetworkSubresourceRequest": {
|
819
|
+
"message": "The website requested a subresource from a network that it could only access because of its users' privileged network position. These requests expose non-public devices and servers to the internet, increasing the risk of a cross-site request forgery (CSRF) attack, and/or information leakage. To mitigate these risks, Chrome deprecates requests to non-public subresources when initiated from non-secure contexts, and will start blocking them."
|
820
|
+
},
|
821
|
+
"lighthouse-core/audits/deprecations.js | legacyConstraintGoogCpuOveruseDetection": {
|
822
|
+
"message": "CPU overuse detection is enabled-by-default and the ability to disable it using `googCpuOveruseDetection` will soon be removed. Please stop using this legacy constraint."
|
823
|
+
},
|
824
|
+
"lighthouse-core/audits/deprecations.js | legacyConstraintGoogIPv6": {
|
825
|
+
"message": "IPv6 is enabled-by-default and the ability to disable it using `googIPv6` will soon be removed. Please stop using this legacy constraint."
|
826
|
+
},
|
827
|
+
"lighthouse-core/audits/deprecations.js | legacyConstraintGoogScreencastMinBitrate": {
|
828
|
+
"message": "Screencast min bitrate is now set to 100 kbps by default and `googScreencastMinBitrate` will soon be ignored in favor of this new default. Please stop using this legacy constraint."
|
829
|
+
},
|
830
|
+
"lighthouse-core/audits/deprecations.js | legacyConstraintGoogSuspendBelowMinBitrate": {
|
831
|
+
"message": "Support for the `googSuspendBelowMinBitrate` constraint is about to be removed. Please stop using this legacy constraint."
|
832
|
+
},
|
833
|
+
"lighthouse-core/audits/deprecations.js | localCSSFileExtensionRejected": {
|
834
|
+
"message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
|
835
|
+
},
|
836
|
+
"lighthouse-core/audits/deprecations.js | mediaElementAudioSourceNode": {
|
837
|
+
"message": "Creating a `MediaElementAudioSourceNode` on an `OfflineAudioContext` is deprecated and will be removed."
|
838
|
+
},
|
839
|
+
"lighthouse-core/audits/deprecations.js | mediaSourceAbortRemove": {
|
840
|
+
"message": "Using `SourceBuffer.abort()` to abort `remove()`'s asynchronous range removal is deprecated due to specification change. Support will be removed in the future. You should instead await `updateend`. `abort()` is intended to only abort an asynchronous media append or reset parser state."
|
841
|
+
},
|
842
|
+
"lighthouse-core/audits/deprecations.js | mediaSourceDurationTruncatingBuffered": {
|
843
|
+
"message": "Setting `MediaSource.duration` below the highest presentation timestamp of any buffered coded frames is deprecated due to specification change. Support for implicit removal of truncated buffered media will be removed in the future. You should instead perform explicit `remove(newDuration, oldDuration)` on all `sourceBuffers`, where `newDuration < oldDuration`."
|
844
|
+
},
|
845
|
+
"lighthouse-core/audits/deprecations.js | milestone": {
|
846
|
+
"message": "This change will go into effect with milestone {milestone}."
|
847
|
+
},
|
848
|
+
"lighthouse-core/audits/deprecations.js | noSysexWebMIDIWithoutPermission": {
|
849
|
+
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
|
850
|
+
},
|
851
|
+
"lighthouse-core/audits/deprecations.js | notificationInsecureOrigin": {
|
852
|
+
"message": "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
853
|
+
},
|
854
|
+
"lighthouse-core/audits/deprecations.js | notificationPermissionRequestedIframe": {
|
855
|
+
"message": "Permission for the Notification API may no longer be requested from a cross-origin iframe. You should consider requesting permission from a top-level frame or opening a new window instead."
|
856
|
+
},
|
857
|
+
"lighthouse-core/audits/deprecations.js | obsoleteWebRtcCipherSuite": {
|
858
|
+
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
859
|
+
},
|
860
|
+
"lighthouse-core/audits/deprecations.js | paymentRequestBasicCard": {
|
861
|
+
"message": "The `basic-card` payment method is deprecated and will be removed."
|
862
|
+
},
|
863
|
+
"lighthouse-core/audits/deprecations.js | paymentRequestShowWithoutGesture": {
|
864
|
+
"message": "Calling `PaymentRequest.show()` without user activation is deprecated and will be removed."
|
865
|
+
},
|
866
|
+
"lighthouse-core/audits/deprecations.js | pictureSourceSrc": {
|
867
|
+
"message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
|
868
|
+
},
|
869
|
+
"lighthouse-core/audits/deprecations.js | prefixedCancelAnimationFrame": {
|
870
|
+
"message": "`webkitCancelAnimationFrame` is vendor-specific. Please use the standard `cancelAnimationFrame` instead."
|
871
|
+
},
|
872
|
+
"lighthouse-core/audits/deprecations.js | prefixedRequestAnimationFrame": {
|
873
|
+
"message": "`webkitRequestAnimationFrame` is vendor-specific. Please use the standard `requestAnimationFrame` instead."
|
874
|
+
},
|
875
|
+
"lighthouse-core/audits/deprecations.js | prefixedStorageInfo": {
|
876
|
+
"message": "`window.webkitStorageInfo` is deprecated. Please use `navigator.webkitTemporaryStorage` or `navigator.webkitPersistentStorage` instead."
|
877
|
+
},
|
878
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoDisplayingFullscreen": {
|
879
|
+
"message": "`HTMLVideoElement.webkitDisplayingFullscreen` is deprecated. Please use `Document.fullscreenElement` instead."
|
880
|
+
},
|
881
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoEnterFullscreen": {
|
882
|
+
"message": "`HTMLVideoElement.webkitEnterFullscreen()` is deprecated. Please use `Element.requestFullscreen()` instead."
|
883
|
+
},
|
884
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoEnterFullScreen": {
|
885
|
+
"message": "`HTMLVideoElement.webkitEnterFullScreen()` is deprecated. Please use `Element.requestFullscreen()` instead."
|
886
|
+
},
|
887
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoExitFullscreen": {
|
888
|
+
"message": "`HTMLVideoElement.webkitExitFullscreen()` is deprecated. Please use `Document.exitFullscreen()` instead."
|
889
|
+
},
|
890
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoExitFullScreen": {
|
891
|
+
"message": "`HTMLVideoElement.webkitExitFullsSreen()` is deprecated. Please use `Document.exitFullscreen()` instead."
|
892
|
+
},
|
893
|
+
"lighthouse-core/audits/deprecations.js | prefixedVideoSupportsFullscreen": {
|
894
|
+
"message": "`HTMLVideoElement.webkitSupportsFullscreen` is deprecated. Please use `Document.fullscreenEnabled` instead."
|
895
|
+
},
|
896
|
+
"lighthouse-core/audits/deprecations.js | rangeExpand": {
|
897
|
+
"message": "`Range.expand()` is deprecated. Please use `Selection.modify()` instead."
|
898
|
+
},
|
899
|
+
"lighthouse-core/audits/deprecations.js | requestedSubresourceWithEmbeddedCredentials": {
|
900
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
|
901
|
+
},
|
902
|
+
"lighthouse-core/audits/deprecations.js | rtcConstraintEnableDtlsSrtpFalse": {
|
903
|
+
"message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `false` value for this constraint, which is interpreted as an attempt to use the removed `SDES` key negotiation method. This functionality is removed; use a service that supports DTLS key negotiation instead."
|
904
|
+
},
|
905
|
+
"lighthouse-core/audits/deprecations.js | rtcConstraintEnableDtlsSrtpTrue": {
|
906
|
+
"message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `true` value for this constraint, which had no effect, but you can remove this constraint for tidiness."
|
907
|
+
},
|
908
|
+
"lighthouse-core/audits/deprecations.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
909
|
+
"message": "Complex Plan B SDP detected! Chrome will switch the default `sdpSemantics` from `plan-b` to the standardized `unified-plan` format and this peer connection is relying on the default `sdpSemantics`. This SDP is not compatible with Unified Plan and will be rejected by clients expecting Unified Plan. For more information about how to prepare for the switch, see https://webrtc.org/web-apis/chrome/unified-plan/."
|
910
|
+
},
|
911
|
+
"lighthouse-core/audits/deprecations.js | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
|
912
|
+
"message": "The `mediaConstraints` version of `RTCOfferOptions/RTCAnswerOptions` are deprecated and will soon be removed, please migrate to the promise-based `createOffer`/`createAnswer` instead."
|
913
|
+
},
|
914
|
+
"lighthouse-core/audits/deprecations.js | rtcPeerConnectionSdpSemanticsPlanB": {
|
915
|
+
"message": "Plan B SDP semantics, which is used when constructing an `RTCPeerConnection` with `{sdpSemantics:plan-b}`, is a legacy non-standard version of the Session Description Protocol that has been permanently deleted from the Web Platform. It is still available when building with IS_FUCHSIA, but we intend to delete it as soon as possible. Stop depending on it. See https://crbug.com/1302249 for status."
|
916
|
+
},
|
917
|
+
"lighthouse-core/audits/deprecations.js | rtcpMuxPolicyNegotiate": {
|
918
|
+
"message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
|
919
|
+
},
|
920
|
+
"lighthouse-core/audits/deprecations.js | rtpDataChannel": {
|
921
|
+
"message": "RTP data channels are no longer supported. The `RtpDataChannels` constraint is currently ignored, and may cause an error at a later date."
|
922
|
+
},
|
923
|
+
"lighthouse-core/audits/deprecations.js | selectionAddRangeIntersect": {
|
924
|
+
"message": "The behavior that `Selection.addRange()` merges existing Range and the specified Range was removed."
|
925
|
+
},
|
926
|
+
"lighthouse-core/audits/deprecations.js | sharedArrayBufferConstructedWithoutIsolation": {
|
927
|
+
"message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
928
|
+
},
|
929
|
+
"lighthouse-core/audits/deprecations.js | textToSpeech_DisallowedByAutoplay": {
|
930
|
+
"message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
|
931
|
+
},
|
764
932
|
"lighthouse-core/audits/deprecations.js | title": {
|
765
933
|
"message": "Avoids deprecated APIs"
|
766
934
|
},
|
935
|
+
"lighthouse-core/audits/deprecations.js | unknownDeprecation": {
|
936
|
+
"message": "..."
|
937
|
+
},
|
938
|
+
"lighthouse-core/audits/deprecations.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
939
|
+
"message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
940
|
+
},
|
941
|
+
"lighthouse-core/audits/deprecations.js | webCodecsVideoFrameDefaultTimestamp": {
|
942
|
+
"message": "Constructing a `VideoFrame` without a timestamp is deprecated and support will be removed. Please provide a timestamp via `VideoFrameInit`."
|
943
|
+
},
|
944
|
+
"lighthouse-core/audits/deprecations.js | xhrJSONEncodingDetection": {
|
945
|
+
"message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
|
946
|
+
},
|
947
|
+
"lighthouse-core/audits/deprecations.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
948
|
+
"message": "Synchronous `XMLHttpRequest` on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/."
|
949
|
+
},
|
950
|
+
"lighthouse-core/audits/deprecations.js | xrSupportsSession": {
|
951
|
+
"message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
|
952
|
+
},
|
767
953
|
"lighthouse-core/audits/dobetterweb/charset.js | description": {
|
768
954
|
"message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
|
769
955
|
},
|
@@ -1067,6 +1253,9 @@
|
|
1067
1253
|
"lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
|
1068
1254
|
"message": "Lighthouse could not determine if there was a service worker. Please try with a newer version of Chrome."
|
1069
1255
|
},
|
1256
|
+
"lighthouse-core/audits/installable-manifest.js | scheme-not-supported-for-webapk": {
|
1257
|
+
"message": "The manifest URL scheme ({scheme}) is not supported on Android."
|
1258
|
+
},
|
1070
1259
|
"lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
|
1071
1260
|
"message": "Manifest start URL is not valid"
|
1072
1261
|
},
|
@@ -1184,6 +1373,9 @@
|
|
1184
1373
|
"lighthouse-core/audits/metrics/cumulative-layout-shift.js | description": {
|
1185
1374
|
"message": "Cumulative Layout Shift measures the movement of visible elements within the viewport. [Learn more](https://web.dev/cls/)."
|
1186
1375
|
},
|
1376
|
+
"lighthouse-core/audits/metrics/experimental-interaction-to-next-paint.js | description": {
|
1377
|
+
"message": "Interaction to Next Paint measures page responsiveness, how long it takes the page to visibly respond to user input. [Learn more](https://web.dev/inp/)."
|
1378
|
+
},
|
1187
1379
|
"lighthouse-core/audits/metrics/first-contentful-paint.js | description": {
|
1188
1380
|
"message": "First Contentful Paint marks the time at which the first text or image is painted. [Learn more](https://web.dev/first-contentful-paint/)."
|
1189
1381
|
},
|
@@ -1649,6 +1841,27 @@
|
|
1649
1841
|
"lighthouse-core/audits/viewport.js | title": {
|
1650
1842
|
"message": "Has a `<meta name=\"viewport\">` tag with `width` or `initial-scale`"
|
1651
1843
|
},
|
1844
|
+
"lighthouse-core/audits/work-during-interaction.js | description": {
|
1845
|
+
"message": "This is the thread-blocking work occurring during the Interaction to Next Paint measurement. [Learn more](https://web.dev/inp/)."
|
1846
|
+
},
|
1847
|
+
"lighthouse-core/audits/work-during-interaction.js | displayValue": {
|
1848
|
+
"message": "{timeInMs, number, milliseconds} ms spent on event '{interactionType}'"
|
1849
|
+
},
|
1850
|
+
"lighthouse-core/audits/work-during-interaction.js | failureTitle": {
|
1851
|
+
"message": "Minimize work during key interaction"
|
1852
|
+
},
|
1853
|
+
"lighthouse-core/audits/work-during-interaction.js | inputDelay": {
|
1854
|
+
"message": "Input delay"
|
1855
|
+
},
|
1856
|
+
"lighthouse-core/audits/work-during-interaction.js | presentationDelay": {
|
1857
|
+
"message": "Presentation delay"
|
1858
|
+
},
|
1859
|
+
"lighthouse-core/audits/work-during-interaction.js | processingDelay": {
|
1860
|
+
"message": "Processing delay"
|
1861
|
+
},
|
1862
|
+
"lighthouse-core/audits/work-during-interaction.js | title": {
|
1863
|
+
"message": "Minimizes work during key interaction"
|
1864
|
+
},
|
1652
1865
|
"lighthouse-core/config/default-config.js | a11yAriaGroupDescription": {
|
1653
1866
|
"message": "These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader."
|
1654
1867
|
},
|
@@ -1955,6 +2168,9 @@
|
|
1955
2168
|
"lighthouse-core/lib/i18n/i18n.js | imageResourceType": {
|
1956
2169
|
"message": "Image"
|
1957
2170
|
},
|
2171
|
+
"lighthouse-core/lib/i18n/i18n.js | interactionToNextPaint": {
|
2172
|
+
"message": "Interaction to Next Paint"
|
2173
|
+
},
|
1958
2174
|
"lighthouse-core/lib/i18n/i18n.js | interactiveMetric": {
|
1959
2175
|
"message": "Time to Interactive"
|
1960
2176
|
},
|
@@ -2109,7 +2325,7 @@
|
|
2109
2325
|
"message": "Specify `@font-display` when defining custom fonts in your theme."
|
2110
2326
|
},
|
2111
2327
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | modern-image-formats": {
|
2112
|
-
"message": "Consider
|
2328
|
+
"message": "Consider configuring [WebP image formats with a Convert image style](https://www.drupal.org/docs/core-modules-and-themes/core-modules/image-module/working-with-images#styles) on your site."
|
2113
2329
|
},
|
2114
2330
|
"node_modules/lighthouse-stack-packs/packs/drupal.js | offscreen-images": {
|
2115
2331
|
"message": "Install [a Drupal module](https://www.drupal.org/project/project_module?f%5B0%5D=&f%5B1%5D=&f%5B2%5D=im_vid_3%3A67&f%5B3%5D=&f%5B4%5D=sm_field_project_type%3Afull&f%5B5%5D=&f%5B6%5D=&text=%22lazy+load%22&solrsort=iss_project_release_usage+desc&op=Search) that can lazy load images. Such modules provide the ability to defer any offscreen images to improve performance."
|
@@ -2265,10 +2481,10 @@
|
|
2265
2481
|
"message": "`<link rel=preload>` tags can be added by [modifying a themes's layout](https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/layouts/xml-manage.html)."
|
2266
2482
|
},
|
2267
2483
|
"node_modules/lighthouse-stack-packs/packs/next.js | modern-image-formats": {
|
2268
|
-
"message": "Use the `
|
2484
|
+
"message": "Use the `next/image` component instead of `<img>` to automatically optimize image format. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
2269
2485
|
},
|
2270
2486
|
"node_modules/lighthouse-stack-packs/packs/next.js | offscreen-images": {
|
2271
|
-
"message": "Use the `next/image` component
|
2487
|
+
"message": "Use the `next/image` component instead of `<img>` to automatically lazy-load images. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
2272
2488
|
},
|
2273
2489
|
"node_modules/lighthouse-stack-packs/packs/next.js | preload-lcp-image": {
|
2274
2490
|
"message": "Use the `next/image` component and set \"priority\" to true to preload LCP image. [Learn more](https://nextjs.org/docs/api-reference/next/image#priority)."
|
@@ -2276,6 +2492,9 @@
|
|
2276
2492
|
"node_modules/lighthouse-stack-packs/packs/next.js | render-blocking-resources": {
|
2277
2493
|
"message": "Use the `next/script` component to defer loading of non-critical third-party scripts. [Learn more](https://nextjs.org/docs/basic-features/script)."
|
2278
2494
|
},
|
2495
|
+
"node_modules/lighthouse-stack-packs/packs/next.js | unsized-images": {
|
2496
|
+
"message": "Use the `next/image` component to make sure images are always sized appropriately. [Learn more](https://nextjs.org/docs/api-reference/next/image#width)."
|
2497
|
+
},
|
2279
2498
|
"node_modules/lighthouse-stack-packs/packs/next.js | unused-css-rules": {
|
2280
2499
|
"message": "Consider setting up `PurgeCSS` in `Next.js` configuration to remove unused rules from stylesheets. [Learn more](https://purgecss.com/guides/next.html)."
|
2281
2500
|
},
|
@@ -2289,7 +2508,7 @@
|
|
2289
2508
|
"message": "Configure caching for immutable assets and `Server-side Rendered` (SSR) pages. [Learn more](https://nextjs.org/docs/going-to-production#caching)."
|
2290
2509
|
},
|
2291
2510
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-optimized-images": {
|
2292
|
-
"message": "Use the `next/image` component instead of `<img>` to
|
2511
|
+
"message": "Use the `next/image` component instead of `<img>` to adjust image quality. [Learn more](https://nextjs.org/docs/basic-features/image-optimization)."
|
2293
2512
|
},
|
2294
2513
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-responsive-images": {
|
2295
2514
|
"message": "Use the `next/image` component to set the appropriate `sizes`. [Learn more](https://nextjs.org/docs/api-reference/next/image#sizes)."
|
@@ -2297,6 +2516,24 @@
|
|
2297
2516
|
"node_modules/lighthouse-stack-packs/packs/next.js | uses-text-compression": {
|
2298
2517
|
"message": "Enable compression on your Next.js server. [Learn more](https://nextjs.org/docs/api-reference/next.config.js/compression)."
|
2299
2518
|
},
|
2519
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | modern-image-formats": {
|
2520
|
+
"message": "Use the `nuxt/image` component and set `format=\"webp\"`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#format)."
|
2521
|
+
},
|
2522
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | offscreen-images": {
|
2523
|
+
"message": "Use the `nuxt/image` component and set `loading=\"lazy\"` for offscreen images. [Learn more](https://image.nuxtjs.org/components/nuxt-img#loading)."
|
2524
|
+
},
|
2525
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | preload-lcp-image": {
|
2526
|
+
"message": "Use the `nuxt/image` component and specify `preload` for LCP image. [Learn more](https://image.nuxtjs.org/components/nuxt-img#preload)."
|
2527
|
+
},
|
2528
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | unsized-images": {
|
2529
|
+
"message": "Use the `nuxt/image` component and specify explicit `width` and `height`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#width--height)."
|
2530
|
+
},
|
2531
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-optimized-images": {
|
2532
|
+
"message": "Use the `nuxt/image` component and set the appropriate `quality`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#quality)."
|
2533
|
+
},
|
2534
|
+
"node_modules/lighthouse-stack-packs/packs/nuxt.js | uses-responsive-images": {
|
2535
|
+
"message": "Use the `nuxt/image` component and set the appropriate `sizes`. [Learn more](https://image.nuxtjs.org/components/nuxt-img#sizes)."
|
2536
|
+
},
|
2300
2537
|
"node_modules/lighthouse-stack-packs/packs/octobercms.js | efficient-animated-content": {
|
2301
2538
|
"message": "[Replace animated GIFs with video](https://web.dev/replace-gifs-with-videos/) for faster web page loads and consider using modern file formats such as [WebM](https://web.dev/replace-gifs-with-videos/#create-webm-videos) or [AV1](https://developers.google.com/web/updates/2018/09/chrome-70-media-updates#av1-decoder) to improve compression efficiency by greater than 30% over the current state-of-the-art video codec, VP9."
|
2302
2539
|
},
|