lighthouse 8.6.0 → 9.0.0-dev.20211118

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.
Files changed (210) hide show
  1. package/changelog.md +121 -0
  2. package/dist/report/bundle.esm.js +6009 -0
  3. package/dist/report/flow.js +98 -25
  4. package/dist/report/standalone.js +41 -35
  5. package/flow-report/.eslintrc.cjs +2 -0
  6. package/flow-report/assets/standalone-flow-template.html +3 -4
  7. package/flow-report/assets/styles.css +108 -31
  8. package/flow-report/src/app.tsx +25 -28
  9. package/flow-report/src/common.tsx +28 -15
  10. package/flow-report/src/header.tsx +12 -13
  11. package/flow-report/src/help-dialog.tsx +3 -4
  12. package/flow-report/src/i18n/i18n.tsx +57 -16
  13. package/flow-report/src/i18n/ui-strings.js +50 -0
  14. package/flow-report/src/icons.tsx +36 -8
  15. package/flow-report/src/sidebar/flow.tsx +3 -3
  16. package/flow-report/src/sidebar/sidebar.tsx +35 -14
  17. package/flow-report/src/summary/category.tsx +97 -24
  18. package/flow-report/src/summary/summary.tsx +21 -14
  19. package/flow-report/src/topbar.tsx +13 -12
  20. package/flow-report/src/util.ts +61 -27
  21. package/flow-report/src/wrappers/category-score.tsx +9 -27
  22. package/flow-report/src/wrappers/markdown.tsx +18 -0
  23. package/flow-report/src/wrappers/report.tsx +26 -37
  24. package/flow-report/standalone-flow.tsx +5 -4
  25. package/flow-report/test/common-test.tsx +32 -17
  26. package/flow-report/test/flow-report-pptr-test.ts +46 -0
  27. package/flow-report/test/header-test.tsx +6 -6
  28. package/flow-report/test/setup/env-setup.ts +11 -5
  29. package/flow-report/test/sidebar/sidebar-test.tsx +43 -1
  30. package/flow-report/test/summary/category-test.tsx +114 -21
  31. package/flow-report/test/summary/summary-test.tsx +4 -7
  32. package/flow-report/test/topbar-test.tsx +15 -14
  33. package/flow-report/test/util-test.tsx +69 -11
  34. package/flow-report/test/wrappers/category-score-test.tsx +84 -0
  35. package/flow-report/test/wrappers/markdown-test.tsx +17 -0
  36. package/flow-report/tsconfig.json +1 -0
  37. package/jest.config.js +4 -2
  38. package/lighthouse-cli/.eslintrc.cjs +2 -0
  39. package/lighthouse-cli/cli-flags.js +1 -1
  40. package/lighthouse-cli/run.js +1 -1
  41. package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +4 -2
  42. package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +1 -1
  43. package/lighthouse-cli/test/smokehouse/smokehouse.js +1 -1
  44. package/lighthouse-core/audits/accessibility/axe-audit.js +7 -1
  45. package/lighthouse-core/audits/audit.js +1 -1
  46. package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +2 -0
  47. package/lighthouse-core/audits/byte-efficiency/modern-image-formats.js +4 -2
  48. package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +11 -10
  49. package/lighthouse-core/audits/byte-efficiency/uses-optimized-images.js +5 -3
  50. package/lighthouse-core/audits/byte-efficiency/uses-responsive-images-snapshot.js +2 -1
  51. package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +2 -1
  52. package/lighthouse-core/audits/deprecations.js +33 -11
  53. package/lighthouse-core/audits/dobetterweb/uses-http2.js +27 -11
  54. package/lighthouse-core/audits/errors-in-console.js +0 -2
  55. package/lighthouse-core/audits/image-aspect-ratio.js +5 -5
  56. package/lighthouse-core/audits/image-size-responsive.js +6 -6
  57. package/lighthouse-core/audits/installable-manifest.js +16 -7
  58. package/lighthouse-core/audits/preload-lcp-image.js +7 -5
  59. package/lighthouse-core/audits/script-treemap-data.js +1 -1
  60. package/lighthouse-core/audits/unsized-images.js +2 -3
  61. package/lighthouse-core/computed/image-records.js +4 -3
  62. package/lighthouse-core/computed/metrics/lantern-total-blocking-time.js +3 -4
  63. package/lighthouse-core/computed/metrics/tbt-utils.js +57 -0
  64. package/lighthouse-core/computed/metrics/total-blocking-time.js +3 -53
  65. package/lighthouse-core/computed/resource-summary.js +1 -1
  66. package/lighthouse-core/config/config-helpers.js +21 -10
  67. package/lighthouse-core/config/constants.js +3 -4
  68. package/lighthouse-core/config/default-config.js +61 -71
  69. package/lighthouse-core/fraggle-rock/config/config.js +1 -1
  70. package/lighthouse-core/fraggle-rock/config/default-config.js +4 -5
  71. package/lighthouse-core/fraggle-rock/gather/base-gatherer.js +6 -1
  72. package/lighthouse-core/fraggle-rock/gather/session.js +3 -4
  73. package/lighthouse-core/gather/connections/cri.js +1 -1
  74. package/lighthouse-core/gather/driver/storage.js +0 -1
  75. package/lighthouse-core/gather/driver.js +3 -7
  76. package/lighthouse-core/gather/fetcher.js +4 -7
  77. package/lighthouse-core/gather/gather-runner.js +29 -6
  78. package/lighthouse-core/gather/gatherers/accessibility.js +27 -0
  79. package/lighthouse-core/gather/gatherers/dobetterweb/response-compression.js +1 -0
  80. package/lighthouse-core/gather/gatherers/image-elements.js +0 -3
  81. package/lighthouse-core/gather/gatherers/inspector-issues.js +5 -0
  82. package/lighthouse-core/lib/asset-saver.js +7 -4
  83. package/lighthouse-core/lib/emulation.js +45 -1
  84. package/lighthouse-core/lib/i18n/i18n.js +19 -8
  85. package/lighthouse-core/lib/lh-env.js +2 -0
  86. package/lighthouse-core/lib/page-functions.js +2 -1
  87. package/lighthouse-core/lib/proto-preprocessor.js +14 -2
  88. package/lighthouse-core/lib/statistics.js +26 -39
  89. package/lighthouse-core/lib/tappable-rects.js +8 -15
  90. package/lighthouse-core/lib/url-shim.js +1 -1
  91. package/lighthouse-core/runner.js +1 -1
  92. package/lighthouse-core/util-commonjs.js +65 -46
  93. package/package.json +27 -17
  94. package/readme.md +3 -3
  95. package/report/.eslintrc.cjs +2 -0
  96. package/report/README.md +1 -1
  97. package/report/assets/standalone-template.html +2 -3
  98. package/report/assets/styles.css +362 -256
  99. package/report/assets/templates.html +21 -76
  100. package/report/clients/bundle.js +1 -0
  101. package/report/clients/standalone.js +6 -15
  102. package/report/generator/README.md +1 -1
  103. package/report/renderer/api.js +66 -0
  104. package/report/renderer/category-renderer.js +76 -22
  105. package/report/renderer/components.js +59 -110
  106. package/report/renderer/crc-details-renderer.js +15 -12
  107. package/report/renderer/dom.js +16 -1
  108. package/report/renderer/drop-down-menu.js +2 -2
  109. package/report/renderer/element-screenshot-renderer.js +8 -8
  110. package/report/renderer/features-util.js +1 -1
  111. package/report/renderer/open-tab.js +9 -3
  112. package/report/renderer/performance-category-renderer.js +55 -34
  113. package/report/renderer/pwa-category-renderer.js +0 -10
  114. package/report/renderer/report-renderer.js +92 -44
  115. package/report/renderer/report-ui-features.js +36 -33
  116. package/report/renderer/swap-locale-feature.js +3 -3
  117. package/report/renderer/topbar-features.js +53 -48
  118. package/report/renderer/util.js +66 -46
  119. package/report/test/clients/bundle-test.js +70 -0
  120. package/report/test/renderer/category-renderer-test.js +76 -3
  121. package/report/test/renderer/i18n-test.js +0 -7
  122. package/report/test/renderer/performance-category-renderer-test.js +51 -14
  123. package/report/test/renderer/pwa-category-renderer-test.js +6 -6
  124. package/report/test/renderer/report-renderer-axe-test.js +11 -13
  125. package/report/test/renderer/report-renderer-test.js +52 -22
  126. package/report/test/renderer/report-ui-features-test.js +20 -10
  127. package/report/test/renderer/text-encoding-test.js +1 -1
  128. package/report/test/renderer/util-test.js +35 -31
  129. package/report/test-assets/faux-psi-template.html +3 -11
  130. package/report/test-assets/faux-psi.js +26 -22
  131. package/report/types/html-renderer.d.ts +2 -0
  132. package/report/types/report-renderer.d.ts +28 -0
  133. package/shared/localization/format.js +64 -30
  134. package/shared/localization/locales/ar-XB.json +72 -75
  135. package/shared/localization/locales/ar.json +72 -75
  136. package/shared/localization/locales/bg.json +72 -75
  137. package/shared/localization/locales/ca.json +72 -75
  138. package/shared/localization/locales/cs.json +89 -92
  139. package/shared/localization/locales/da.json +72 -75
  140. package/shared/localization/locales/de.json +89 -92
  141. package/shared/localization/locales/el.json +72 -75
  142. package/shared/localization/locales/en-GB.json +72 -75
  143. package/shared/localization/locales/en-US.json +78 -75
  144. package/shared/localization/locales/en-XA.json +72 -75
  145. package/shared/localization/locales/en-XL.json +78 -75
  146. package/shared/localization/locales/es-419.json +90 -93
  147. package/shared/localization/locales/es.json +90 -93
  148. package/shared/localization/locales/fi.json +72 -75
  149. package/shared/localization/locales/fil.json +72 -75
  150. package/shared/localization/locales/fr.json +89 -92
  151. package/shared/localization/locales/he.json +73 -76
  152. package/shared/localization/locales/hi.json +72 -75
  153. package/shared/localization/locales/hr.json +72 -75
  154. package/shared/localization/locales/hu.json +89 -92
  155. package/shared/localization/locales/id.json +89 -92
  156. package/shared/localization/locales/it.json +89 -92
  157. package/shared/localization/locales/ja.json +89 -92
  158. package/shared/localization/locales/ko.json +89 -92
  159. package/shared/localization/locales/lt.json +89 -92
  160. package/shared/localization/locales/lv.json +95 -98
  161. package/shared/localization/locales/nl.json +89 -92
  162. package/shared/localization/locales/no.json +72 -75
  163. package/shared/localization/locales/pl.json +72 -75
  164. package/shared/localization/locales/pt-PT.json +72 -75
  165. package/shared/localization/locales/pt.json +89 -92
  166. package/shared/localization/locales/ro.json +90 -93
  167. package/shared/localization/locales/ru.json +89 -92
  168. package/shared/localization/locales/sk.json +89 -92
  169. package/shared/localization/locales/sl.json +89 -92
  170. package/shared/localization/locales/sr-Latn.json +89 -92
  171. package/shared/localization/locales/sr.json +89 -92
  172. package/shared/localization/locales/sv.json +72 -75
  173. package/shared/localization/locales/ta.json +89 -92
  174. package/shared/localization/locales/te.json +89 -92
  175. package/shared/localization/locales/th.json +89 -92
  176. package/shared/localization/locales/tr.json +89 -92
  177. package/shared/localization/locales/uk.json +92 -95
  178. package/shared/localization/locales/vi.json +89 -92
  179. package/shared/localization/locales/zh-HK.json +89 -92
  180. package/shared/localization/locales/zh-TW.json +89 -92
  181. package/shared/localization/locales/zh.json +89 -92
  182. package/shared/localization/locales.js +6 -0
  183. package/shared/test/localization/format-test.js +45 -9
  184. package/shared/test/localization/swap-locale-test.js +0 -12
  185. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +19 -11
  186. package/third-party/chromium-synchronization/installability-errors-test.js +3 -2
  187. package/third-party/download-content-shell/download-content-shell.js +2 -2
  188. package/third-party/download-content-shell/utils.js +0 -24
  189. package/third-party/snyk/snapshot.json +4 -1
  190. package/tsconfig-all.json +2 -2
  191. package/tsconfig.json +0 -1
  192. package/types/artifacts.d.ts +7 -7
  193. package/types/enquirer.d.ts +3 -1
  194. package/types/lhr/audit-details.d.ts +6 -5
  195. package/types/lhr/flow.d.ts +3 -2
  196. package/types/lhr/lhr.d.ts +1 -1
  197. package/types/node.d.ts +5 -5
  198. package/types/rollup-plugin-postprocess.d.ts +10 -0
  199. package/flow-report/src/wrappers/report-renderer.tsx +0 -46
  200. package/lighthouse-core/audits/dobetterweb/appcache-manifest.js +0 -67
  201. package/lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js +0 -96
  202. package/lighthouse-core/audits/redirects-http.js +0 -59
  203. package/lighthouse-core/gather/gatherers/dobetterweb/appcache.js +0 -34
  204. package/lighthouse-core/gather/gatherers/http-redirect.js +0 -46
  205. package/lighthouse-core/lib/i18n/locales/en-US.ctc.json +0 -6699
  206. package/lighthouse-core/lib/i18n/locales/en-XL.ctc.json +0 -6672
  207. package/report/clients/psi.js +0 -158
  208. package/report/test/clients/psi-test.js +0 -143
  209. package/shared/localization/locales/en-US.ctc.json +0 -6877
  210. package/shared/localization/locales/en-XL.ctc.json +0 -6852
