lighthouse 10.3.0-dev.20230709 → 10.4.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/cli/test/smokehouse/frontends/smokehouse-bin.js +19 -13
- package/cli/test/smokehouse/lighthouse-runners/bundle.js +3 -5
- package/core/audits/long-tasks.d.ts +48 -0
- package/core/audits/long-tasks.js +146 -19
- package/dist/report/flow.js +1 -1
- package/package.json +1 -1
- package/shared/localization/locales/ar-XB.json +233 -2
- package/shared/localization/locales/ar.json +233 -2
- package/shared/localization/locales/bg.json +233 -2
- package/shared/localization/locales/ca.json +233 -2
- package/shared/localization/locales/cs.json +246 -15
- package/shared/localization/locales/da.json +239 -8
- package/shared/localization/locales/de.json +238 -7
- package/shared/localization/locales/el.json +234 -3
- package/shared/localization/locales/en-GB.json +233 -2
- package/shared/localization/locales/en-XA.json +233 -2
- package/shared/localization/locales/es-419.json +233 -2
- package/shared/localization/locales/es.json +233 -2
- package/shared/localization/locales/fi.json +233 -2
- package/shared/localization/locales/fil.json +236 -5
- package/shared/localization/locales/fr.json +235 -4
- package/shared/localization/locales/he.json +233 -2
- package/shared/localization/locales/hi.json +236 -5
- package/shared/localization/locales/hr.json +234 -3
- package/shared/localization/locales/hu.json +233 -2
- package/shared/localization/locales/id.json +233 -2
- package/shared/localization/locales/it.json +234 -3
- package/shared/localization/locales/ja.json +233 -2
- package/shared/localization/locales/ko.json +233 -2
- package/shared/localization/locales/lt.json +233 -2
- package/shared/localization/locales/lv.json +250 -19
- package/shared/localization/locales/nl.json +233 -2
- package/shared/localization/locales/no.json +235 -4
- package/shared/localization/locales/pl.json +233 -2
- package/shared/localization/locales/pt-PT.json +233 -2
- package/shared/localization/locales/pt.json +234 -3
- package/shared/localization/locales/ro.json +233 -2
- package/shared/localization/locales/ru.json +233 -2
- package/shared/localization/locales/sk.json +233 -2
- package/shared/localization/locales/sl.json +233 -2
- package/shared/localization/locales/sr-Latn.json +233 -2
- package/shared/localization/locales/sr.json +233 -2
- package/shared/localization/locales/sv.json +233 -2
- package/shared/localization/locales/ta.json +233 -2
- package/shared/localization/locales/te.json +233 -2
- package/shared/localization/locales/th.json +233 -2
- package/shared/localization/locales/tr.json +233 -2
- package/shared/localization/locales/uk.json +233 -2
- package/shared/localization/locales/vi.json +233 -2
- package/shared/localization/locales/zh-HK.json +233 -2
- package/shared/localization/locales/zh-TW.json +235 -4
- package/shared/localization/locales/zh.json +239 -8
package/package.json
CHANGED
|
@@ -272,6 +272,15 @@
|
|
|
272
272
|
"core/audits/accessibility/html-lang-valid.js | title": {
|
|
273
273
|
"message": "`<html>` element has a valid value for its `[lang]` attribute"
|
|
274
274
|
},
|
|
275
|
+
"core/audits/accessibility/html-xml-lang-mismatch.js | description": {
|
|
276
|
+
"message": "If the webpage does not specify a consistent language, then the screen reader might not announce the page's text correctly. [Learn more about the `lang` attribute](https://dequeuniversity.com/rules/axe/4.7/html-xml-lang-mismatch)."
|
|
277
|
+
},
|
|
278
|
+
"core/audits/accessibility/html-xml-lang-mismatch.js | failureTitle": {
|
|
279
|
+
"message": "`<html>` element does not have an `[xml:lang]` attribute with the same base language as the `[lang]` attribute."
|
|
280
|
+
},
|
|
281
|
+
"core/audits/accessibility/html-xml-lang-mismatch.js | title": {
|
|
282
|
+
"message": "`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute."
|
|
283
|
+
},
|
|
275
284
|
"core/audits/accessibility/image-alt.js | description": {
|
|
276
285
|
"message": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more about the `alt` attribute](https://dequeuniversity.com/rules/axe/4.7/image-alt)."
|
|
277
286
|
},
|
|
@@ -281,6 +290,15 @@
|
|
|
281
290
|
"core/audits/accessibility/image-alt.js | title": {
|
|
282
291
|
"message": "Image elements have `[alt]` attributes"
|
|
283
292
|
},
|
|
293
|
+
"core/audits/accessibility/input-button-name.js | description": {
|
|
294
|
+
"message": "Adding discernable and accessible text to input buttons may help screen reader users understand the purpose of the input button. [Learn more about input buttons](https://dequeuniversity.com/rules/axe/4.7/input-button-name)."
|
|
295
|
+
},
|
|
296
|
+
"core/audits/accessibility/input-button-name.js | failureTitle": {
|
|
297
|
+
"message": "Input buttons do not have discernible text."
|
|
298
|
+
},
|
|
299
|
+
"core/audits/accessibility/input-button-name.js | title": {
|
|
300
|
+
"message": "Input buttons have discernible text."
|
|
301
|
+
},
|
|
284
302
|
"core/audits/accessibility/input-image-alt.js | description": {
|
|
285
303
|
"message": "When an image is being used as an `<input>` button, providing alternative text can help screen reader users understand the purpose of the button. [Learn about input image alt text](https://dequeuniversity.com/rules/axe/4.7/input-image-alt)."
|
|
286
304
|
},
|
|
@@ -362,6 +380,24 @@
|
|
|
362
380
|
"core/audits/accessibility/tabindex.js | title": {
|
|
363
381
|
"message": "No element has a `[tabindex]` value greater than 0"
|
|
364
382
|
},
|
|
383
|
+
"core/audits/accessibility/table-fake-caption.js | description": {
|
|
384
|
+
"message": "Screen readers have features to make navigating tables easier. Ensuring that tables use the actual caption element instead of cells with the `[colspan]` attribute may improve the experience for screen reader users. [Learn more about captions](https://dequeuniversity.com/rules/axe/4.7/table-fake-caption)."
|
|
385
|
+
},
|
|
386
|
+
"core/audits/accessibility/table-fake-caption.js | failureTitle": {
|
|
387
|
+
"message": "Tables do not use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption."
|
|
388
|
+
},
|
|
389
|
+
"core/audits/accessibility/table-fake-caption.js | title": {
|
|
390
|
+
"message": "Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption."
|
|
391
|
+
},
|
|
392
|
+
"core/audits/accessibility/td-has-header.js | description": {
|
|
393
|
+
"message": "Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. [Learn more about table headers](https://dequeuniversity.com/rules/axe/4.7/td-has-header)."
|
|
394
|
+
},
|
|
395
|
+
"core/audits/accessibility/td-has-header.js | failureTitle": {
|
|
396
|
+
"message": "`<td>` elements in a large `<table>` do not have table headers."
|
|
397
|
+
},
|
|
398
|
+
"core/audits/accessibility/td-has-header.js | title": {
|
|
399
|
+
"message": "`<td>` elements in a large `<table>` have one or more table headers."
|
|
400
|
+
},
|
|
365
401
|
"core/audits/accessibility/td-headers-attr.js | description": {
|
|
366
402
|
"message": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more about the `headers` attribute](https://dequeuniversity.com/rules/axe/4.7/td-headers-attr)."
|
|
367
403
|
},
|
|
@@ -1751,6 +1787,9 @@
|
|
|
1751
1787
|
"core/lib/bf-cache-strings.js | appBanner": {
|
|
1752
1788
|
"message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
|
|
1753
1789
|
},
|
|
1790
|
+
"core/lib/bf-cache-strings.js | authorizationHeader": {
|
|
1791
|
+
"message": "Back/forward cache is disabled due to a keepalive request."
|
|
1792
|
+
},
|
|
1754
1793
|
"core/lib/bf-cache-strings.js | backForwardCacheDisabled": {
|
|
1755
1794
|
"message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
|
|
1756
1795
|
},
|
|
@@ -1817,6 +1856,9 @@
|
|
|
1817
1856
|
"core/lib/bf-cache-strings.js | contentWebUSB": {
|
|
1818
1857
|
"message": "Pages that use WebUSB API are not eligible for back/forward cache."
|
|
1819
1858
|
},
|
|
1859
|
+
"core/lib/bf-cache-strings.js | cookieDisabled": {
|
|
1860
|
+
"message": "Back/forward cache is disabled because cookies are disabled on a page that uses `Cache-Control: no-store`."
|
|
1861
|
+
},
|
|
1820
1862
|
"core/lib/bf-cache-strings.js | dedicatedWorkerOrWorklet": {
|
|
1821
1863
|
"message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
|
|
1822
1864
|
},
|
|
@@ -1892,14 +1934,17 @@
|
|
|
1892
1934
|
"core/lib/bf-cache-strings.js | indexedDBConnection": {
|
|
1893
1935
|
"message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
|
|
1894
1936
|
},
|
|
1937
|
+
"core/lib/bf-cache-strings.js | indexedDBEvent": {
|
|
1938
|
+
"message": "Back/forward cache is disabled due to an IndexedDB event."
|
|
1939
|
+
},
|
|
1895
1940
|
"core/lib/bf-cache-strings.js | ineligibleAPI": {
|
|
1896
1941
|
"message": "Ineligible APIs were used."
|
|
1897
1942
|
},
|
|
1898
1943
|
"core/lib/bf-cache-strings.js | injectedJavascript": {
|
|
1899
|
-
"message": "Pages that
|
|
1944
|
+
"message": "Pages that `JavaScript` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1900
1945
|
},
|
|
1901
1946
|
"core/lib/bf-cache-strings.js | injectedStyleSheet": {
|
|
1902
|
-
"message": "Pages that
|
|
1947
|
+
"message": "Pages that a `StyleSheet` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1903
1948
|
},
|
|
1904
1949
|
"core/lib/bf-cache-strings.js | internalError": {
|
|
1905
1950
|
"message": "Internal error."
|
|
@@ -2138,6 +2183,192 @@
|
|
|
2138
2183
|
"core/lib/csp-evaluator.js | unsafeInlineFallback": {
|
|
2139
2184
|
"message": "Consider adding 'unsafe-inline' (ignored by browsers supporting nonces/hashes) to be backward compatible with older browsers."
|
|
2140
2185
|
},
|
|
2186
|
+
"core/lib/deprecation-description.js | feature": {
|
|
2187
|
+
"message": "Check the feature status page for more details."
|
|
2188
|
+
},
|
|
2189
|
+
"core/lib/deprecation-description.js | milestone": {
|
|
2190
|
+
"message": "This change will go into effect with milestone {milestone}."
|
|
2191
|
+
},
|
|
2192
|
+
"core/lib/deprecation-description.js | title": {
|
|
2193
|
+
"message": "Deprecated Feature Used"
|
|
2194
|
+
},
|
|
2195
|
+
"core/lib/deprecations-strings.js | AuthorizationCoveredByWildcard": {
|
|
2196
|
+
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
|
|
2197
|
+
},
|
|
2198
|
+
"core/lib/deprecations-strings.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2199
|
+
"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."
|
|
2200
|
+
},
|
|
2201
|
+
"core/lib/deprecations-strings.js | CanRequestURLHTTPContainingNewline": {
|
|
2202
|
+
"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."
|
|
2203
|
+
},
|
|
2204
|
+
"core/lib/deprecations-strings.js | ChromeLoadTimesConnectionInfo": {
|
|
2205
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
|
|
2206
|
+
},
|
|
2207
|
+
"core/lib/deprecations-strings.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2208
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
|
|
2209
|
+
},
|
|
2210
|
+
"core/lib/deprecations-strings.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2211
|
+
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
|
|
2212
|
+
},
|
|
2213
|
+
"core/lib/deprecations-strings.js | CookieWithTruncatingChar": {
|
|
2214
|
+
"message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
|
|
2215
|
+
},
|
|
2216
|
+
"core/lib/deprecations-strings.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2217
|
+
"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`."
|
|
2218
|
+
},
|
|
2219
|
+
"core/lib/deprecations-strings.js | CrossOriginWindowAlert": {
|
|
2220
|
+
"message": "Triggering window.alert from cross origin iframes has been deprecated and will be removed in the future."
|
|
2221
|
+
},
|
|
2222
|
+
"core/lib/deprecations-strings.js | CrossOriginWindowConfirm": {
|
|
2223
|
+
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
|
|
2224
|
+
},
|
|
2225
|
+
"core/lib/deprecations-strings.js | DOMMutationEvents": {
|
|
2226
|
+
"message": "DOM Mutation Events, including `DOMSubtreeModified`, `DOMNodeInserted`, `DOMNodeRemoved`, `DOMNodeRemovedFromDocument`, `DOMNodeInsertedIntoDocument`, and `DOMCharacterDataModified` are deprecated (https://w3c.github.io/uievents/#legacy-event-types) and will be removed. Please use `MutationObserver` instead."
|
|
2227
|
+
},
|
|
2228
|
+
"core/lib/deprecations-strings.js | DataUrlInSvgUse": {
|
|
2229
|
+
"message": "Support for data: URLs in SVG <use> element is deprecated and it will be removed in the future."
|
|
2230
|
+
},
|
|
2231
|
+
"core/lib/deprecations-strings.js | DocumentDomainSettingWithoutOriginAgentClusterHeader": {
|
|
2232
|
+
"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."
|
|
2233
|
+
},
|
|
2234
|
+
"core/lib/deprecations-strings.js | ExpectCTHeader": {
|
|
2235
|
+
"message": "The `Expect-CT` header is deprecated and will be removed. Chrome requires Certificate Transparency for all publicly trusted certificates issued after April 30, 2018."
|
|
2236
|
+
},
|
|
2237
|
+
"core/lib/deprecations-strings.js | GeolocationInsecureOrigin": {
|
|
2238
|
+
"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."
|
|
2239
|
+
},
|
|
2240
|
+
"core/lib/deprecations-strings.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2241
|
+
"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."
|
|
2242
|
+
},
|
|
2243
|
+
"core/lib/deprecations-strings.js | GetUserMediaInsecureOrigin": {
|
|
2244
|
+
"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."
|
|
2245
|
+
},
|
|
2246
|
+
"core/lib/deprecations-strings.js | HostCandidateAttributeGetter": {
|
|
2247
|
+
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
|
|
2248
|
+
},
|
|
2249
|
+
"core/lib/deprecations-strings.js | IdentityInCanMakePaymentEvent": {
|
|
2250
|
+
"message": "The merchant origin and arbitrary data from the `canmakepayment` service worker event are deprecated and will be removed: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
|
|
2251
|
+
},
|
|
2252
|
+
"core/lib/deprecations-strings.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2253
|
+
"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."
|
|
2254
|
+
},
|
|
2255
|
+
"core/lib/deprecations-strings.js | InterestGroupDailyUpdateUrl": {
|
|
2256
|
+
"message": "The `dailyUpdateUrl` field of `InterestGroups` passed to `joinAdInterestGroup()` has been renamed to `updateUrl`, to more accurately reflect its behavior."
|
|
2257
|
+
},
|
|
2258
|
+
"core/lib/deprecations-strings.js | LocalCSSFileExtensionRejected": {
|
|
2259
|
+
"message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
|
|
2260
|
+
},
|
|
2261
|
+
"core/lib/deprecations-strings.js | MediaSourceAbortRemove": {
|
|
2262
|
+
"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 listen to the `updateend` event instead. `abort()` is intended to only abort an asynchronous media append or reset parser state."
|
|
2263
|
+
},
|
|
2264
|
+
"core/lib/deprecations-strings.js | MediaSourceDurationTruncatingBuffered": {
|
|
2265
|
+
"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`."
|
|
2266
|
+
},
|
|
2267
|
+
"core/lib/deprecations-strings.js | NoSysexWebMIDIWithoutPermission": {
|
|
2268
|
+
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
|
|
2269
|
+
},
|
|
2270
|
+
"core/lib/deprecations-strings.js | NonStandardDeclarativeShadowDOM": {
|
|
2271
|
+
"message": "The older, non-standardized `shadowroot` attribute is deprecated, and will *no longer function* in M119. Please use the new, standardized `shadowrootmode` attribute instead."
|
|
2272
|
+
},
|
|
2273
|
+
"core/lib/deprecations-strings.js | NotificationInsecureOrigin": {
|
|
2274
|
+
"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."
|
|
2275
|
+
},
|
|
2276
|
+
"core/lib/deprecations-strings.js | NotificationPermissionRequestedIframe": {
|
|
2277
|
+
"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."
|
|
2278
|
+
},
|
|
2279
|
+
"core/lib/deprecations-strings.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2280
|
+
"message": "Option `imageOrientation: 'none'` in createImageBitmap is deprecated. Please use createImageBitmap with option \\{imageOrientation: 'from-image'\\} instead."
|
|
2281
|
+
},
|
|
2282
|
+
"core/lib/deprecations-strings.js | ObsoleteWebRtcCipherSuite": {
|
|
2283
|
+
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
|
2284
|
+
},
|
|
2285
|
+
"core/lib/deprecations-strings.js | OverflowVisibleOnReplacedElement": {
|
|
2286
|
+
"message": "Specifying `overflow: visible` on img, video and canvas tags may cause them to produce visual content outside of the element bounds. See https://github.com/WICG/shared-element-transitions/blob/main/debugging_overflow_on_images.md."
|
|
2287
|
+
},
|
|
2288
|
+
"core/lib/deprecations-strings.js | PaymentInstruments": {
|
|
2289
|
+
"message": "`paymentManager.instruments` is deprecated. Please use just-in-time install for payment handlers instead."
|
|
2290
|
+
},
|
|
2291
|
+
"core/lib/deprecations-strings.js | PaymentRequestCSPViolation": {
|
|
2292
|
+
"message": "Your `PaymentRequest` call bypassed Content-Security-Policy (CSP) `connect-src` directive. This bypass is deprecated. Please add the payment method identifier from the `PaymentRequest` API (in `supportedMethods` field) to your CSP `connect-src` directive."
|
|
2293
|
+
},
|
|
2294
|
+
"core/lib/deprecations-strings.js | PersistentQuotaType": {
|
|
2295
|
+
"message": "`StorageType.persistent` is deprecated. Please use standardized `navigator.storage` instead."
|
|
2296
|
+
},
|
|
2297
|
+
"core/lib/deprecations-strings.js | PictureSourceSrc": {
|
|
2298
|
+
"message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
|
|
2299
|
+
},
|
|
2300
|
+
"core/lib/deprecations-strings.js | PrefixedCancelAnimationFrame": {
|
|
2301
|
+
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
|
2302
|
+
},
|
|
2303
|
+
"core/lib/deprecations-strings.js | PrefixedRequestAnimationFrame": {
|
|
2304
|
+
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
|
2305
|
+
},
|
|
2306
|
+
"core/lib/deprecations-strings.js | PrefixedVideoDisplayingFullscreen": {
|
|
2307
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
|
2308
|
+
},
|
|
2309
|
+
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullScreen": {
|
|
2310
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2311
|
+
},
|
|
2312
|
+
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullscreen": {
|
|
2313
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2314
|
+
},
|
|
2315
|
+
"core/lib/deprecations-strings.js | PrefixedVideoExitFullScreen": {
|
|
2316
|
+
"message": "HTMLVideoElement.webkitExitFullScreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2317
|
+
},
|
|
2318
|
+
"core/lib/deprecations-strings.js | PrefixedVideoExitFullscreen": {
|
|
2319
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2320
|
+
},
|
|
2321
|
+
"core/lib/deprecations-strings.js | PrefixedVideoSupportsFullscreen": {
|
|
2322
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
|
2323
|
+
},
|
|
2324
|
+
"core/lib/deprecations-strings.js | PrivacySandboxExtensionsAPI": {
|
|
2325
|
+
"message": "We're deprecating the API `chrome.privacy.websites.privacySandboxEnabled`, though it will remain active for backward compatibility until release M113. Instead, please use `chrome.privacy.websites.topicsEnabled`, `chrome.privacy.websites.fledgeEnabled` and `chrome.privacy.websites.adMeasurementEnabled`. See https://developer.chrome.com/docs/extensions/reference/privacy/#property-websites-privacySandboxEnabled."
|
|
2326
|
+
},
|
|
2327
|
+
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2328
|
+
"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."
|
|
2329
|
+
},
|
|
2330
|
+
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2331
|
+
"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."
|
|
2332
|
+
},
|
|
2333
|
+
"core/lib/deprecations-strings.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2334
|
+
"message": "The callback-based getStats() is deprecated and will be removed. Use the spec-compliant getStats() instead."
|
|
2335
|
+
},
|
|
2336
|
+
"core/lib/deprecations-strings.js | RangeExpand": {
|
|
2337
|
+
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
|
2338
|
+
},
|
|
2339
|
+
"core/lib/deprecations-strings.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2340
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
|
|
2341
|
+
},
|
|
2342
|
+
"core/lib/deprecations-strings.js | RtcpMuxPolicyNegotiate": {
|
|
2343
|
+
"message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
|
|
2344
|
+
},
|
|
2345
|
+
"core/lib/deprecations-strings.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2346
|
+
"message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
2347
|
+
},
|
|
2348
|
+
"core/lib/deprecations-strings.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2349
|
+
"message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
|
|
2350
|
+
},
|
|
2351
|
+
"core/lib/deprecations-strings.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2352
|
+
"message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2353
|
+
},
|
|
2354
|
+
"core/lib/deprecations-strings.js | WebSQL": {
|
|
2355
|
+
"message": "Web SQL is deprecated. Please use SQLite WebAssembly or Indexed Database"
|
|
2356
|
+
},
|
|
2357
|
+
"core/lib/deprecations-strings.js | WindowPlacementPermissionDescriptorUsed": {
|
|
2358
|
+
"message": "The permission descriptor `window-placement` is deprecated. Use `window-management` instead. For more help, check https://bit.ly/window-placement-rename."
|
|
2359
|
+
},
|
|
2360
|
+
"core/lib/deprecations-strings.js | WindowPlacementPermissionPolicyParsed": {
|
|
2361
|
+
"message": "The permission policy `window-placement` is deprecated. Use `window-management` instead. For more help, check https://bit.ly/window-placement-rename."
|
|
2362
|
+
},
|
|
2363
|
+
"core/lib/deprecations-strings.js | XHRJSONEncodingDetection": {
|
|
2364
|
+
"message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
|
|
2365
|
+
},
|
|
2366
|
+
"core/lib/deprecations-strings.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2367
|
+
"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/."
|
|
2368
|
+
},
|
|
2369
|
+
"core/lib/deprecations-strings.js | XRSupportsSession": {
|
|
2370
|
+
"message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
|
|
2371
|
+
},
|
|
2141
2372
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2142
2373
|
"message": "Main-Thread Blocking Time"
|
|
2143
2374
|
},
|