lighthouse 12.4.0 → 12.5.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/core/audits/audit.js +3 -1
- package/core/audits/bootup-time.js +1 -1
- package/core/audits/byte-efficiency/duplicated-javascript.js +1 -1
- package/core/audits/byte-efficiency/efficient-animated-content.js +1 -1
- package/core/audits/byte-efficiency/legacy-javascript.d.ts +0 -65
- package/core/audits/byte-efficiency/legacy-javascript.js +11 -363
- package/core/audits/byte-efficiency/modern-image-formats.js +1 -1
- package/core/audits/byte-efficiency/offscreen-images.js +4 -3
- package/core/audits/byte-efficiency/render-blocking-resources.js +6 -3
- package/core/audits/byte-efficiency/unminified-css.js +2 -1
- package/core/audits/byte-efficiency/unminified-javascript.js +2 -1
- package/core/audits/byte-efficiency/unused-css-rules.js +1 -1
- package/core/audits/byte-efficiency/unused-javascript.js +2 -2
- package/core/audits/byte-efficiency/uses-long-cache-ttl.js +1 -1
- package/core/audits/byte-efficiency/uses-optimized-images.js +1 -1
- package/core/audits/byte-efficiency/uses-responsive-images.js +1 -1
- package/core/audits/byte-efficiency/uses-text-compression.js +2 -1
- package/core/audits/critical-request-chains.js +5 -3
- package/core/audits/dobetterweb/dom-size.js +1 -1
- package/core/audits/dobetterweb/uses-http2.js +1 -1
- package/core/audits/insights/cls-culprits-insight.js +1 -1
- package/core/audits/insights/document-latency-insight.js +1 -1
- package/core/audits/insights/dom-size-insight.js +1 -1
- package/core/audits/insights/{long-critical-network-tree-insight.d.ts → duplicated-javascript-insight.d.ts} +3 -3
- package/core/audits/insights/duplicated-javascript-insight.js +54 -0
- package/core/audits/insights/font-display-insight.js +8 -7
- package/core/audits/insights/forced-reflow-insight.d.ts +10 -0
- package/core/audits/insights/forced-reflow-insight.js +64 -12
- package/core/audits/insights/image-delivery-insight.js +9 -10
- package/core/audits/insights/insight-audit.js +9 -4
- package/core/audits/insights/interaction-to-next-paint-insight.js +1 -1
- package/core/audits/insights/lcp-discovery-insight.js +1 -1
- package/core/audits/insights/lcp-phases-insight.js +1 -1
- package/core/audits/insights/network-dependency-tree-insight.d.ts +11 -0
- package/core/audits/insights/{long-critical-network-tree-insight.js → network-dependency-tree-insight.js} +7 -7
- package/core/audits/insights/render-blocking-insight.js +1 -1
- package/core/audits/insights/slow-css-selector-insight.js +1 -1
- package/core/audits/insights/third-parties-insight.js +1 -1
- package/core/audits/insights/use-cache-insight.d.ts +11 -0
- package/core/audits/insights/use-cache-insight.js +61 -0
- package/core/audits/insights/viewport-insight.js +1 -1
- package/core/audits/largest-contentful-paint-element.js +7 -3
- package/core/audits/layout-shifts.js +5 -2
- package/core/audits/lcp-lazy-loaded.js +1 -1
- package/core/audits/long-tasks.js +6 -4
- package/core/audits/mainthread-work-breakdown.js +1 -1
- package/core/audits/metrics/first-contentful-paint.js +4 -2
- package/core/audits/metrics/interactive.js +6 -3
- package/core/audits/metrics/largest-contentful-paint.js +7 -3
- package/core/audits/metrics/max-potential-fid.js +6 -3
- package/core/audits/metrics/speed-index.js +6 -3
- package/core/audits/metrics/total-blocking-time.js +6 -3
- package/core/audits/metrics.js +4 -3
- package/core/audits/predictive-perf.js +4 -3
- package/core/audits/prioritize-lcp-image.js +5 -3
- package/core/audits/redirects.js +4 -2
- package/core/audits/script-treemap-data.js +8 -4
- package/core/audits/third-party-facades.js +1 -1
- package/core/audits/third-party-summary.js +1 -1
- package/core/audits/uses-rel-preconnect.js +7 -5
- package/core/audits/uses-rel-preload.js +5 -3
- package/core/computed/computed-artifact.d.ts +5 -1
- package/core/computed/computed-artifact.js +23 -2
- package/core/computed/critical-request-chains.d.ts +5 -1
- package/core/computed/critical-request-chains.js +4 -4
- package/core/computed/js-bundles.d.ts +1 -1
- package/core/computed/metrics/first-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/first-contentful-paint.js +1 -1
- package/core/computed/metrics/interactive.js +1 -1
- package/core/computed/metrics/lantern-first-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-interactive.js +1 -1
- package/core/computed/metrics/lantern-largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lantern-max-potential-fid.js +1 -1
- package/core/computed/metrics/lantern-metric.js +1 -1
- package/core/computed/metrics/lantern-speed-index.js +1 -1
- package/core/computed/metrics/lantern-total-blocking-time.js +1 -1
- package/core/computed/metrics/largest-contentful-paint-all-frames.js +1 -1
- package/core/computed/metrics/largest-contentful-paint.js +1 -1
- package/core/computed/metrics/lcp-breakdown.js +1 -1
- package/core/computed/metrics/max-potential-fid.js +1 -1
- package/core/computed/metrics/metric.js +2 -0
- package/core/computed/metrics/speed-index.js +1 -1
- package/core/computed/metrics/time-to-first-byte.js +1 -1
- package/core/computed/metrics/timing-summary.d.ts +5 -2
- package/core/computed/metrics/timing-summary.js +8 -4
- package/core/computed/metrics/total-blocking-time.js +1 -1
- package/core/computed/module-duplication.d.ts +1 -1
- package/core/computed/navigation-insights.d.ts +11 -3
- package/core/computed/navigation-insights.js +7 -4
- package/core/computed/page-dependency-graph.d.ts +7 -3
- package/core/computed/page-dependency-graph.js +6 -5
- package/core/computed/tbt-impact-tasks.js +1 -1
- package/core/computed/trace-engine-result.d.ts +36 -2
- package/core/computed/trace-engine-result.js +119 -25
- package/core/computed/unused-javascript-summary.d.ts +2 -2
- package/core/computed/unused-javascript-summary.js +1 -1
- package/core/config/default-config.js +19 -15
- package/core/config/experimental-config.js +19 -0
- package/core/gather/gatherers/source-maps.d.ts +1 -0
- package/core/gather/gatherers/source-maps.js +3 -0
- package/core/gather/gatherers/trace-elements.d.ts +4 -4
- package/core/gather/gatherers/trace-elements.js +8 -4
- package/core/gather/gatherers/trace.js +5 -0
- package/core/lib/bf-cache-strings.d.ts +0 -122
- package/core/lib/bf-cache-strings.js +1 -2
- package/core/lib/deprecation-description.js +2 -1
- package/core/lib/legacy-javascript/legacy-javascript.d.ts +29 -0
- package/core/lib/legacy-javascript/legacy-javascript.js +351 -0
- package/core/lib/legacy-javascript/polyfill-graph-data.json +93 -0
- package/core/lib/legacy-javascript/polyfill-module-data.json +623 -0
- package/core/lib/trace-engine.d.ts +6 -1
- package/core/lib/trace-engine.js +1 -2
- package/package.json +10 -8
- package/shared/localization/locales/ar-XB.json +783 -513
- package/shared/localization/locales/ar.json +783 -513
- package/shared/localization/locales/bg.json +933 -663
- package/shared/localization/locales/ca.json +925 -655
- package/shared/localization/locales/cs.json +926 -656
- package/shared/localization/locales/da.json +926 -656
- package/shared/localization/locales/de.json +803 -533
- package/shared/localization/locales/el.json +928 -658
- package/shared/localization/locales/en-GB.json +929 -659
- package/shared/localization/locales/en-US.json +593 -551
- package/shared/localization/locales/en-XA.json +28 -508
- package/shared/localization/locales/en-XL.json +593 -551
- package/shared/localization/locales/es-419.json +928 -658
- package/shared/localization/locales/es.json +787 -517
- package/shared/localization/locales/fi.json +925 -655
- package/shared/localization/locales/fil.json +929 -659
- package/shared/localization/locales/fr.json +927 -657
- package/shared/localization/locales/he.json +795 -528
- package/shared/localization/locales/hi.json +798 -528
- package/shared/localization/locales/hr.json +929 -659
- package/shared/localization/locales/hu.json +926 -656
- package/shared/localization/locales/id.json +926 -656
- package/shared/localization/locales/it.json +930 -660
- package/shared/localization/locales/ja.json +927 -657
- package/shared/localization/locales/ko.json +936 -666
- package/shared/localization/locales/lt.json +933 -663
- package/shared/localization/locales/lv.json +809 -539
- package/shared/localization/locales/nl.json +925 -655
- package/shared/localization/locales/no.json +928 -658
- package/shared/localization/locales/pl.json +927 -657
- package/shared/localization/locales/pt-PT.json +841 -571
- package/shared/localization/locales/pt.json +841 -571
- package/shared/localization/locales/ro.json +925 -655
- package/shared/localization/locales/ru.json +935 -668
- package/shared/localization/locales/sk.json +925 -655
- package/shared/localization/locales/sl.json +927 -657
- package/shared/localization/locales/sr-Latn.json +925 -655
- package/shared/localization/locales/sr.json +925 -655
- package/shared/localization/locales/sv.json +936 -666
- package/shared/localization/locales/ta.json +935 -668
- package/shared/localization/locales/te.json +785 -515
- package/shared/localization/locales/th.json +813 -543
- package/shared/localization/locales/tr.json +927 -657
- package/shared/localization/locales/uk.json +795 -525
- package/shared/localization/locales/vi.json +929 -659
- package/shared/localization/locales/zh-HK.json +926 -656
- package/shared/localization/locales/zh-TW.json +784 -514
- package/shared/localization/locales/zh.json +926 -656
- package/tsconfig.json +2 -1
- package/types/artifacts.d.ts +2 -1
- package/core/audits/byte-efficiency/polyfill-graph-data.json +0 -53
|
@@ -660,7 +660,7 @@
|
|
|
660
660
|
"message": "Use video formats for animated content"
|
|
661
661
|
},
|
|
662
662
|
"core/audits/byte-efficiency/legacy-javascript.js | description": {
|
|
663
|
-
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers.
|
|
663
|
+
"message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile [Baseline](https://web.dev/baseline) features, unless you know you must support legacy browsers. [Learn why most sites can deploy ES6+ code without transpiling](https://philipwalton.com/articles/the-state-of-es5-on-the-web/)"
|
|
664
664
|
},
|
|
665
665
|
"core/audits/byte-efficiency/legacy-javascript.js | detectedCoreJs2Warning": {
|
|
666
666
|
"message": "Version 2 of core-js was detected on the page. You should upgrade to version 3 for many performance improvements."
|
|
@@ -1742,366 +1742,6 @@
|
|
|
1742
1742
|
"core/gather/timespan-runner.js | warningNavigationDetected": {
|
|
1743
1743
|
"message": "A page navigation was detected during the run. Using timespan mode to audit page navigations is not recommended. Use navigation mode to audit page navigations for better third-party attribution and main thread detection."
|
|
1744
1744
|
},
|
|
1745
|
-
"core/lib/bf-cache-strings.js | HTTPMethodNotGET": {
|
|
1746
|
-
"message": "Only pages loaded via a GET request are eligible for back/forward cache."
|
|
1747
|
-
},
|
|
1748
|
-
"core/lib/bf-cache-strings.js | HTTPStatusNotOK": {
|
|
1749
|
-
"message": "Only pages with a status code of 2XX can be cached."
|
|
1750
|
-
},
|
|
1751
|
-
"core/lib/bf-cache-strings.js | JavaScriptExecution": {
|
|
1752
|
-
"message": "Chrome detected an attempt to execute JavaScript while in the cache."
|
|
1753
|
-
},
|
|
1754
|
-
"core/lib/bf-cache-strings.js | appBanner": {
|
|
1755
|
-
"message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
|
|
1756
|
-
},
|
|
1757
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabled": {
|
|
1758
|
-
"message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
|
|
1759
|
-
},
|
|
1760
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByCommandLine": {
|
|
1761
|
-
"message": "Back/forward cache is disabled by the command line."
|
|
1762
|
-
},
|
|
1763
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledByLowMemory": {
|
|
1764
|
-
"message": "Back/forward cache is disabled due to insufficient memory."
|
|
1765
|
-
},
|
|
1766
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForDelegate": {
|
|
1767
|
-
"message": "Back/forward cache is not supported by delegate."
|
|
1768
|
-
},
|
|
1769
|
-
"core/lib/bf-cache-strings.js | backForwardCacheDisabledForPrerender": {
|
|
1770
|
-
"message": "Back/forward cache is disabled for prerenderer."
|
|
1771
|
-
},
|
|
1772
|
-
"core/lib/bf-cache-strings.js | broadcastChannel": {
|
|
1773
|
-
"message": "The page cannot be cached because it has a BroadcastChannel instance with registered listeners."
|
|
1774
|
-
},
|
|
1775
|
-
"core/lib/bf-cache-strings.js | cacheControlNoStore": {
|
|
1776
|
-
"message": "Pages with cache-control:no-store header cannot enter back/forward cache."
|
|
1777
|
-
},
|
|
1778
|
-
"core/lib/bf-cache-strings.js | cacheFlushed": {
|
|
1779
|
-
"message": "The cache was intentionally cleared."
|
|
1780
|
-
},
|
|
1781
|
-
"core/lib/bf-cache-strings.js | cacheLimit": {
|
|
1782
|
-
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
1783
|
-
},
|
|
1784
|
-
"core/lib/bf-cache-strings.js | containsPlugins": {
|
|
1785
|
-
"message": "Pages containing plugins are not currently eligible for back/forward cache."
|
|
1786
|
-
},
|
|
1787
|
-
"core/lib/bf-cache-strings.js | contentDiscarded": {
|
|
1788
|
-
"message": "Undefined"
|
|
1789
|
-
},
|
|
1790
|
-
"core/lib/bf-cache-strings.js | contentFileChooser": {
|
|
1791
|
-
"message": "Pages that use FileChooser API are not eligible for back/forward cache."
|
|
1792
|
-
},
|
|
1793
|
-
"core/lib/bf-cache-strings.js | contentFileSystemAccess": {
|
|
1794
|
-
"message": "Pages that use File System Access API are not eligible for back/forward cache."
|
|
1795
|
-
},
|
|
1796
|
-
"core/lib/bf-cache-strings.js | contentMediaDevicesDispatcherHost": {
|
|
1797
|
-
"message": "Pages that use Media Device Dispatcher are not eligible for back/forward cache."
|
|
1798
|
-
},
|
|
1799
|
-
"core/lib/bf-cache-strings.js | contentMediaPlay": {
|
|
1800
|
-
"message": "A media player was playing upon navigating away."
|
|
1801
|
-
},
|
|
1802
|
-
"core/lib/bf-cache-strings.js | contentMediaSession": {
|
|
1803
|
-
"message": "Pages that use MediaSession API and set a playback state are not eligible for back/forward cache."
|
|
1804
|
-
},
|
|
1805
|
-
"core/lib/bf-cache-strings.js | contentMediaSessionService": {
|
|
1806
|
-
"message": "Pages that use MediaSession API and set action handlers are not eligible for back/forward cache."
|
|
1807
|
-
},
|
|
1808
|
-
"core/lib/bf-cache-strings.js | contentScreenReader": {
|
|
1809
|
-
"message": "Back/forward cache is disabled due to screen reader."
|
|
1810
|
-
},
|
|
1811
|
-
"core/lib/bf-cache-strings.js | contentSecurityHandler": {
|
|
1812
|
-
"message": "Pages that use SecurityHandler are not eligible for back/forward cache."
|
|
1813
|
-
},
|
|
1814
|
-
"core/lib/bf-cache-strings.js | contentSerial": {
|
|
1815
|
-
"message": "Pages that use Serial API are not eligible for back/forward cache."
|
|
1816
|
-
},
|
|
1817
|
-
"core/lib/bf-cache-strings.js | contentWebAuthenticationAPI": {
|
|
1818
|
-
"message": "Pages that use WebAuthetication API are not eligible for back/forward cache."
|
|
1819
|
-
},
|
|
1820
|
-
"core/lib/bf-cache-strings.js | contentWebBluetooth": {
|
|
1821
|
-
"message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
|
|
1822
|
-
},
|
|
1823
|
-
"core/lib/bf-cache-strings.js | contentWebUSB": {
|
|
1824
|
-
"message": "Pages that use WebUSB API are not eligible for back/forward cache."
|
|
1825
|
-
},
|
|
1826
|
-
"core/lib/bf-cache-strings.js | cookieDisabled": {
|
|
1827
|
-
"message": "Back/forward cache is disabled because cookies are disabled on a page that uses `Cache-Control: no-store`."
|
|
1828
|
-
},
|
|
1829
|
-
"core/lib/bf-cache-strings.js | dedicatedWorkerOrWorklet": {
|
|
1830
|
-
"message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
|
|
1831
|
-
},
|
|
1832
|
-
"core/lib/bf-cache-strings.js | documentLoaded": {
|
|
1833
|
-
"message": "The document did not finish loading before navigating away."
|
|
1834
|
-
},
|
|
1835
|
-
"core/lib/bf-cache-strings.js | embedderAppBannerManager": {
|
|
1836
|
-
"message": "App Banner was present upon navigating away."
|
|
1837
|
-
},
|
|
1838
|
-
"core/lib/bf-cache-strings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
1839
|
-
"message": "Chrome Password Manager was present upon navigating away."
|
|
1840
|
-
},
|
|
1841
|
-
"core/lib/bf-cache-strings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
1842
|
-
"message": "DOM distillation was in progress upon navigating away."
|
|
1843
|
-
},
|
|
1844
|
-
"core/lib/bf-cache-strings.js | embedderDomDistillerViewerSource": {
|
|
1845
|
-
"message": "DOM Distiller Viewer was present upon navigating away."
|
|
1846
|
-
},
|
|
1847
|
-
"core/lib/bf-cache-strings.js | embedderExtensionMessaging": {
|
|
1848
|
-
"message": "Back/forward cache is disabled due to extensions using messaging API."
|
|
1849
|
-
},
|
|
1850
|
-
"core/lib/bf-cache-strings.js | embedderExtensionMessagingForOpenPort": {
|
|
1851
|
-
"message": "Extensions with long-lived connection should close the connection before entering back/forward cache."
|
|
1852
|
-
},
|
|
1853
|
-
"core/lib/bf-cache-strings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
1854
|
-
"message": "Extensions with long-lived connection attempted to send messages to frames in back/forward cache."
|
|
1855
|
-
},
|
|
1856
|
-
"core/lib/bf-cache-strings.js | embedderExtensions": {
|
|
1857
|
-
"message": "Back/forward cache is disabled due to extensions."
|
|
1858
|
-
},
|
|
1859
|
-
"core/lib/bf-cache-strings.js | embedderModalDialog": {
|
|
1860
|
-
"message": "Modal dialog such as form resubmission or http password dialog was shown for the page upon navigating away."
|
|
1861
|
-
},
|
|
1862
|
-
"core/lib/bf-cache-strings.js | embedderOfflinePage": {
|
|
1863
|
-
"message": "The offline page was shown upon navigating away."
|
|
1864
|
-
},
|
|
1865
|
-
"core/lib/bf-cache-strings.js | embedderOomInterventionTabHelper": {
|
|
1866
|
-
"message": "Out-Of-Memory Intervention bar was present upon navigating away."
|
|
1867
|
-
},
|
|
1868
|
-
"core/lib/bf-cache-strings.js | embedderPermissionRequestManager": {
|
|
1869
|
-
"message": "There were permission requests upon navigating away."
|
|
1870
|
-
},
|
|
1871
|
-
"core/lib/bf-cache-strings.js | embedderPopupBlockerTabHelper": {
|
|
1872
|
-
"message": "Popup blocker was present upon navigating away."
|
|
1873
|
-
},
|
|
1874
|
-
"core/lib/bf-cache-strings.js | embedderSafeBrowsingThreatDetails": {
|
|
1875
|
-
"message": "Safe Browsing details were shown upon navigating away."
|
|
1876
|
-
},
|
|
1877
|
-
"core/lib/bf-cache-strings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
1878
|
-
"message": "Safe Browsing considered this page to be abusive and blocked popup."
|
|
1879
|
-
},
|
|
1880
|
-
"core/lib/bf-cache-strings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
1881
|
-
"message": "A service worker was activated while the page was in back/forward cache."
|
|
1882
|
-
},
|
|
1883
|
-
"core/lib/bf-cache-strings.js | errorDocument": {
|
|
1884
|
-
"message": "Back/forward cache is disabled due to a document error."
|
|
1885
|
-
},
|
|
1886
|
-
"core/lib/bf-cache-strings.js | fencedFramesEmbedder": {
|
|
1887
|
-
"message": "Pages using FencedFrames cannot be stored in bfcache."
|
|
1888
|
-
},
|
|
1889
|
-
"core/lib/bf-cache-strings.js | foregroundCacheLimit": {
|
|
1890
|
-
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
1891
|
-
},
|
|
1892
|
-
"core/lib/bf-cache-strings.js | grantedMediaStreamAccess": {
|
|
1893
|
-
"message": "Pages that have granted media stream access are not currently eligible for back/forward cache."
|
|
1894
|
-
},
|
|
1895
|
-
"core/lib/bf-cache-strings.js | haveInnerContents": {
|
|
1896
|
-
"message": "Pages that have certain kinds of embedded content (e.g. PDFs) are not currently eligible for back/forward cache."
|
|
1897
|
-
},
|
|
1898
|
-
"core/lib/bf-cache-strings.js | idleManager": {
|
|
1899
|
-
"message": "Pages that use IdleManager are not currently eligible for back/forward cache."
|
|
1900
|
-
},
|
|
1901
|
-
"core/lib/bf-cache-strings.js | indexedDBConnection": {
|
|
1902
|
-
"message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
|
|
1903
|
-
},
|
|
1904
|
-
"core/lib/bf-cache-strings.js | indexedDBEvent": {
|
|
1905
|
-
"message": "Back/forward cache is disabled due to an IndexedDB event."
|
|
1906
|
-
},
|
|
1907
|
-
"core/lib/bf-cache-strings.js | ineligibleAPI": {
|
|
1908
|
-
"message": "Ineligible APIs were used."
|
|
1909
|
-
},
|
|
1910
|
-
"core/lib/bf-cache-strings.js | injectedJavascript": {
|
|
1911
|
-
"message": "Pages that `JavaScript` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1912
|
-
},
|
|
1913
|
-
"core/lib/bf-cache-strings.js | injectedStyleSheet": {
|
|
1914
|
-
"message": "Pages that a `StyleSheet` is injected into by extensions are not currently eligible for back/forward cache."
|
|
1915
|
-
},
|
|
1916
|
-
"core/lib/bf-cache-strings.js | internalError": {
|
|
1917
|
-
"message": "Internal error."
|
|
1918
|
-
},
|
|
1919
|
-
"core/lib/bf-cache-strings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
|
|
1920
|
-
"message": "Back/forward cache is disabled because some JavaScript network request received resource with `Cache-Control: no-store` header."
|
|
1921
|
-
},
|
|
1922
|
-
"core/lib/bf-cache-strings.js | keepaliveRequest": {
|
|
1923
|
-
"message": "Back/forward cache is disabled due to a keepalive request."
|
|
1924
|
-
},
|
|
1925
|
-
"core/lib/bf-cache-strings.js | keyboardLock": {
|
|
1926
|
-
"message": "Pages that use Keyboard lock are not currently eligible for back/forward cache."
|
|
1927
|
-
},
|
|
1928
|
-
"core/lib/bf-cache-strings.js | loading": {
|
|
1929
|
-
"message": "The page did not finish loading before navigating away."
|
|
1930
|
-
},
|
|
1931
|
-
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoCache": {
|
|
1932
|
-
"message": "Pages whose main resource has cache-control:no-cache cannot enter back/forward cache."
|
|
1933
|
-
},
|
|
1934
|
-
"core/lib/bf-cache-strings.js | mainResourceHasCacheControlNoStore": {
|
|
1935
|
-
"message": "Pages whose main resource has cache-control:no-store cannot enter back/forward cache."
|
|
1936
|
-
},
|
|
1937
|
-
"core/lib/bf-cache-strings.js | navigationCancelledWhileRestoring": {
|
|
1938
|
-
"message": "Navigation was cancelled before the page could be restored from back/forward cache."
|
|
1939
|
-
},
|
|
1940
|
-
"core/lib/bf-cache-strings.js | networkExceedsBufferLimit": {
|
|
1941
|
-
"message": "The page was evicted from the cache because an active network connection received too much data. Chrome limits the amount of data that a page may receive while cached."
|
|
1942
|
-
},
|
|
1943
|
-
"core/lib/bf-cache-strings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
1944
|
-
"message": "Pages that have inflight fetch() or XHR are not currently eligible for back/forward cache."
|
|
1945
|
-
},
|
|
1946
|
-
"core/lib/bf-cache-strings.js | networkRequestRedirected": {
|
|
1947
|
-
"message": "The page was evicted from back/forward cache because an active network request involved a redirect."
|
|
1948
|
-
},
|
|
1949
|
-
"core/lib/bf-cache-strings.js | networkRequestTimeout": {
|
|
1950
|
-
"message": "The page was evicted from the cache because a network connection was open too long. Chrome limits the amount of time that a page may receive data while cached."
|
|
1951
|
-
},
|
|
1952
|
-
"core/lib/bf-cache-strings.js | noResponseHead": {
|
|
1953
|
-
"message": "Pages that do not have a valid response head cannot enter back/forward cache."
|
|
1954
|
-
},
|
|
1955
|
-
"core/lib/bf-cache-strings.js | notMainFrame": {
|
|
1956
|
-
"message": "Navigation happened in a frame other than the main frame."
|
|
1957
|
-
},
|
|
1958
|
-
"core/lib/bf-cache-strings.js | outstandingIndexedDBTransaction": {
|
|
1959
|
-
"message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
|
|
1960
|
-
},
|
|
1961
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestDirectSocket": {
|
|
1962
|
-
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
1963
|
-
},
|
|
1964
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestFetch": {
|
|
1965
|
-
"message": "Pages with an in-flight fetch network request are not currently eligible for back/forward cache."
|
|
1966
|
-
},
|
|
1967
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestOthers": {
|
|
1968
|
-
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
1969
|
-
},
|
|
1970
|
-
"core/lib/bf-cache-strings.js | outstandingNetworkRequestXHR": {
|
|
1971
|
-
"message": "Pages with an in-flight XHR network request are not currently eligible for back/forward cache."
|
|
1972
|
-
},
|
|
1973
|
-
"core/lib/bf-cache-strings.js | paymentManager": {
|
|
1974
|
-
"message": "Pages that use PaymentManager are not currently eligible for back/forward cache."
|
|
1975
|
-
},
|
|
1976
|
-
"core/lib/bf-cache-strings.js | pictureInPicture": {
|
|
1977
|
-
"message": "Pages that use Picture-in-Picture are not currently eligible for back/forward cache."
|
|
1978
|
-
},
|
|
1979
|
-
"core/lib/bf-cache-strings.js | printing": {
|
|
1980
|
-
"message": "Pages that show Printing UI are not currently eligible for back/forward cache."
|
|
1981
|
-
},
|
|
1982
|
-
"core/lib/bf-cache-strings.js | relatedActiveContentsExist": {
|
|
1983
|
-
"message": "The page was opened using '`window.open()`' and another tab has a reference to it, or the page opened a window."
|
|
1984
|
-
},
|
|
1985
|
-
"core/lib/bf-cache-strings.js | rendererProcessCrashed": {
|
|
1986
|
-
"message": "The renderer process for the page in back/forward cache crashed."
|
|
1987
|
-
},
|
|
1988
|
-
"core/lib/bf-cache-strings.js | rendererProcessKilled": {
|
|
1989
|
-
"message": "The renderer process for the page in back/forward cache was killed."
|
|
1990
|
-
},
|
|
1991
|
-
"core/lib/bf-cache-strings.js | requestedAudioCapturePermission": {
|
|
1992
|
-
"message": "Pages that have requested audio capture permissions are not currently eligible for back/forward cache."
|
|
1993
|
-
},
|
|
1994
|
-
"core/lib/bf-cache-strings.js | requestedBackForwardCacheBlockedSensors": {
|
|
1995
|
-
"message": "Pages that have requested sensor permissions are not currently eligible for back/forward cache."
|
|
1996
|
-
},
|
|
1997
|
-
"core/lib/bf-cache-strings.js | requestedBackgroundWorkPermission": {
|
|
1998
|
-
"message": "Pages that have requested background sync or fetch permissions are not currently eligible for back/forward cache."
|
|
1999
|
-
},
|
|
2000
|
-
"core/lib/bf-cache-strings.js | requestedMIDIPermission": {
|
|
2001
|
-
"message": "Pages that have requested MIDI permissions are not currently eligible for back/forward cache."
|
|
2002
|
-
},
|
|
2003
|
-
"core/lib/bf-cache-strings.js | requestedNotificationsPermission": {
|
|
2004
|
-
"message": "Pages that have requested notifications permissions are not currently eligible for back/forward cache."
|
|
2005
|
-
},
|
|
2006
|
-
"core/lib/bf-cache-strings.js | requestedStorageAccessGrant": {
|
|
2007
|
-
"message": "Pages that have requested storage access are not currently eligible for back/forward cache."
|
|
2008
|
-
},
|
|
2009
|
-
"core/lib/bf-cache-strings.js | requestedVideoCapturePermission": {
|
|
2010
|
-
"message": "Pages that have requested video capture permissions are not currently eligible for back/forward cache."
|
|
2011
|
-
},
|
|
2012
|
-
"core/lib/bf-cache-strings.js | schemeNotHTTPOrHTTPS": {
|
|
2013
|
-
"message": "Only pages whose URL scheme is HTTP / HTTPS can be cached."
|
|
2014
|
-
},
|
|
2015
|
-
"core/lib/bf-cache-strings.js | serviceWorkerClaim": {
|
|
2016
|
-
"message": "The page was claimed by a service worker while it is in back/forward cache."
|
|
2017
|
-
},
|
|
2018
|
-
"core/lib/bf-cache-strings.js | serviceWorkerPostMessage": {
|
|
2019
|
-
"message": "A service worker attempted to send the page in back/forward cache a `MessageEvent`."
|
|
2020
|
-
},
|
|
2021
|
-
"core/lib/bf-cache-strings.js | serviceWorkerUnregistration": {
|
|
2022
|
-
"message": "ServiceWorker was unregistered while a page was in back/forward cache."
|
|
2023
|
-
},
|
|
2024
|
-
"core/lib/bf-cache-strings.js | serviceWorkerVersionActivation": {
|
|
2025
|
-
"message": "The page was evicted from back/forward cache due to a service worker activation."
|
|
2026
|
-
},
|
|
2027
|
-
"core/lib/bf-cache-strings.js | sessionRestored": {
|
|
2028
|
-
"message": "Chrome restarted and cleared the back/forward cache entries."
|
|
2029
|
-
},
|
|
2030
|
-
"core/lib/bf-cache-strings.js | sharedWorker": {
|
|
2031
|
-
"message": "Pages that use SharedWorker are not currently eligible for back/forward cache."
|
|
2032
|
-
},
|
|
2033
|
-
"core/lib/bf-cache-strings.js | speechRecognizer": {
|
|
2034
|
-
"message": "Pages that use SpeechRecognizer are not currently eligible for back/forward cache."
|
|
2035
|
-
},
|
|
2036
|
-
"core/lib/bf-cache-strings.js | speechSynthesis": {
|
|
2037
|
-
"message": "Pages that use SpeechSynthesis are not currently eligible for back/forward cache."
|
|
2038
|
-
},
|
|
2039
|
-
"core/lib/bf-cache-strings.js | subframeIsNavigating": {
|
|
2040
|
-
"message": "An iframe on the page started a navigation that did not complete."
|
|
2041
|
-
},
|
|
2042
|
-
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoCache": {
|
|
2043
|
-
"message": "Pages whose subresource has cache-control:no-cache cannot enter back/forward cache."
|
|
2044
|
-
},
|
|
2045
|
-
"core/lib/bf-cache-strings.js | subresourceHasCacheControlNoStore": {
|
|
2046
|
-
"message": "Pages whose subresource has cache-control:no-store cannot enter back/forward cache."
|
|
2047
|
-
},
|
|
2048
|
-
"core/lib/bf-cache-strings.js | timeout": {
|
|
2049
|
-
"message": "The page exceeded the maximum time in back/forward cache and was expired."
|
|
2050
|
-
},
|
|
2051
|
-
"core/lib/bf-cache-strings.js | timeoutPuttingInCache": {
|
|
2052
|
-
"message": "The page timed out entering back/forward cache (likely due to long-running pagehide handlers)."
|
|
2053
|
-
},
|
|
2054
|
-
"core/lib/bf-cache-strings.js | unloadHandlerExistsInMainFrame": {
|
|
2055
|
-
"message": "The page has an unload handler in the main frame."
|
|
2056
|
-
},
|
|
2057
|
-
"core/lib/bf-cache-strings.js | unloadHandlerExistsInSubFrame": {
|
|
2058
|
-
"message": "The page has an unload handler in a sub frame."
|
|
2059
|
-
},
|
|
2060
|
-
"core/lib/bf-cache-strings.js | userAgentOverrideDiffers": {
|
|
2061
|
-
"message": "Browser has changed the user agent override header."
|
|
2062
|
-
},
|
|
2063
|
-
"core/lib/bf-cache-strings.js | wasGrantedMediaAccess": {
|
|
2064
|
-
"message": "Pages that have granted access to record video or audio are not currently eligible for back/forward cache."
|
|
2065
|
-
},
|
|
2066
|
-
"core/lib/bf-cache-strings.js | webDatabase": {
|
|
2067
|
-
"message": "Pages that use WebDatabase are not currently eligible for back/forward cache."
|
|
2068
|
-
},
|
|
2069
|
-
"core/lib/bf-cache-strings.js | webHID": {
|
|
2070
|
-
"message": "Pages that use WebHID are not currently eligible for back/forward cache."
|
|
2071
|
-
},
|
|
2072
|
-
"core/lib/bf-cache-strings.js | webLocks": {
|
|
2073
|
-
"message": "Pages that use WebLocks are not currently eligible for back/forward cache."
|
|
2074
|
-
},
|
|
2075
|
-
"core/lib/bf-cache-strings.js | webNfc": {
|
|
2076
|
-
"message": "Pages that use WebNfc are not currently eligible for back/forwad cache."
|
|
2077
|
-
},
|
|
2078
|
-
"core/lib/bf-cache-strings.js | webOTPService": {
|
|
2079
|
-
"message": "Pages that use WebOTPService are not currently eligible for bfcache."
|
|
2080
|
-
},
|
|
2081
|
-
"core/lib/bf-cache-strings.js | webRTC": {
|
|
2082
|
-
"message": "Pages with WebRTC cannot enter back/forward cache."
|
|
2083
|
-
},
|
|
2084
|
-
"core/lib/bf-cache-strings.js | webRTCSticky": {
|
|
2085
|
-
"message": "Back/forward cache is disabled because WebRTC has been used."
|
|
2086
|
-
},
|
|
2087
|
-
"core/lib/bf-cache-strings.js | webShare": {
|
|
2088
|
-
"message": "Pages that use WebShare are not currently eligible for back/forwad cache."
|
|
2089
|
-
},
|
|
2090
|
-
"core/lib/bf-cache-strings.js | webSocket": {
|
|
2091
|
-
"message": "Pages with WebSocket cannot enter back/forward cache."
|
|
2092
|
-
},
|
|
2093
|
-
"core/lib/bf-cache-strings.js | webSocketSticky": {
|
|
2094
|
-
"message": "Back/forward cache is disabled because WebSocket has been used."
|
|
2095
|
-
},
|
|
2096
|
-
"core/lib/bf-cache-strings.js | webTransport": {
|
|
2097
|
-
"message": "Pages with WebTransport cannot enter back/forward cache."
|
|
2098
|
-
},
|
|
2099
|
-
"core/lib/bf-cache-strings.js | webTransportSticky": {
|
|
2100
|
-
"message": "Back/forward cache is disabled because WebTransport has been used."
|
|
2101
|
-
},
|
|
2102
|
-
"core/lib/bf-cache-strings.js | webXR": {
|
|
2103
|
-
"message": "Pages that use WebXR are not currently eligible for back/forward cache."
|
|
2104
|
-
},
|
|
2105
1745
|
"core/lib/csp-evaluator.js | allowlistFallback": {
|
|
2106
1746
|
"message": "Consider adding https: and http: URL schemes (ignored by browsers supporting `'strict-dynamic'`) to be backward compatible with older browsers."
|
|
2107
1747
|
},
|
|
@@ -2168,177 +1808,6 @@
|
|
|
2168
1808
|
"core/lib/deprecation-description.js | title": {
|
|
2169
1809
|
"message": "Deprecated Feature Used"
|
|
2170
1810
|
},
|
|
2171
|
-
"core/lib/deprecations-strings.js | AuthorizationCoveredByWildcard": {
|
|
2172
|
-
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
|
|
2173
|
-
},
|
|
2174
|
-
"core/lib/deprecations-strings.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2175
|
-
"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."
|
|
2176
|
-
},
|
|
2177
|
-
"core/lib/deprecations-strings.js | CSSValueAppearanceSliderVertical": {
|
|
2178
|
-
"message": "CSS appearance value `slider-vertical` is not standardized and will be removed."
|
|
2179
|
-
},
|
|
2180
|
-
"core/lib/deprecations-strings.js | CanRequestURLHTTPContainingNewline": {
|
|
2181
|
-
"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."
|
|
2182
|
-
},
|
|
2183
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesConnectionInfo": {
|
|
2184
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
|
|
2185
|
-
},
|
|
2186
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2187
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
|
|
2188
|
-
},
|
|
2189
|
-
"core/lib/deprecations-strings.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2190
|
-
"message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
|
|
2191
|
-
},
|
|
2192
|
-
"core/lib/deprecations-strings.js | CookieWithTruncatingChar": {
|
|
2193
|
-
"message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
|
|
2194
|
-
},
|
|
2195
|
-
"core/lib/deprecations-strings.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2196
|
-
"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`."
|
|
2197
|
-
},
|
|
2198
|
-
"core/lib/deprecations-strings.js | CrossOriginWindowAlert": {
|
|
2199
|
-
"message": "Triggering window.alert from cross origin iframes has been deprecated and will be removed in the future."
|
|
2200
|
-
},
|
|
2201
|
-
"core/lib/deprecations-strings.js | CrossOriginWindowConfirm": {
|
|
2202
|
-
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
|
|
2203
|
-
},
|
|
2204
|
-
"core/lib/deprecations-strings.js | DOMMutationEvents": {
|
|
2205
|
-
"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."
|
|
2206
|
-
},
|
|
2207
|
-
"core/lib/deprecations-strings.js | DataUrlInSvgUse": {
|
|
2208
|
-
"message": "Support for data: URLs in SVGUseElement is deprecated and it will be removed in the future."
|
|
2209
|
-
},
|
|
2210
|
-
"core/lib/deprecations-strings.js | GeolocationInsecureOrigin": {
|
|
2211
|
-
"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."
|
|
2212
|
-
},
|
|
2213
|
-
"core/lib/deprecations-strings.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2214
|
-
"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."
|
|
2215
|
-
},
|
|
2216
|
-
"core/lib/deprecations-strings.js | GetUserMediaInsecureOrigin": {
|
|
2217
|
-
"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."
|
|
2218
|
-
},
|
|
2219
|
-
"core/lib/deprecations-strings.js | HostCandidateAttributeGetter": {
|
|
2220
|
-
"message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
|
|
2221
|
-
},
|
|
2222
|
-
"core/lib/deprecations-strings.js | IdentityInCanMakePaymentEvent": {
|
|
2223
|
-
"message": "The merchant origin and arbitrary data from the `canmakepayment` service worker event are deprecated and will be removed: `topOrigin`, `paymentRequestOrigin`, `methodData`, `modifiers`."
|
|
2224
|
-
},
|
|
2225
|
-
"core/lib/deprecations-strings.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2226
|
-
"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."
|
|
2227
|
-
},
|
|
2228
|
-
"core/lib/deprecations-strings.js | InterestGroupDailyUpdateUrl": {
|
|
2229
|
-
"message": "The `dailyUpdateUrl` field of `InterestGroups` passed to `joinAdInterestGroup()` has been renamed to `updateUrl`, to more accurately reflect its behavior."
|
|
2230
|
-
},
|
|
2231
|
-
"core/lib/deprecations-strings.js | LocalCSSFileExtensionRejected": {
|
|
2232
|
-
"message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
|
|
2233
|
-
},
|
|
2234
|
-
"core/lib/deprecations-strings.js | MediaSourceAbortRemove": {
|
|
2235
|
-
"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."
|
|
2236
|
-
},
|
|
2237
|
-
"core/lib/deprecations-strings.js | MediaSourceDurationTruncatingBuffered": {
|
|
2238
|
-
"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`."
|
|
2239
|
-
},
|
|
2240
|
-
"core/lib/deprecations-strings.js | NoSysexWebMIDIWithoutPermission": {
|
|
2241
|
-
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
|
|
2242
|
-
},
|
|
2243
|
-
"core/lib/deprecations-strings.js | NotificationInsecureOrigin": {
|
|
2244
|
-
"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."
|
|
2245
|
-
},
|
|
2246
|
-
"core/lib/deprecations-strings.js | NotificationPermissionRequestedIframe": {
|
|
2247
|
-
"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."
|
|
2248
|
-
},
|
|
2249
|
-
"core/lib/deprecations-strings.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2250
|
-
"message": "Option `imageOrientation: 'none'` in createImageBitmap is deprecated. Please use createImageBitmap with option \\{imageOrientation: 'from-image'\\} instead."
|
|
2251
|
-
},
|
|
2252
|
-
"core/lib/deprecations-strings.js | ObsoleteWebRtcCipherSuite": {
|
|
2253
|
-
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
|
2254
|
-
},
|
|
2255
|
-
"core/lib/deprecations-strings.js | OverflowVisibleOnReplacedElement": {
|
|
2256
|
-
"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."
|
|
2257
|
-
},
|
|
2258
|
-
"core/lib/deprecations-strings.js | PaymentInstruments": {
|
|
2259
|
-
"message": "`paymentManager.instruments` is deprecated. Please use just-in-time install for payment handlers instead."
|
|
2260
|
-
},
|
|
2261
|
-
"core/lib/deprecations-strings.js | PaymentRequestCSPViolation": {
|
|
2262
|
-
"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."
|
|
2263
|
-
},
|
|
2264
|
-
"core/lib/deprecations-strings.js | PersistentQuotaType": {
|
|
2265
|
-
"message": "`StorageType.persistent` is deprecated. Please use standardized `navigator.storage` instead."
|
|
2266
|
-
},
|
|
2267
|
-
"core/lib/deprecations-strings.js | PictureSourceSrc": {
|
|
2268
|
-
"message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
|
|
2269
|
-
},
|
|
2270
|
-
"core/lib/deprecations-strings.js | PrefixedCancelAnimationFrame": {
|
|
2271
|
-
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
|
2272
|
-
},
|
|
2273
|
-
"core/lib/deprecations-strings.js | PrefixedRequestAnimationFrame": {
|
|
2274
|
-
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
|
2275
|
-
},
|
|
2276
|
-
"core/lib/deprecations-strings.js | PrefixedVideoDisplayingFullscreen": {
|
|
2277
|
-
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
|
2278
|
-
},
|
|
2279
|
-
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullScreen": {
|
|
2280
|
-
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2281
|
-
},
|
|
2282
|
-
"core/lib/deprecations-strings.js | PrefixedVideoEnterFullscreen": {
|
|
2283
|
-
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2284
|
-
},
|
|
2285
|
-
"core/lib/deprecations-strings.js | PrefixedVideoExitFullScreen": {
|
|
2286
|
-
"message": "HTMLVideoElement.webkitExitFullScreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2287
|
-
},
|
|
2288
|
-
"core/lib/deprecations-strings.js | PrefixedVideoExitFullscreen": {
|
|
2289
|
-
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2290
|
-
},
|
|
2291
|
-
"core/lib/deprecations-strings.js | PrefixedVideoSupportsFullscreen": {
|
|
2292
|
-
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
|
2293
|
-
},
|
|
2294
|
-
"core/lib/deprecations-strings.js | PrivacySandboxExtensionsAPI": {
|
|
2295
|
-
"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."
|
|
2296
|
-
},
|
|
2297
|
-
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2298
|
-
"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."
|
|
2299
|
-
},
|
|
2300
|
-
"core/lib/deprecations-strings.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2301
|
-
"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."
|
|
2302
|
-
},
|
|
2303
|
-
"core/lib/deprecations-strings.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2304
|
-
"message": "The callback-based getStats() is deprecated and will be removed. Use the spec-compliant getStats() instead."
|
|
2305
|
-
},
|
|
2306
|
-
"core/lib/deprecations-strings.js | RangeExpand": {
|
|
2307
|
-
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
|
2308
|
-
},
|
|
2309
|
-
"core/lib/deprecations-strings.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2310
|
-
"message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
|
|
2311
|
-
},
|
|
2312
|
-
"core/lib/deprecations-strings.js | RtcpMuxPolicyNegotiate": {
|
|
2313
|
-
"message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
|
|
2314
|
-
},
|
|
2315
|
-
"core/lib/deprecations-strings.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2316
|
-
"message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
2317
|
-
},
|
|
2318
|
-
"core/lib/deprecations-strings.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2319
|
-
"message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
|
|
2320
|
-
},
|
|
2321
|
-
"core/lib/deprecations-strings.js | UnloadHandler": {
|
|
2322
|
-
"message": "Unload event listeners are deprecated and will be removed."
|
|
2323
|
-
},
|
|
2324
|
-
"core/lib/deprecations-strings.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2325
|
-
"message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2326
|
-
},
|
|
2327
|
-
"core/lib/deprecations-strings.js | WebGPULimitMaxInterStageShaderComponents": {
|
|
2328
|
-
"message": "The WebGPU limit `maxInterStageShaderComponents` is deprecated, instead use the WebGPU limit `maxInterStageShaderVariables`."
|
|
2329
|
-
},
|
|
2330
|
-
"core/lib/deprecations-strings.js | WebSQL": {
|
|
2331
|
-
"message": "Web SQL is deprecated. Please use SQLite WebAssembly or Indexed Database"
|
|
2332
|
-
},
|
|
2333
|
-
"core/lib/deprecations-strings.js | XHRJSONEncodingDetection": {
|
|
2334
|
-
"message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
|
|
2335
|
-
},
|
|
2336
|
-
"core/lib/deprecations-strings.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2337
|
-
"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/."
|
|
2338
|
-
},
|
|
2339
|
-
"core/lib/deprecations-strings.js | XRSupportsSession": {
|
|
2340
|
-
"message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
|
|
2341
|
-
},
|
|
2342
1811
|
"core/lib/i18n/i18n.js | columnBlockingTime": {
|
|
2343
1812
|
"message": "Main-Thread Blocking Time"
|
|
2344
1813
|
},
|
|
@@ -2693,6 +2162,174 @@
|
|
|
2693
2162
|
"flow-report/src/i18n/ui-strings.js | title": {
|
|
2694
2163
|
"message": "Lighthouse User Flow Report"
|
|
2695
2164
|
},
|
|
2165
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | AuthorizationCoveredByWildcard": {
|
|
2166
|
+
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS Access-Control-Allow-Headers handling."
|
|
2167
|
+
},
|
|
2168
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSSelectorInternalMediaControlsOverlayCastButton": {
|
|
2169
|
+
"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."
|
|
2170
|
+
},
|
|
2171
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CSSValueAppearanceSliderVertical": {
|
|
2172
|
+
"message": "CSS appearance value slider-vertical is not standardized and will be removed."
|
|
2173
|
+
},
|
|
2174
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CanRequestURLHTTPContainingNewline": {
|
|
2175
|
+
"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."
|
|
2176
|
+
},
|
|
2177
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesConnectionInfo": {
|
|
2178
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: Navigation Timing 2."
|
|
2179
|
+
},
|
|
2180
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesFirstPaintAfterLoadTime": {
|
|
2181
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: Paint Timing."
|
|
2182
|
+
},
|
|
2183
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ChromeLoadTimesWasAlternateProtocolAvailable": {
|
|
2184
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2."
|
|
2185
|
+
},
|
|
2186
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CookieWithTruncatingChar": {
|
|
2187
|
+
"message": "Cookies containing a \\(0|r|n) character will be rejected instead of truncated."
|
|
2188
|
+
},
|
|
2189
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginAccessBasedOnDocumentDomain": {
|
|
2190
|
+
"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."
|
|
2191
|
+
},
|
|
2192
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowAlert": {
|
|
2193
|
+
"message": "Triggering window.alert from cross origin iframes has been deprecated and will be removed in the future."
|
|
2194
|
+
},
|
|
2195
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | CrossOriginWindowConfirm": {
|
|
2196
|
+
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
|
|
2197
|
+
},
|
|
2198
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DOMMutationEvents": {
|
|
2199
|
+
"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."
|
|
2200
|
+
},
|
|
2201
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | DataUrlInSvgUse": {
|
|
2202
|
+
"message": "Support for data: URLs in SVGUseElement is deprecated and it will be removed in the future."
|
|
2203
|
+
},
|
|
2204
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOrigin": {
|
|
2205
|
+
"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."
|
|
2206
|
+
},
|
|
2207
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GeolocationInsecureOriginDeprecatedNotRemoved": {
|
|
2208
|
+
"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."
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | GetUserMediaInsecureOrigin": {
|
|
2211
|
+
"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."
|
|
2212
|
+
},
|
|
2213
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | H1UserAgentFontSizeInSection": {
|
|
2214
|
+
"message": "The website has an <h1> tag within an <article>, <aside>, <nav>, or <section>, and relies on deprecated UA stylesheet rules for the resulting font size. See the second block of 'x h1' styles in https://html.spec.whatwg.org/multipage/rendering.html#sections-and-headings. These special rules are deprecated and will be removed. See https://github.com/whatwg/html/issues/7867."
|
|
2215
|
+
},
|
|
2216
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | HostCandidateAttributeGetter": {
|
|
2217
|
+
"message": "RTCPeerConnectionIceErrorEvent.hostCandidate is deprecated. Please use RTCPeerConnectionIceErrorEvent.address or RTCPeerConnectionIceErrorEvent.port instead."
|
|
2218
|
+
},
|
|
2219
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IdentityInCanMakePaymentEvent": {
|
|
2220
|
+
"message": "The merchant origin and arbitrary data from the canmakepayment service worker event are deprecated and will be removed: topOrigin, paymentRequestOrigin, methodData, modifiers."
|
|
2221
|
+
},
|
|
2222
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InsecurePrivateNetworkSubresourceRequest": {
|
|
2223
|
+
"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."
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | InterestGroupDailyUpdateUrl": {
|
|
2226
|
+
"message": "The dailyUpdateUrl field of InterestGroups passed to joinAdInterestGroup() has been renamed to updateUrl, to more accurately reflect its behavior."
|
|
2227
|
+
},
|
|
2228
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | IntlV8BreakIterator": {
|
|
2229
|
+
"message": "Intl.v8BreakIterator is deprecated. Please use Intl.Segmenter instead."
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | LocalCSSFileExtensionRejected": {
|
|
2232
|
+
"message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
|
|
2233
|
+
},
|
|
2234
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceAbortRemove": {
|
|
2235
|
+
"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."
|
|
2236
|
+
},
|
|
2237
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | MediaSourceDurationTruncatingBuffered": {
|
|
2238
|
+
"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."
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NoSysexWebMIDIWithoutPermission": {
|
|
2241
|
+
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the MIDIOptions."
|
|
2242
|
+
},
|
|
2243
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationInsecureOrigin": {
|
|
2244
|
+
"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."
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | NotificationPermissionRequestedIframe": {
|
|
2247
|
+
"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."
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteCreateImageBitmapImageOrientationNone": {
|
|
2250
|
+
"message": "Option imageOrientation: 'none' in createImageBitmap is deprecated. Please use createImageBitmap with option '\\\\{imageOrientation: 'from-image'\\\\}' instead."
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | ObsoleteWebRtcCipherSuite": {
|
|
2253
|
+
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
|
2254
|
+
},
|
|
2255
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | OverflowVisibleOnReplacedElement": {
|
|
2256
|
+
"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."
|
|
2257
|
+
},
|
|
2258
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentInstruments": {
|
|
2259
|
+
"message": "paymentManager.instruments is deprecated. Please use just-in-time install for payment handlers instead."
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PaymentRequestCSPViolation": {
|
|
2262
|
+
"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."
|
|
2263
|
+
},
|
|
2264
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PersistentQuotaType": {
|
|
2265
|
+
"message": "StorageType.persistent is deprecated. Please use standardized navigator.storage instead."
|
|
2266
|
+
},
|
|
2267
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PictureSourceSrc": {
|
|
2268
|
+
"message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
|
|
2269
|
+
},
|
|
2270
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedCancelAnimationFrame": {
|
|
2271
|
+
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
|
2272
|
+
},
|
|
2273
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedRequestAnimationFrame": {
|
|
2274
|
+
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoDisplayingFullscreen": {
|
|
2277
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
|
2278
|
+
},
|
|
2279
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullScreen": {
|
|
2280
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2281
|
+
},
|
|
2282
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoEnterFullscreen": {
|
|
2283
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
|
2284
|
+
},
|
|
2285
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullScreen": {
|
|
2286
|
+
"message": "HTMLVideoElement.webkitExitFullScreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2287
|
+
},
|
|
2288
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoExitFullscreen": {
|
|
2289
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrefixedVideoSupportsFullscreen": {
|
|
2292
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
|
2293
|
+
},
|
|
2294
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | PrivacySandboxExtensionsAPI": {
|
|
2295
|
+
"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."
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpFalse": {
|
|
2298
|
+
"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."
|
|
2299
|
+
},
|
|
2300
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCConstraintEnableDtlsSrtpTrue": {
|
|
2301
|
+
"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."
|
|
2302
|
+
},
|
|
2303
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RTCPeerConnectionGetStatsLegacyNonCompliant": {
|
|
2304
|
+
"message": "The callback-based getStats() is deprecated and will be removed. Use the spec-compliant getStats() instead."
|
|
2305
|
+
},
|
|
2306
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RangeExpand": {
|
|
2307
|
+
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
|
2308
|
+
},
|
|
2309
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RequestedSubresourceWithEmbeddedCredentials": {
|
|
2310
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
|
2311
|
+
},
|
|
2312
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | RtcpMuxPolicyNegotiate": {
|
|
2313
|
+
"message": "The rtcpMuxPolicy option is deprecated and will be removed."
|
|
2314
|
+
},
|
|
2315
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | SharedArrayBufferConstructedWithoutIsolation": {
|
|
2316
|
+
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
|
2317
|
+
},
|
|
2318
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | TextToSpeech_DisallowedByAutoplay": {
|
|
2319
|
+
"message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
|
|
2320
|
+
},
|
|
2321
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | UnloadHandler": {
|
|
2322
|
+
"message": "Unload event listeners are deprecated and will be removed."
|
|
2323
|
+
},
|
|
2324
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
|
2325
|
+
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
|
2326
|
+
},
|
|
2327
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XHRJSONEncodingDetection": {
|
|
2328
|
+
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
|
2329
|
+
},
|
|
2330
|
+
"node_modules/@paulirish/trace_engine/generated/Deprecation.js | XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
|
2331
|
+
"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/."
|
|
2332
|
+
},
|
|
2696
2333
|
"node_modules/@paulirish/trace_engine/models/trace/insights/CLSCulprits.js | animation": {
|
|
2697
2334
|
"message": "Animation"
|
|
2698
2335
|
},
|
|
@@ -2780,11 +2417,23 @@
|
|
|
2780
2417
|
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | serverResponseTimeLabel": {
|
|
2781
2418
|
"message": "Server response time"
|
|
2782
2419
|
},
|
|
2783
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
|
|
2784
|
-
"message": "Document request latency"
|
|
2420
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | title": {
|
|
2421
|
+
"message": "Document request latency"
|
|
2422
|
+
},
|
|
2423
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DocumentLatency.js | uncompressedDownload": {
|
|
2424
|
+
"message": "Uncompressed download"
|
|
2425
|
+
},
|
|
2426
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | columnResourceSize": {
|
|
2427
|
+
"message": "Resource size"
|
|
2428
|
+
},
|
|
2429
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | columnSource": {
|
|
2430
|
+
"message": "Source"
|
|
2431
|
+
},
|
|
2432
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | description": {
|
|
2433
|
+
"message": "Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity."
|
|
2785
2434
|
},
|
|
2786
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/
|
|
2787
|
-
"message": "
|
|
2435
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/DuplicatedJavaScript.js | title": {
|
|
2436
|
+
"message": "Duplicated JavaScript"
|
|
2788
2437
|
},
|
|
2789
2438
|
"node_modules/@paulirish/trace_engine/models/trace/insights/FontDisplay.js | description": {
|
|
2790
2439
|
"message": "Consider setting [font-display](https://developer.chrome.com/blog/font-display) to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with [font metric overrides](https://developer.chrome.com/blog/font-fallbacks)."
|
|
@@ -2813,9 +2462,15 @@
|
|
|
2813
2462
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | totalReflowTime": {
|
|
2814
2463
|
"message": "Total reflow time"
|
|
2815
2464
|
},
|
|
2465
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ForcedReflow.js | unattributed": {
|
|
2466
|
+
"message": "Unattributed"
|
|
2467
|
+
},
|
|
2816
2468
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | description": {
|
|
2817
2469
|
"message": "Reducing the download time of images can improve the perceived load time of the page and LCP. [Learn more about optimizing image size](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
|
|
2818
2470
|
},
|
|
2471
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | estimatedSavings": {
|
|
2472
|
+
"message": "{PH1} (Est {PH2})"
|
|
2473
|
+
},
|
|
2819
2474
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | noOptimizableImages": {
|
|
2820
2475
|
"message": "No optimizable images"
|
|
2821
2476
|
},
|
|
@@ -2829,16 +2484,16 @@
|
|
|
2829
2484
|
"message": "Improve image delivery"
|
|
2830
2485
|
},
|
|
2831
2486
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useCompression": {
|
|
2832
|
-
"message": "Increasing the image compression factor could improve this image's download size.
|
|
2487
|
+
"message": "Increasing the image compression factor could improve this image's download size."
|
|
2833
2488
|
},
|
|
2834
2489
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useModernFormat": {
|
|
2835
|
-
"message": "Using a modern image format (WebP, AVIF) or increasing the image compression could improve this image's download size.
|
|
2490
|
+
"message": "Using a modern image format (WebP, AVIF) or increasing the image compression could improve this image's download size."
|
|
2836
2491
|
},
|
|
2837
2492
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useResponsiveSize": {
|
|
2838
|
-
"message": "This image file is larger than it needs to be ({
|
|
2493
|
+
"message": "This image file is larger than it needs to be ({PH1}) for its displayed dimensions ({PH2}). Use responsive images to reduce the image download size."
|
|
2839
2494
|
},
|
|
2840
2495
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ImageDelivery.js | useVideoFormat": {
|
|
2841
|
-
"message": "Using video formats instead of GIFs can improve the download size of animated content.
|
|
2496
|
+
"message": "Using video formats instead of GIFs can improve the download size of animated content."
|
|
2842
2497
|
},
|
|
2843
2498
|
"node_modules/@paulirish/trace_engine/models/trace/insights/InteractionToNextPaint.js | description": {
|
|
2844
2499
|
"message": "Start investigating with the longest phase. [Delays can be minimized](https://web.dev/articles/optimize-inp#optimize_interactions). To reduce processing duration, [optimize the main-thread costs](https://web.dev/articles/optimize-long-tasks), often JS."
|
|
@@ -2894,15 +2549,18 @@
|
|
|
2894
2549
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | description": {
|
|
2895
2550
|
"message": "Each [phase has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays."
|
|
2896
2551
|
},
|
|
2552
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | duration": {
|
|
2553
|
+
"message": "Duration"
|
|
2554
|
+
},
|
|
2897
2555
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | elementRenderDelay": {
|
|
2898
2556
|
"message": "Element render delay"
|
|
2899
2557
|
},
|
|
2558
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | fieldDuration": {
|
|
2559
|
+
"message": "Field 75th percentile"
|
|
2560
|
+
},
|
|
2900
2561
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | noLcp": {
|
|
2901
2562
|
"message": "No LCP detected"
|
|
2902
2563
|
},
|
|
2903
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | percentLCP": {
|
|
2904
|
-
"message": "% of LCP"
|
|
2905
|
-
},
|
|
2906
2564
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | phase": {
|
|
2907
2565
|
"message": "Phase"
|
|
2908
2566
|
},
|
|
@@ -2918,14 +2576,20 @@
|
|
|
2918
2576
|
"node_modules/@paulirish/trace_engine/models/trace/insights/LCPPhases.js | title": {
|
|
2919
2577
|
"message": "LCP by phase"
|
|
2920
2578
|
},
|
|
2921
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/
|
|
2579
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | description": {
|
|
2922
2580
|
"message": "[Avoid chaining critical requests](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains) by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load."
|
|
2923
2581
|
},
|
|
2924
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/
|
|
2925
|
-
"message": "
|
|
2582
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | maxCriticalPathLatency": {
|
|
2583
|
+
"message": "Max critical path latency:"
|
|
2584
|
+
},
|
|
2585
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | noNetworkDependencyTree": {
|
|
2586
|
+
"message": "No rendering tasks impacted by network dependencies"
|
|
2926
2587
|
},
|
|
2927
|
-
"node_modules/@paulirish/trace_engine/models/trace/insights/
|
|
2928
|
-
"message": "
|
|
2588
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | title": {
|
|
2589
|
+
"message": "Network dependency tree"
|
|
2590
|
+
},
|
|
2591
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/NetworkDependencyTree.js | warningDescription": {
|
|
2592
|
+
"message": "Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load."
|
|
2929
2593
|
},
|
|
2930
2594
|
"node_modules/@paulirish/trace_engine/models/trace/insights/RenderBlocking.js | description": {
|
|
2931
2595
|
"message": "Requests are blocking the page's initial render, which may delay LCP. [Deferring or inlining](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) can move these network requests out of the critical path."
|
|
@@ -2970,19 +2634,37 @@
|
|
|
2970
2634
|
"message": "Main thread time"
|
|
2971
2635
|
},
|
|
2972
2636
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnThirdParty": {
|
|
2973
|
-
"message": "
|
|
2637
|
+
"message": "3rd party"
|
|
2974
2638
|
},
|
|
2975
2639
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | columnTransferSize": {
|
|
2976
2640
|
"message": "Transfer size"
|
|
2977
2641
|
},
|
|
2978
2642
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | description": {
|
|
2979
|
-
"message": "
|
|
2643
|
+
"message": "3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/loading-third-party-javascript/) to prioritize your page's content."
|
|
2980
2644
|
},
|
|
2981
2645
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | noThirdParties": {
|
|
2982
2646
|
"message": "No third parties found"
|
|
2983
2647
|
},
|
|
2984
2648
|
"node_modules/@paulirish/trace_engine/models/trace/insights/ThirdParties.js | title": {
|
|
2985
|
-
"message": "
|
|
2649
|
+
"message": "3rd parties"
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | cacheTTL": {
|
|
2652
|
+
"message": "Cache TTL"
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | description": {
|
|
2655
|
+
"message": "A long cache lifetime can speed up repeat visits to your page. [Learn more](https://web.dev/uses-long-cache-ttl/)."
|
|
2656
|
+
},
|
|
2657
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | noRequestsToCache": {
|
|
2658
|
+
"message": "No requests with inefficient cache policies"
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | others": {
|
|
2661
|
+
"message": "{PH1} others"
|
|
2662
|
+
},
|
|
2663
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | requestColumn": {
|
|
2664
|
+
"message": "Request"
|
|
2665
|
+
},
|
|
2666
|
+
"node_modules/@paulirish/trace_engine/models/trace/insights/UseCache.js | title": {
|
|
2667
|
+
"message": "Use efficient cache lifetimes"
|
|
2986
2668
|
},
|
|
2987
2669
|
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | description": {
|
|
2988
2670
|
"message": "Tap interactions may be [delayed by up to 300 ms](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) if the viewport is not optimized for mobile."
|
|
@@ -2990,6 +2672,366 @@
|
|
|
2990
2672
|
"node_modules/@paulirish/trace_engine/models/trace/insights/Viewport.js | title": {
|
|
2991
2673
|
"message": "Optimize viewport for mobile"
|
|
2992
2674
|
},
|
|
2675
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPMethodNotGET": {
|
|
2676
|
+
"message": "Only pages loaded via a GET request are eligible for back/forward cache."
|
|
2677
|
+
},
|
|
2678
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | HTTPStatusNotOK": {
|
|
2679
|
+
"message": "Only pages with a status code of 2XX can be cached."
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | JavaScriptExecution": {
|
|
2682
|
+
"message": "Chrome detected an attempt to execute JavaScript while in the cache."
|
|
2683
|
+
},
|
|
2684
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | appBanner": {
|
|
2685
|
+
"message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabled": {
|
|
2688
|
+
"message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
|
|
2689
|
+
},
|
|
2690
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByCommandLine": {
|
|
2691
|
+
"message": "Back/forward cache is disabled by the command line."
|
|
2692
|
+
},
|
|
2693
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledByLowMemory": {
|
|
2694
|
+
"message": "Back/forward cache is disabled due to insufficient memory."
|
|
2695
|
+
},
|
|
2696
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForDelegate": {
|
|
2697
|
+
"message": "Back/forward cache is not supported by delegate."
|
|
2698
|
+
},
|
|
2699
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | backForwardCacheDisabledForPrerender": {
|
|
2700
|
+
"message": "Back/forward cache is disabled for prerenderer."
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | broadcastChannel": {
|
|
2703
|
+
"message": "The page cannot be cached because it has a BroadcastChannel instance with registered listeners."
|
|
2704
|
+
},
|
|
2705
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheControlNoStore": {
|
|
2706
|
+
"message": "Pages with cache-control:no-store header cannot enter back/forward cache."
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheFlushed": {
|
|
2709
|
+
"message": "The cache was intentionally cleared."
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cacheLimit": {
|
|
2712
|
+
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
2713
|
+
},
|
|
2714
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | containsPlugins": {
|
|
2715
|
+
"message": "Pages containing plugins are not currently eligible for back/forward cache."
|
|
2716
|
+
},
|
|
2717
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentDiscarded": {
|
|
2718
|
+
"message": "Undefined"
|
|
2719
|
+
},
|
|
2720
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileChooser": {
|
|
2721
|
+
"message": "Pages that use FileChooser API are not eligible for back/forward cache."
|
|
2722
|
+
},
|
|
2723
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentFileSystemAccess": {
|
|
2724
|
+
"message": "Pages that use File System Access API are not eligible for back/forward cache."
|
|
2725
|
+
},
|
|
2726
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaDevicesDispatcherHost": {
|
|
2727
|
+
"message": "Pages that use Media Device Dispatcher are not eligible for back/forward cache."
|
|
2728
|
+
},
|
|
2729
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaPlay": {
|
|
2730
|
+
"message": "A media player was playing upon navigating away."
|
|
2731
|
+
},
|
|
2732
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSession": {
|
|
2733
|
+
"message": "Pages that use MediaSession API and set a playback state are not eligible for back/forward cache."
|
|
2734
|
+
},
|
|
2735
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentMediaSessionService": {
|
|
2736
|
+
"message": "Pages that use MediaSession API and set action handlers are not eligible for back/forward cache."
|
|
2737
|
+
},
|
|
2738
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentScreenReader": {
|
|
2739
|
+
"message": "Back/forward cache is disabled due to screen reader."
|
|
2740
|
+
},
|
|
2741
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSecurityHandler": {
|
|
2742
|
+
"message": "Pages that use SecurityHandler are not eligible for back/forward cache."
|
|
2743
|
+
},
|
|
2744
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentSerial": {
|
|
2745
|
+
"message": "Pages that use Serial API are not eligible for back/forward cache."
|
|
2746
|
+
},
|
|
2747
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebAuthenticationAPI": {
|
|
2748
|
+
"message": "Pages that use WebAuthetication API are not eligible for back/forward cache."
|
|
2749
|
+
},
|
|
2750
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebBluetooth": {
|
|
2751
|
+
"message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
|
|
2752
|
+
},
|
|
2753
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | contentWebUSB": {
|
|
2754
|
+
"message": "Pages that use WebUSB API are not eligible for back/forward cache."
|
|
2755
|
+
},
|
|
2756
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | cookieDisabled": {
|
|
2757
|
+
"message": "Back/forward cache is disabled because cookies are disabled on a page that uses Cache-Control: no-store."
|
|
2758
|
+
},
|
|
2759
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | dedicatedWorkerOrWorklet": {
|
|
2760
|
+
"message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
|
|
2761
|
+
},
|
|
2762
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | documentLoaded": {
|
|
2763
|
+
"message": "The document did not finish loading before navigating away."
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderAppBannerManager": {
|
|
2766
|
+
"message": "App Banner was present upon navigating away."
|
|
2767
|
+
},
|
|
2768
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderChromePasswordManagerClientBindCredentialManager": {
|
|
2769
|
+
"message": "Chrome Password Manager was present upon navigating away."
|
|
2770
|
+
},
|
|
2771
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerSelfDeletingRequestDelegate": {
|
|
2772
|
+
"message": "DOM distillation was in progress upon navigating away."
|
|
2773
|
+
},
|
|
2774
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderDomDistillerViewerSource": {
|
|
2775
|
+
"message": "DOM Distiller Viewer was present upon navigating away."
|
|
2776
|
+
},
|
|
2777
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessaging": {
|
|
2778
|
+
"message": "Back/forward cache is disabled due to extensions using messaging API."
|
|
2779
|
+
},
|
|
2780
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionMessagingForOpenPort": {
|
|
2781
|
+
"message": "Extensions with long-lived connection should close the connection before entering back/forward cache."
|
|
2782
|
+
},
|
|
2783
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensionSentMessageToCachedFrame": {
|
|
2784
|
+
"message": "Extensions with long-lived connection attempted to send messages to frames in back/forward cache."
|
|
2785
|
+
},
|
|
2786
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderExtensions": {
|
|
2787
|
+
"message": "Back/forward cache is disabled due to extensions."
|
|
2788
|
+
},
|
|
2789
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderModalDialog": {
|
|
2790
|
+
"message": "Modal dialog such as form resubmission or http password dialog was shown for the page upon navigating away."
|
|
2791
|
+
},
|
|
2792
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOfflinePage": {
|
|
2793
|
+
"message": "The offline page was shown upon navigating away."
|
|
2794
|
+
},
|
|
2795
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderOomInterventionTabHelper": {
|
|
2796
|
+
"message": "Out-Of-Memory Intervention bar was present upon navigating away."
|
|
2797
|
+
},
|
|
2798
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPermissionRequestManager": {
|
|
2799
|
+
"message": "There were permission requests upon navigating away."
|
|
2800
|
+
},
|
|
2801
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderPopupBlockerTabHelper": {
|
|
2802
|
+
"message": "Popup blocker was present upon navigating away."
|
|
2803
|
+
},
|
|
2804
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingThreatDetails": {
|
|
2805
|
+
"message": "Safe Browsing details were shown upon navigating away."
|
|
2806
|
+
},
|
|
2807
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | embedderSafeBrowsingTriggeredPopupBlocker": {
|
|
2808
|
+
"message": "Safe Browsing considered this page to be abusive and blocked popup."
|
|
2809
|
+
},
|
|
2810
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
|
|
2811
|
+
"message": "A service worker was activated while the page was in back/forward cache."
|
|
2812
|
+
},
|
|
2813
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | errorDocument": {
|
|
2814
|
+
"message": "Back/forward cache is disabled due to a document error."
|
|
2815
|
+
},
|
|
2816
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | fencedFramesEmbedder": {
|
|
2817
|
+
"message": "Pages using FencedFrames cannot be stored in bfcache."
|
|
2818
|
+
},
|
|
2819
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | foregroundCacheLimit": {
|
|
2820
|
+
"message": "The page was evicted from the cache to allow another page to be cached."
|
|
2821
|
+
},
|
|
2822
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | grantedMediaStreamAccess": {
|
|
2823
|
+
"message": "Pages that have granted media stream access are not currently eligible for back/forward cache."
|
|
2824
|
+
},
|
|
2825
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | haveInnerContents": {
|
|
2826
|
+
"message": "Pages that have certain kinds of embedded content (e.g. PDFs) are not currently eligible for back/forward cache."
|
|
2827
|
+
},
|
|
2828
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | idleManager": {
|
|
2829
|
+
"message": "Pages that use IdleManager are not currently eligible for back/forward cache."
|
|
2830
|
+
},
|
|
2831
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBConnection": {
|
|
2832
|
+
"message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
|
|
2833
|
+
},
|
|
2834
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | indexedDBEvent": {
|
|
2835
|
+
"message": "Back/forward cache is disabled due to an IndexedDB event."
|
|
2836
|
+
},
|
|
2837
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | ineligibleAPI": {
|
|
2838
|
+
"message": "Ineligible APIs were used."
|
|
2839
|
+
},
|
|
2840
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedJavascript": {
|
|
2841
|
+
"message": "Pages that JavaScript is injected into by extensions are not currently eligible for back/forward cache."
|
|
2842
|
+
},
|
|
2843
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | injectedStyleSheet": {
|
|
2844
|
+
"message": "Pages that a StyleSheet is injected into by extensions are not currently eligible for back/forward cache."
|
|
2845
|
+
},
|
|
2846
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | internalError": {
|
|
2847
|
+
"message": "Internal error."
|
|
2848
|
+
},
|
|
2849
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | jsNetworkRequestReceivedCacheControlNoStoreResource": {
|
|
2850
|
+
"message": "Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header."
|
|
2851
|
+
},
|
|
2852
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keepaliveRequest": {
|
|
2853
|
+
"message": "Back/forward cache is disabled due to a keepalive request."
|
|
2854
|
+
},
|
|
2855
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | keyboardLock": {
|
|
2856
|
+
"message": "Pages that use Keyboard lock are not currently eligible for back/forward cache."
|
|
2857
|
+
},
|
|
2858
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | loading": {
|
|
2859
|
+
"message": "The page did not finish loading before navigating away."
|
|
2860
|
+
},
|
|
2861
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoCache": {
|
|
2862
|
+
"message": "Pages whose main resource has cache-control:no-cache cannot enter back/forward cache."
|
|
2863
|
+
},
|
|
2864
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | mainResourceHasCacheControlNoStore": {
|
|
2865
|
+
"message": "Pages whose main resource has cache-control:no-store cannot enter back/forward cache."
|
|
2866
|
+
},
|
|
2867
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | navigationCancelledWhileRestoring": {
|
|
2868
|
+
"message": "Navigation was cancelled before the page could be restored from back/forward cache."
|
|
2869
|
+
},
|
|
2870
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkExceedsBufferLimit": {
|
|
2871
|
+
"message": "The page was evicted from the cache because an active network connection received too much data. Chrome limits the amount of data that a page may receive while cached."
|
|
2872
|
+
},
|
|
2873
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestDatapipeDrainedAsBytesConsumer": {
|
|
2874
|
+
"message": "Pages that have inflight fetch() or XHR are not currently eligible for back/forward cache."
|
|
2875
|
+
},
|
|
2876
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestRedirected": {
|
|
2877
|
+
"message": "The page was evicted from back/forward cache because an active network request involved a redirect."
|
|
2878
|
+
},
|
|
2879
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | networkRequestTimeout": {
|
|
2880
|
+
"message": "The page was evicted from the cache because a network connection was open too long. Chrome limits the amount of time that a page may receive data while cached."
|
|
2881
|
+
},
|
|
2882
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | noResponseHead": {
|
|
2883
|
+
"message": "Pages that do not have a valid response head cannot enter back/forward cache."
|
|
2884
|
+
},
|
|
2885
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | notMainFrame": {
|
|
2886
|
+
"message": "Navigation happened in a frame other than the main frame."
|
|
2887
|
+
},
|
|
2888
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingIndexedDBTransaction": {
|
|
2889
|
+
"message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
|
|
2890
|
+
},
|
|
2891
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestDirectSocket": {
|
|
2892
|
+
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
2893
|
+
},
|
|
2894
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestFetch": {
|
|
2895
|
+
"message": "Pages with an in-flight fetch network request are not currently eligible for back/forward cache."
|
|
2896
|
+
},
|
|
2897
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestOthers": {
|
|
2898
|
+
"message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
|
|
2899
|
+
},
|
|
2900
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | outstandingNetworkRequestXHR": {
|
|
2901
|
+
"message": "Pages with an in-flight XHR network request are not currently eligible for back/forward cache."
|
|
2902
|
+
},
|
|
2903
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | paymentManager": {
|
|
2904
|
+
"message": "Pages that use PaymentManager are not currently eligible for back/forward cache."
|
|
2905
|
+
},
|
|
2906
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | pictureInPicture": {
|
|
2907
|
+
"message": "Pages that use Picture-in-Picture are not currently eligible for back/forward cache."
|
|
2908
|
+
},
|
|
2909
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | printing": {
|
|
2910
|
+
"message": "Pages that show Printing UI are not currently eligible for back/forward cache."
|
|
2911
|
+
},
|
|
2912
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | relatedActiveContentsExist": {
|
|
2913
|
+
"message": "The page was opened using 'window.open()' and another tab has a reference to it, or the page opened a window."
|
|
2914
|
+
},
|
|
2915
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessCrashed": {
|
|
2916
|
+
"message": "The renderer process for the page in back/forward cache crashed."
|
|
2917
|
+
},
|
|
2918
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | rendererProcessKilled": {
|
|
2919
|
+
"message": "The renderer process for the page in back/forward cache was killed."
|
|
2920
|
+
},
|
|
2921
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedAudioCapturePermission": {
|
|
2922
|
+
"message": "Pages that have requested audio capture permissions are not currently eligible for back/forward cache."
|
|
2923
|
+
},
|
|
2924
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackForwardCacheBlockedSensors": {
|
|
2925
|
+
"message": "Pages that have requested sensor permissions are not currently eligible for back/forward cache."
|
|
2926
|
+
},
|
|
2927
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedBackgroundWorkPermission": {
|
|
2928
|
+
"message": "Pages that have requested background sync or fetch permissions are not currently eligible for back/forward cache."
|
|
2929
|
+
},
|
|
2930
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedMIDIPermission": {
|
|
2931
|
+
"message": "Pages that have requested MIDI permissions are not currently eligible for back/forward cache."
|
|
2932
|
+
},
|
|
2933
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedNotificationsPermission": {
|
|
2934
|
+
"message": "Pages that have requested notifications permissions are not currently eligible for back/forward cache."
|
|
2935
|
+
},
|
|
2936
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedStorageAccessGrant": {
|
|
2937
|
+
"message": "Pages that have requested storage access are not currently eligible for back/forward cache."
|
|
2938
|
+
},
|
|
2939
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | requestedVideoCapturePermission": {
|
|
2940
|
+
"message": "Pages that have requested video capture permissions are not currently eligible for back/forward cache."
|
|
2941
|
+
},
|
|
2942
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | schemeNotHTTPOrHTTPS": {
|
|
2943
|
+
"message": "Only pages whose URL scheme is HTTP / HTTPS can be cached."
|
|
2944
|
+
},
|
|
2945
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerClaim": {
|
|
2946
|
+
"message": "The page was claimed by a service worker while it is in back/forward cache."
|
|
2947
|
+
},
|
|
2948
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerPostMessage": {
|
|
2949
|
+
"message": "A service worker attempted to send the page in back/forward cache a MessageEvent."
|
|
2950
|
+
},
|
|
2951
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerUnregistration": {
|
|
2952
|
+
"message": "ServiceWorker was unregistered while a page was in back/forward cache."
|
|
2953
|
+
},
|
|
2954
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | serviceWorkerVersionActivation": {
|
|
2955
|
+
"message": "The page was evicted from back/forward cache due to a service worker activation."
|
|
2956
|
+
},
|
|
2957
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sessionRestored": {
|
|
2958
|
+
"message": "Chrome restarted and cleared the back/forward cache entries."
|
|
2959
|
+
},
|
|
2960
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | sharedWorker": {
|
|
2961
|
+
"message": "Pages that use SharedWorker are not currently eligible for back/forward cache."
|
|
2962
|
+
},
|
|
2963
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechRecognizer": {
|
|
2964
|
+
"message": "Pages that use SpeechRecognizer are not currently eligible for back/forward cache."
|
|
2965
|
+
},
|
|
2966
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | speechSynthesis": {
|
|
2967
|
+
"message": "Pages that use SpeechSynthesis are not currently eligible for back/forward cache."
|
|
2968
|
+
},
|
|
2969
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subframeIsNavigating": {
|
|
2970
|
+
"message": "An iframe on the page started a navigation that did not complete."
|
|
2971
|
+
},
|
|
2972
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoCache": {
|
|
2973
|
+
"message": "Pages whose subresource has cache-control:no-cache cannot enter back/forward cache."
|
|
2974
|
+
},
|
|
2975
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | subresourceHasCacheControlNoStore": {
|
|
2976
|
+
"message": "Pages whose subresource has cache-control:no-store cannot enter back/forward cache."
|
|
2977
|
+
},
|
|
2978
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeout": {
|
|
2979
|
+
"message": "The page exceeded the maximum time in back/forward cache and was expired."
|
|
2980
|
+
},
|
|
2981
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | timeoutPuttingInCache": {
|
|
2982
|
+
"message": "The page timed out entering back/forward cache (likely due to long-running pagehide handlers)."
|
|
2983
|
+
},
|
|
2984
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInMainFrame": {
|
|
2985
|
+
"message": "The page has an unload handler in the main frame."
|
|
2986
|
+
},
|
|
2987
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | unloadHandlerExistsInSubFrame": {
|
|
2988
|
+
"message": "The page has an unload handler in a sub frame."
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | userAgentOverrideDiffers": {
|
|
2991
|
+
"message": "Browser has changed the user agent override header."
|
|
2992
|
+
},
|
|
2993
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | wasGrantedMediaAccess": {
|
|
2994
|
+
"message": "Pages that have granted access to record video or audio are not currently eligible for back/forward cache."
|
|
2995
|
+
},
|
|
2996
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webDatabase": {
|
|
2997
|
+
"message": "Pages that use WebDatabase are not currently eligible for back/forward cache."
|
|
2998
|
+
},
|
|
2999
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webHID": {
|
|
3000
|
+
"message": "Pages that use WebHID are not currently eligible for back/forward cache."
|
|
3001
|
+
},
|
|
3002
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webLocks": {
|
|
3003
|
+
"message": "Pages that use WebLocks are not currently eligible for back/forward cache."
|
|
3004
|
+
},
|
|
3005
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webNfc": {
|
|
3006
|
+
"message": "Pages that use WebNfc are not currently eligible for back/forwad cache."
|
|
3007
|
+
},
|
|
3008
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webOTPService": {
|
|
3009
|
+
"message": "Pages that use WebOTPService are not currently eligible for bfcache."
|
|
3010
|
+
},
|
|
3011
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTC": {
|
|
3012
|
+
"message": "Pages with WebRTC cannot enter back/forward cache."
|
|
3013
|
+
},
|
|
3014
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webRTCSticky": {
|
|
3015
|
+
"message": "Back/forward cache is disabled because WebRTC has been used."
|
|
3016
|
+
},
|
|
3017
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webShare": {
|
|
3018
|
+
"message": "Pages that use WebShare are not currently eligible for back/forwad cache."
|
|
3019
|
+
},
|
|
3020
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocket": {
|
|
3021
|
+
"message": "Pages with WebSocket cannot enter back/forward cache."
|
|
3022
|
+
},
|
|
3023
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webSocketSticky": {
|
|
3024
|
+
"message": "Back/forward cache is disabled because WebSocket has been used."
|
|
3025
|
+
},
|
|
3026
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransport": {
|
|
3027
|
+
"message": "Pages with WebTransport cannot enter back/forward cache."
|
|
3028
|
+
},
|
|
3029
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webTransportSticky": {
|
|
3030
|
+
"message": "Back/forward cache is disabled because WebTransport has been used."
|
|
3031
|
+
},
|
|
3032
|
+
"node_modules/@paulirish/trace_engine/panels/application/components/BackForwardCacheStrings.js | webXR": {
|
|
3033
|
+
"message": "Pages that use WebXR are not currently eligible for back/forward cache."
|
|
3034
|
+
},
|
|
2993
3035
|
"node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
|
|
2994
3036
|
"message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
|
|
2995
3037
|
},
|