@@ -59,6 +59,12 @@
59
59
  "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
60
  "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
61
61
  },
62
+ "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
+ "message": "Highest impact"
64
+ },
65
+ "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
+ "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
67
+ },
62
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
63
69
  "message": "Mobile"
64
70
  },
@@ -71,6 +77,15 @@
71
77
  "flow-report/src/i18n/ui-strings.js | navigationReport": {
72
78
  "message": "Navigation report"
73
79
  },
80
+ "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
+ "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
88
+ },
74
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
90
  "message": "Average"
76
91
  },
@@ -95,6 +110,9 @@
95
110
  "flow-report/src/i18n/ui-strings.js | snapshotReport": {
96
111
  "message": "Snapshot report"
97
112
  },
113
+ "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
+ "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
115
+ },
98
116
  "flow-report/src/i18n/ui-strings.js | summary": {
99
117
  "message": "Summary"
100
118
  },
@@ -107,6 +125,9 @@
107
125
  "flow-report/src/i18n/ui-strings.js | timespanReport": {
108
126
  "message": "Timespan report"
109
127
  },
128
+ "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
+ "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
130
+ },
110
131
  "flow-report/src/i18n/ui-strings.js | title": {
111
132
  "message": "Lighthouse user flow report"
112
133
  },
@@ -743,18 +764,6 @@
743
764
  "lighthouse-core/audits/deprecations.js | title": {
744
765
  "message": "Avoids deprecated APIs"
745
766
  },
746
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
747
- "message": "Application cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
748
- },
749
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
750
- "message": "Found '{AppCacheManifest}'"
751
- },
752
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
753
- "message": "Uses application cache"
754
- },
755
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
756
- "message": "Avoids application cache"
757
- },
758
767
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
759
768
  "message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1,024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
760
769
  },
@@ -812,21 +821,6 @@
812
821
  "lighthouse-core/audits/dobetterweb/dom-size.js | title": {
813
822
  "message": "Avoids an excessive DOM size"
814
823
  },
815
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
816
- "message": "Failing anchors"
817
- },
818
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
819
- "message": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://web.dev/external-anchors-use-rel-noopener/)."
820
- },
821
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
822
- "message": "Links to cross-origin destinations are unsafe"
823
- },
824
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
825
- "message": "Links to cross-origin destinations are safe"
826
- },
827
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
828
- "message": "Unable to determine the destination for anchor ({anchorHTML}). If not used as a hyperlink, consider removing target=_blank."
829
- },
830
824
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
831
825
  "message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://web.dev/geolocation-on-start/)."
832
826
  },
@@ -1277,15 +1271,6 @@
1277
1271
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1272
  "message": "Preload largest contentful paint image"
1279
1273
  },
1280
- "lighthouse-core/audits/redirects-http.js | description": {
1281
- "message": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://web.dev/redirects-http/)."
1282
- },
1283
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
- "message": "Does not redirect HTTP traffic to HTTPS"
1285
- },
1286
- "lighthouse-core/audits/redirects-http.js | title": {
1287
- "message": "Redirects HTTP traffic to HTTPS"
1288
- },
1289
1274
  "lighthouse-core/audits/redirects.js | description": {
1290
1275
  "message": "Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/)."
1291
1276
  },
@@ -1776,7 +1761,7 @@
1776
1761
  "message": "These checks are required by the baseline [PWA checklist](https://developers.google.com/web/progressive-web-apps/checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
1777
1762
  },
1778
1763
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1779
- "message": "progressive web app"
1764
+ "message": "PWA"
1780
1765
  },
1781
1766
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1782
1767
  "message": "Installable"
@@ -2078,30 +2063,6 @@
2078
2063
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
2079
2064
  "message": "The URL that you have provided appears to be invalid."
2080
2065
  },
2081
- "lighthouse-treemap/app/src/util.js | allLabel": {
2082
- "message": "All"
2083
- },
2084
- "lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
2085
- "message": "All scripts"
2086
- },
2087
- "lighthouse-treemap/app/src/util.js | coverageColumnName": {
2088
- "message": "Coverage"
2089
- },
2090
- "lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
2091
- "message": "Duplicate modules"
2092
- },
2093
- "lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
2094
- "message": "Resource bytes"
2095
- },
2096
- "lighthouse-treemap/app/src/util.js | tableColumnName": {
2097
- "message": "Name"
2098
- },
2099
- "lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
2100
- "message": "Toggle table"
2101
- },
2102
- "lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
2103
- "message": "Unused bytes"
2104
- },
2105
2066
  "node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
2106
2067
  "message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimise CPU usage when the content is offscreen."
2107
2068
  },
@@ -2369,6 +2330,9 @@
2369
2330
  "report/renderer/util.js | calculatorLink": {
2370
2331
  "message": "See calculator."
2371
2332
  },
2333
+ "report/renderer/util.js | collapseView": {
2334
+ "message": "Collapse view"
2335
+ },
2372
2336
  "report/renderer/util.js | crcInitialNavigation": {
2373
2337
  "message": "Initial Navigation"
2374
2338
  },
@@ -2405,9 +2369,15 @@
2405
2369
  "report/renderer/util.js | errorMissingAuditInfo": {
2406
2370
  "message": "Report error: no audit information"
2407
2371
  },
2372
+ "report/renderer/util.js | expandView": {
2373
+ "message": "Expand view"
2374
+ },
2408
2375
  "report/renderer/util.js | footerIssue": {
2409
2376
  "message": "File an issue"
2410
2377
  },
2378
+ "report/renderer/util.js | hide": {
2379
+ "message": "Hide"
2380
+ },
2411
2381
  "report/renderer/util.js | labDataTitle": {
2412
2382
  "message": "Lab Data"
2413
2383
  },
@@ -2429,6 +2399,12 @@
2429
2399
  "report/renderer/util.js | passedAuditsGroupTitle": {
2430
2400
  "message": "Passed audits"
2431
2401
  },
2402
+ "report/renderer/util.js | runtimeAnalysisWindow": {
2403
+ "message": "Initial page load"
2404
+ },
2405
+ "report/renderer/util.js | runtimeCustom": {
2406
+ "message": "Custom throttling"
2407
+ },
2432
2408
  "report/renderer/util.js | runtimeDesktopEmulation": {
2433
2409
  "message": "Emulated desktop"
2434
2410
  },
@@ -2447,33 +2423,30 @@
2447
2423
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2448
2424
  "message": "CPU throttling"
2449
2425
  },
2450
- "report/renderer/util.js | runtimeSettingsChannel": {
2451
- "message": "Channel"
2452
- },
2453
2426
  "report/renderer/util.js | runtimeSettingsDevice": {
2454
2427
  "message": "Device"
2455
2428
  },
2456
- "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
- "message": "Fetch time"
2458
- },
2459
2429
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2460
2430
  "message": "Network throttling"
2461
2431
  },
2462
- "report/renderer/util.js | runtimeSettingsTitle": {
2463
- "message": "Runtime settings"
2464
- },
2465
- "report/renderer/util.js | runtimeSettingsUA": {
2466
- "message": "User agent (host)"
2467
- },
2468
2432
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2469
2433
  "message": "User agent (network)"
2470
2434
  },
2471
- "report/renderer/util.js | runtimeSettingsUrl": {
2472
- "message": "URL"
2435
+ "report/renderer/util.js | runtimeSingleLoad": {
2436
+ "message": "Single page load"
2437
+ },
2438
+ "report/renderer/util.js | runtimeSingleLoadTooltip": {
2439
+ "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2440
+ },
2441
+ "report/renderer/util.js | runtimeSlow4g": {
2442
+ "message": "Slow 4G throttling"
2473
2443
  },
2474
2444
  "report/renderer/util.js | runtimeUnknown": {
2475
2445
  "message": "Unknown"
2476
2446
  },
2447
+ "report/renderer/util.js | show": {
2448
+ "message": "Show"
2449
+ },
2477
2450
  "report/renderer/util.js | showRelevantAudits": {
2478
2451
  "message": "Show audits relevant to:"
2479
2452
  },
@@ -2503,5 +2476,29 @@
2503
2476
  },
2504
2477
  "report/renderer/util.js | warningHeader": {
2505
2478
  "message": "Warnings: "
2479
+ },
2480
+ "treemap/app/src/util.js | allLabel": {
2481
+ "message": "All"
2482
+ },
2483
+ "treemap/app/src/util.js | allScriptsDropdownLabel": {
2484
+ "message": "All scripts"
2485
+ },
2486
+ "treemap/app/src/util.js | coverageColumnName": {
2487
+ "message": "Coverage"
2488
+ },
2489
+ "treemap/app/src/util.js | duplicateModulesLabel": {
2490
+ "message": "Duplicate modules"
2491
+ },
2492
+ "treemap/app/src/util.js | resourceBytesLabel": {
2493
+ "message": "Resource bytes"
2494
+ },
2495
+ "treemap/app/src/util.js | tableColumnName": {
2496
+ "message": "Name"
2497
+ },
2498
+ "treemap/app/src/util.js | toggleTableButtonLabel": {
2499
+ "message": "Toggle table"
2500
+ },
2501
+ "treemap/app/src/util.js | unusedBytesLabel": {
2502
+ "message": "Unused bytes"
2506
2503
  }
2507
2504
  }
@@ -59,6 +59,12 @@
59
59
  "flow-report/src/i18n/ui-strings.js | helpUseCaseTimespan2": {
60
60
  "message": "Discover performance opportunities to improve the experience for long-lived pages and single-page applications."
61
61
  },
62
+ "flow-report/src/i18n/ui-strings.js | highestImpact": {
63
+ "message": "Highest impact"
64
+ },
65
+ "flow-report/src/i18n/ui-strings.js | informativeAuditCount": {
66
+ "message": "{numInformative, plural,\n =1 {{numInformative} informative audit}\n other {{numInformative} informative audits}\n }"
67
+ },
62
68
  "flow-report/src/i18n/ui-strings.js | mobile": {
63
69
  "message": "Mobile"
64
70
  },
@@ -71,6 +77,15 @@
71
77
  "flow-report/src/i18n/ui-strings.js | navigationReport": {
72
78
  "message": "Navigation report"
73
79
  },
80
+ "flow-report/src/i18n/ui-strings.js | navigationReportCount": {
81
+ "message": "{numNavigation, plural,\n =1 {{numNavigation} navigation report}\n other {{numNavigation} navigation reports}\n }"
82
+ },
83
+ "flow-report/src/i18n/ui-strings.js | passableAuditCount": {
84
+ "message": "{numPassableAudits, plural,\n =1 {{numPassableAudits} passable audit}\n other {{numPassableAudits} passable audits}\n }"
85
+ },
86
+ "flow-report/src/i18n/ui-strings.js | passedAuditCount": {
87
+ "message": "{numPassed, plural,\n =1 {{numPassed} audit passed}\n other {{numPassed} audits passed}\n }"
88
+ },
74
89
  "flow-report/src/i18n/ui-strings.js | ratingAverage": {
75
90
  "message": "Average"
76
91
  },
@@ -95,6 +110,9 @@
95
110
  "flow-report/src/i18n/ui-strings.js | snapshotReport": {
96
111
  "message": "Snapshot report"
97
112
  },
113
+ "flow-report/src/i18n/ui-strings.js | snapshotReportCount": {
114
+ "message": "{numSnapshot, plural,\n =1 {{numSnapshot} snapshot report}\n other {{numSnapshot} snapshot reports}\n }"
115
+ },
98
116
  "flow-report/src/i18n/ui-strings.js | summary": {
99
117
  "message": "Summary"
100
118
  },
@@ -107,6 +125,9 @@
107
125
  "flow-report/src/i18n/ui-strings.js | timespanReport": {
108
126
  "message": "Timespan report"
109
127
  },
128
+ "flow-report/src/i18n/ui-strings.js | timespanReportCount": {
129
+ "message": "{numTimespan, plural,\n =1 {{numTimespan} timespan report}\n other {{numTimespan} timespan reports}\n }"
130
+ },
110
131
  "flow-report/src/i18n/ui-strings.js | title": {
111
132
  "message": "Lighthouse User Flow Report"
112
133
  },
@@ -743,18 +764,6 @@
743
764
  "lighthouse-core/audits/deprecations.js | title": {
744
765
  "message": "Avoids deprecated APIs"
745
766
  },
746
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | description": {
747
- "message": "Application Cache is deprecated. [Learn more](https://web.dev/appcache-manifest/)."
748
- },
749
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | displayValue": {
750
- "message": "Found \"{AppCacheManifest}\""
751
- },
752
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | failureTitle": {
753
- "message": "Uses Application Cache"
754
- },
755
- "lighthouse-core/audits/dobetterweb/appcache-manifest.js | title": {
756
- "message": "Avoids Application Cache"
757
- },
758
767
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
759
768
  "message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
760
769
  },
@@ -812,21 +821,6 @@
812
821
  "lighthouse-core/audits/dobetterweb/dom-size.js | title": {
813
822
  "message": "Avoids an excessive DOM size"
814
823
  },
815
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | columnFailingAnchors": {
816
- "message": "Failing Anchors"
817
- },
818
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | description": {
819
- "message": "Add `rel=\"noopener\"` or `rel=\"noreferrer\"` to any external links to improve performance and prevent security vulnerabilities. [Learn more](https://web.dev/external-anchors-use-rel-noopener/)."
820
- },
821
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | failureTitle": {
822
- "message": "Links to cross-origin destinations are unsafe"
823
- },
824
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | title": {
825
- "message": "Links to cross-origin destinations are safe"
826
- },
827
- "lighthouse-core/audits/dobetterweb/external-anchors-use-rel-noopener.js | warning": {
828
- "message": "Unable to determine the destination for anchor ({anchorHTML}). If not used as a hyperlink, consider removing target=_blank."
829
- },
830
824
  "lighthouse-core/audits/dobetterweb/geolocation-on-start.js | description": {
831
825
  "message": "Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. [Learn more](https://web.dev/geolocation-on-start/)."
832
826
  },
@@ -1058,6 +1052,9 @@
1058
1052
  "lighthouse-core/audits/installable-manifest.js | not-offline-capable": {
1059
1053
  "message": "Page does not work offline"
1060
1054
  },
1055
+ "lighthouse-core/audits/installable-manifest.js | pipeline-restarted": {
1056
+ "message": "PWA has been uninstalled and installability checks resetting."
1057
+ },
1061
1058
  "lighthouse-core/audits/installable-manifest.js | platform-not-supported-on-android": {
1062
1059
  "message": "The specified application platform is not supported on Android"
1063
1060
  },
@@ -1067,6 +1064,9 @@
1067
1064
  "lighthouse-core/audits/installable-manifest.js | prefer-related-applications-only-beta-stable": {
1068
1065
  "message": "prefer_related_applications is only supported on Chrome Beta and Stable channels on Android."
1069
1066
  },
1067
+ "lighthouse-core/audits/installable-manifest.js | protocol-timeout": {
1068
+ "message": "Lighthouse could not determine if there was a service worker. Please try with a newer version of Chrome."
1069
+ },
1070
1070
  "lighthouse-core/audits/installable-manifest.js | start-url-not-valid": {
1071
1071
  "message": "Manifest start URL is not valid"
1072
1072
  },
@@ -1277,15 +1277,6 @@
1277
1277
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1278
1278
  "message": "Preload Largest Contentful Paint image"
1279
1279
  },
1280
- "lighthouse-core/audits/redirects-http.js | description": {
1281
- "message": "If you've already set up HTTPS, make sure that you redirect all HTTP traffic to HTTPS in order to enable secure web features for all your users. [Learn more](https://web.dev/redirects-http/)."
1282
- },
1283
- "lighthouse-core/audits/redirects-http.js | failureTitle": {
1284
- "message": "Does not redirect HTTP traffic to HTTPS"
1285
- },
1286
- "lighthouse-core/audits/redirects-http.js | title": {
1287
- "message": "Redirects HTTP traffic to HTTPS"
1288
- },
1289
1280
  "lighthouse-core/audits/redirects.js | description": {
1290
1281
  "message": "Redirects introduce additional delays before the page can be loaded. [Learn more](https://web.dev/redirects/)."
1291
1282
  },
@@ -1776,7 +1767,7 @@
1776
1767
  "message": "These checks are required by the baseline [PWA Checklist](https://developers.google.com/web/progressive-web-apps/checklist) but are not automatically checked by Lighthouse. They do not affect your score but it's important that you verify them manually."
1777
1768
  },
1778
1769
  "lighthouse-core/config/default-config.js | pwaCategoryTitle": {
1779
- "message": "Progressive Web App"
1770
+ "message": "PWA"
1780
1771
  },
1781
1772
  "lighthouse-core/config/default-config.js | pwaInstallableGroupTitle": {
1782
1773
  "message": "Installable"
@@ -2078,30 +2069,6 @@
2078
2069
  "lighthouse-core/lib/lh-error.js | urlInvalid": {
2079
2070
  "message": "The URL you have provided appears to be invalid."
2080
2071
  },
2081
- "lighthouse-treemap/app/src/util.js | allLabel": {
2082
- "message": "All"
2083
- },
2084
- "lighthouse-treemap/app/src/util.js | allScriptsDropdownLabel": {
2085
- "message": "All Scripts"
2086
- },
2087
- "lighthouse-treemap/app/src/util.js | coverageColumnName": {
2088
- "message": "Coverage"
2089
- },
2090
- "lighthouse-treemap/app/src/util.js | duplicateModulesLabel": {
2091
- "message": "Duplicate Modules"
2092
- },
2093
- "lighthouse-treemap/app/src/util.js | resourceBytesLabel": {
2094
- "message": "Resource Bytes"
2095
- },
2096
- "lighthouse-treemap/app/src/util.js | tableColumnName": {
2097
- "message": "Name"
2098
- },
2099
- "lighthouse-treemap/app/src/util.js | toggleTableButtonLabel": {
2100
- "message": "Toggle Table"
2101
- },
2102
- "lighthouse-treemap/app/src/util.js | unusedBytesLabel": {
2103
- "message": "Unused Bytes"
2104
- },
2105
2072
  "node_modules/lighthouse-stack-packs/packs/amp.js | efficient-animated-content": {
2106
2073
  "message": "For animated content, use [`amp-anim`](https://amp.dev/documentation/components/amp-anim/) to minimize CPU usage when the content is offscreen."
2107
2074
  },
@@ -2369,6 +2336,9 @@
2369
2336
  "report/renderer/util.js | calculatorLink": {
2370
2337
  "message": "See calculator."
2371
2338
  },
2339
+ "report/renderer/util.js | collapseView": {
2340
+ "message": "Collapse view"
2341
+ },
2372
2342
  "report/renderer/util.js | crcInitialNavigation": {
2373
2343
  "message": "Initial Navigation"
2374
2344
  },
@@ -2405,9 +2375,15 @@
2405
2375
  "report/renderer/util.js | errorMissingAuditInfo": {
2406
2376
  "message": "Report error: no audit information"
2407
2377
  },
2378
+ "report/renderer/util.js | expandView": {
2379
+ "message": "Expand view"
2380
+ },
2408
2381
  "report/renderer/util.js | footerIssue": {
2409
2382
  "message": "File an issue"
2410
2383
  },
2384
+ "report/renderer/util.js | hide": {
2385
+ "message": "Hide"
2386
+ },
2411
2387
  "report/renderer/util.js | labDataTitle": {
2412
2388
  "message": "Lab Data"
2413
2389
  },
@@ -2429,6 +2405,12 @@
2429
2405
  "report/renderer/util.js | passedAuditsGroupTitle": {
2430
2406
  "message": "Passed audits"
2431
2407
  },
2408
+ "report/renderer/util.js | runtimeAnalysisWindow": {
2409
+ "message": "Initial page load"
2410
+ },
2411
+ "report/renderer/util.js | runtimeCustom": {
2412
+ "message": "Custom throttling"
2413
+ },
2432
2414
  "report/renderer/util.js | runtimeDesktopEmulation": {
2433
2415
  "message": "Emulated Desktop"
2434
2416
  },
@@ -2444,36 +2426,33 @@
2444
2426
  "report/renderer/util.js | runtimeSettingsBenchmark": {
2445
2427
  "message": "CPU/Memory Power"
2446
2428
  },
2447
- "report/renderer/util.js | runtimeSettingsChannel": {
2448
- "message": "Channel"
2449
- },
2450
2429
  "report/renderer/util.js | runtimeSettingsCPUThrottling": {
2451
2430
  "message": "CPU throttling"
2452
2431
  },
2453
2432
  "report/renderer/util.js | runtimeSettingsDevice": {
2454
2433
  "message": "Device"
2455
2434
  },
2456
- "report/renderer/util.js | runtimeSettingsFetchTime": {
2457
- "message": "Fetch Time"
2458
- },
2459
2435
  "report/renderer/util.js | runtimeSettingsNetworkThrottling": {
2460
2436
  "message": "Network throttling"
2461
2437
  },
2462
- "report/renderer/util.js | runtimeSettingsTitle": {
2463
- "message": "Runtime Settings"
2464
- },
2465
- "report/renderer/util.js | runtimeSettingsUA": {
2466
- "message": "User agent (host)"
2467
- },
2468
2438
  "report/renderer/util.js | runtimeSettingsUANetwork": {
2469
2439
  "message": "User agent (network)"
2470
2440
  },
2471
- "report/renderer/util.js | runtimeSettingsUrl": {
2472
- "message": "URL"
2441
+ "report/renderer/util.js | runtimeSingleLoad": {
2442
+ "message": "Single page load"
2443
+ },
2444
+ "report/renderer/util.js | runtimeSingleLoadTooltip": {
2445
+ "message": "This data is taken from a single page load, as opposed to field data summarizing many sessions."
2446
+ },
2447
+ "report/renderer/util.js | runtimeSlow4g": {
2448
+ "message": "Slow 4G throttling"
2473
2449
  },
2474
2450
  "report/renderer/util.js | runtimeUnknown": {
2475
2451
  "message": "Unknown"
2476
2452
  },
2453
+ "report/renderer/util.js | show": {
2454
+ "message": "Show"
2455
+ },
2477
2456
  "report/renderer/util.js | showRelevantAudits": {
2478
2457
  "message": "Show audits relevant to:"
2479
2458
  },
@@ -2503,5 +2482,29 @@
2503
2482
  },
2504
2483
  "report/renderer/util.js | warningHeader": {
2505
2484
  "message": "Warnings: "
2485
+ },
2486
+ "treemap/app/src/util.js | allLabel": {
2487
+ "message": "All"
2488
+ },
2489
+ "treemap/app/src/util.js | allScriptsDropdownLabel": {
2490
+ "message": "All Scripts"
2491
+ },
2492
+ "treemap/app/src/util.js | coverageColumnName": {
2493
+ "message": "Coverage"
2494
+ },
2495
+ "treemap/app/src/util.js | duplicateModulesLabel": {
2496
+ "message": "Duplicate Modules"
2497
+ },
2498
+ "treemap/app/src/util.js | resourceBytesLabel": {
2499
+ "message": "Resource Bytes"
2500
+ },
2501
+ "treemap/app/src/util.js | tableColumnName": {
2502
+ "message": "Name"
2503
+ },
2504
+ "treemap/app/src/util.js | toggleTableButtonLabel": {
2505
+ "message": "Toggle Table"
2506
+ },
2507
+ "treemap/app/src/util.js | unusedBytesLabel": {
2508
+ "message": "Unused Bytes"
2506
2509
  }
2507
2510
  }