lighthouse 9.5.0-dev.20220607 → 9.6.2

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 (262) hide show
  1. package/dist/report/bundle.esm.js +467 -520
  2. package/dist/report/flow.js +22 -22
  3. package/dist/report/standalone.js +19 -19
  4. package/flow-report/src/summary/category.tsx +1 -1
  5. package/flow-report/src/topbar.tsx +2 -10
  6. package/flow-report/src/util.ts +1 -1
  7. package/flow-report/test/topbar-test.tsx +8 -7
  8. package/jest.config.js +1 -1
  9. package/lighthouse-cli/.eslintrc.cjs +4 -3
  10. package/lighthouse-cli/bin.js +1 -0
  11. package/lighthouse-cli/cli-flags.js +4 -3
  12. package/lighthouse-cli/commands/commands.js +1 -0
  13. package/lighthouse-cli/commands/list-audits.js +1 -0
  14. package/lighthouse-cli/commands/list-locales.js +1 -0
  15. package/lighthouse-cli/commands/list-trace-categories.js +1 -0
  16. package/lighthouse-cli/index.js +1 -0
  17. package/lighthouse-cli/printer.js +1 -0
  18. package/lighthouse-cli/run.js +24 -9
  19. package/lighthouse-cli/sentry-prompt.js +1 -0
  20. package/lighthouse-cli/test/smokehouse/core-tests.js +1 -0
  21. package/lighthouse-cli/test/smokehouse/frontends/back-compat-util.js +1 -0
  22. package/lighthouse-cli/test/smokehouse/frontends/lib.js +1 -0
  23. package/lighthouse-cli/test/smokehouse/frontends/node.js +1 -0
  24. package/lighthouse-cli/test/smokehouse/frontends/smokehouse-bin.js +1 -0
  25. package/lighthouse-cli/test/smokehouse/lib/child-process-error.js +1 -0
  26. package/lighthouse-cli/test/smokehouse/lib/concurrent-mapper.js +1 -0
  27. package/lighthouse-cli/test/smokehouse/lib/local-console.js +1 -0
  28. package/lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js +23 -109
  29. package/lighthouse-cli/test/smokehouse/lighthouse-runners/cli.js +3 -2
  30. package/lighthouse-cli/test/smokehouse/lighthouse-runners/devtools.js +19 -28
  31. package/lighthouse-cli/test/smokehouse/report-assert.js +4 -3
  32. package/lighthouse-cli/test/smokehouse/smokehouse.js +1 -1
  33. package/lighthouse-cli/test/smokehouse/version-check-test.js +3 -0
  34. package/lighthouse-cli/test/smokehouse/version-check.js +1 -0
  35. package/lighthouse-core/audits/accessibility/accesskeys.js +1 -1
  36. package/lighthouse-core/audits/accessibility/aria-allowed-attr.js +1 -1
  37. package/lighthouse-core/audits/accessibility/aria-command-name.js +1 -1
  38. package/lighthouse-core/audits/accessibility/aria-hidden-body.js +1 -1
  39. package/lighthouse-core/audits/accessibility/aria-hidden-focus.js +1 -1
  40. package/lighthouse-core/audits/accessibility/aria-input-field-name.js +1 -1
  41. package/lighthouse-core/audits/accessibility/aria-meter-name.js +1 -1
  42. package/lighthouse-core/audits/accessibility/aria-progressbar-name.js +1 -1
  43. package/lighthouse-core/audits/accessibility/aria-required-attr.js +1 -1
  44. package/lighthouse-core/audits/accessibility/aria-required-children.js +1 -1
  45. package/lighthouse-core/audits/accessibility/aria-required-parent.js +1 -1
  46. package/lighthouse-core/audits/accessibility/aria-roles.js +1 -1
  47. package/lighthouse-core/audits/accessibility/aria-toggle-field-name.js +1 -1
  48. package/lighthouse-core/audits/accessibility/aria-tooltip-name.js +1 -1
  49. package/lighthouse-core/audits/accessibility/aria-treeitem-name.js +1 -1
  50. package/lighthouse-core/audits/accessibility/aria-valid-attr-value.js +1 -1
  51. package/lighthouse-core/audits/accessibility/aria-valid-attr.js +1 -1
  52. package/lighthouse-core/audits/accessibility/button-name.js +1 -1
  53. package/lighthouse-core/audits/accessibility/bypass.js +1 -1
  54. package/lighthouse-core/audits/accessibility/color-contrast.js +1 -1
  55. package/lighthouse-core/audits/accessibility/definition-list.js +1 -1
  56. package/lighthouse-core/audits/accessibility/dlitem.js +1 -1
  57. package/lighthouse-core/audits/accessibility/document-title.js +1 -1
  58. package/lighthouse-core/audits/accessibility/duplicate-id-active.js +1 -1
  59. package/lighthouse-core/audits/accessibility/duplicate-id-aria.js +1 -1
  60. package/lighthouse-core/audits/accessibility/form-field-multiple-labels.js +1 -1
  61. package/lighthouse-core/audits/accessibility/frame-title.js +1 -1
  62. package/lighthouse-core/audits/accessibility/heading-order.js +1 -1
  63. package/lighthouse-core/audits/accessibility/html-has-lang.js +1 -1
  64. package/lighthouse-core/audits/accessibility/html-lang-valid.js +1 -1
  65. package/lighthouse-core/audits/accessibility/image-alt.js +1 -1
  66. package/lighthouse-core/audits/accessibility/input-image-alt.js +1 -1
  67. package/lighthouse-core/audits/accessibility/label.js +1 -1
  68. package/lighthouse-core/audits/accessibility/link-name.js +1 -1
  69. package/lighthouse-core/audits/accessibility/list.js +1 -1
  70. package/lighthouse-core/audits/accessibility/listitem.js +5 -5
  71. package/lighthouse-core/audits/accessibility/meta-refresh.js +1 -1
  72. package/lighthouse-core/audits/accessibility/meta-viewport.js +1 -1
  73. package/lighthouse-core/audits/accessibility/object-alt.js +1 -1
  74. package/lighthouse-core/audits/accessibility/tabindex.js +1 -1
  75. package/lighthouse-core/audits/accessibility/td-headers-attr.js +1 -1
  76. package/lighthouse-core/audits/accessibility/th-has-data-cells.js +1 -1
  77. package/lighthouse-core/audits/accessibility/valid-lang.js +1 -1
  78. package/lighthouse-core/audits/accessibility/video-caption.js +1 -1
  79. package/lighthouse-core/audits/byte-efficiency/byte-efficiency-audit.js +1 -2
  80. package/lighthouse-core/audits/byte-efficiency/duplicated-javascript.js +12 -11
  81. package/lighthouse-core/audits/byte-efficiency/efficient-animated-content.js +1 -1
  82. package/lighthouse-core/audits/byte-efficiency/legacy-javascript.js +24 -22
  83. package/lighthouse-core/audits/byte-efficiency/offscreen-images.js +2 -3
  84. package/lighthouse-core/audits/byte-efficiency/render-blocking-resources.js +3 -2
  85. package/lighthouse-core/audits/byte-efficiency/unminified-css.js +5 -3
  86. package/lighthouse-core/audits/byte-efficiency/unminified-javascript.js +11 -10
  87. package/lighthouse-core/audits/byte-efficiency/unused-css-rules.js +1 -0
  88. package/lighthouse-core/audits/byte-efficiency/unused-javascript.js +8 -11
  89. package/lighthouse-core/audits/byte-efficiency/uses-responsive-images.js +1 -1
  90. package/lighthouse-core/audits/byte-efficiency/uses-text-compression.js +1 -1
  91. package/lighthouse-core/audits/deprecations.js +598 -8
  92. package/lighthouse-core/audits/diagnostics.js +3 -4
  93. package/lighthouse-core/audits/dobetterweb/doctype.js +9 -20
  94. package/lighthouse-core/audits/dobetterweb/geolocation-on-start.js +1 -1
  95. package/lighthouse-core/audits/dobetterweb/no-document-write.js +1 -1
  96. package/lighthouse-core/audits/dobetterweb/notification-on-start.js +1 -1
  97. package/lighthouse-core/audits/dobetterweb/uses-http2.js +1 -2
  98. package/lighthouse-core/audits/dobetterweb/uses-passive-event-listeners.js +1 -1
  99. package/lighthouse-core/audits/errors-in-console.js +2 -2
  100. package/lighthouse-core/audits/long-tasks.js +2 -3
  101. package/lighthouse-core/audits/metrics/first-contentful-paint-3g.js +2 -2
  102. package/lighthouse-core/audits/metrics/first-contentful-paint.js +2 -3
  103. package/lighthouse-core/audits/metrics/first-meaningful-paint.js +2 -3
  104. package/lighthouse-core/audits/metrics/interactive.js +2 -3
  105. package/lighthouse-core/audits/metrics/largest-contentful-paint.js +2 -3
  106. package/lighthouse-core/audits/metrics/max-potential-fid.js +2 -3
  107. package/lighthouse-core/audits/metrics/speed-index.js +2 -3
  108. package/lighthouse-core/audits/metrics/total-blocking-time.js +2 -3
  109. package/lighthouse-core/audits/metrics.js +2 -3
  110. package/lighthouse-core/audits/no-unload-listeners.js +15 -7
  111. package/lighthouse-core/audits/predictive-perf.js +1 -2
  112. package/lighthouse-core/audits/preload-lcp-image.js +3 -3
  113. package/lighthouse-core/audits/redirects.js +1 -1
  114. package/lighthouse-core/audits/script-treemap-data.js +45 -45
  115. package/lighthouse-core/audits/seo/http-status-code.js +4 -2
  116. package/lighthouse-core/audits/seo/link-text.js +0 -2
  117. package/lighthouse-core/audits/server-response-time.js +17 -2
  118. package/lighthouse-core/audits/service-worker.js +2 -7
  119. package/lighthouse-core/audits/timing-budget.js +2 -3
  120. package/lighthouse-core/audits/uses-rel-preconnect.js +1 -1
  121. package/lighthouse-core/audits/uses-rel-preload.js +1 -1
  122. package/lighthouse-core/audits/valid-source-maps.js +14 -12
  123. package/lighthouse-core/audits/violation-audit.js +1 -1
  124. package/lighthouse-core/audits/work-during-interaction.js +2 -2
  125. package/lighthouse-core/computed/critical-request-chains.js +9 -5
  126. package/lighthouse-core/computed/js-bundles.js +11 -11
  127. package/lighthouse-core/computed/main-resource.js +2 -3
  128. package/lighthouse-core/computed/metrics/first-contentful-paint-all-frames.js +1 -1
  129. package/lighthouse-core/computed/metrics/first-contentful-paint.js +1 -1
  130. package/lighthouse-core/computed/metrics/first-meaningful-paint.js +1 -1
  131. package/lighthouse-core/computed/metrics/interactive.js +1 -1
  132. package/lighthouse-core/computed/metrics/lantern-first-contentful-paint.js +1 -1
  133. package/lighthouse-core/computed/metrics/lantern-first-meaningful-paint.js +1 -1
  134. package/lighthouse-core/computed/metrics/lantern-interactive.js +1 -1
  135. package/lighthouse-core/computed/metrics/lantern-largest-contentful-paint.js +1 -1
  136. package/lighthouse-core/computed/metrics/lantern-max-potential-fid.js +1 -1
  137. package/lighthouse-core/computed/metrics/lantern-metric.js +5 -3
  138. package/lighthouse-core/computed/metrics/lantern-speed-index.js +1 -1
  139. package/lighthouse-core/computed/metrics/lantern-total-blocking-time.js +1 -1
  140. package/lighthouse-core/computed/metrics/largest-contentful-paint-all-frames.js +1 -1
  141. package/lighthouse-core/computed/metrics/largest-contentful-paint.js +1 -1
  142. package/lighthouse-core/computed/metrics/max-potential-fid.js +1 -1
  143. package/lighthouse-core/computed/metrics/metric.js +0 -1
  144. package/lighthouse-core/computed/metrics/speed-index.js +1 -1
  145. package/lighthouse-core/computed/metrics/timing-summary.js +6 -13
  146. package/lighthouse-core/computed/metrics/total-blocking-time.js +1 -1
  147. package/lighthouse-core/computed/module-duplication.js +5 -6
  148. package/lighthouse-core/computed/page-dependency-graph.js +28 -55
  149. package/lighthouse-core/computed/resource-summary.js +5 -5
  150. package/lighthouse-core/computed/unused-css.js +7 -6
  151. package/lighthouse-core/computed/unused-javascript-summary.js +36 -16
  152. package/lighthouse-core/config/budget.js +2 -2
  153. package/lighthouse-core/config/default-config.js +1 -2
  154. package/lighthouse-core/fraggle-rock/api.js +1 -1
  155. package/lighthouse-core/fraggle-rock/config/default-config.js +0 -3
  156. package/lighthouse-core/fraggle-rock/gather/base-artifacts.js +3 -6
  157. package/lighthouse-core/fraggle-rock/gather/driver.js +2 -2
  158. package/lighthouse-core/fraggle-rock/gather/navigation-runner.js +26 -51
  159. package/lighthouse-core/fraggle-rock/gather/runner-helpers.js +3 -0
  160. package/lighthouse-core/fraggle-rock/gather/session.js +22 -23
  161. package/lighthouse-core/fraggle-rock/gather/snapshot-runner.js +4 -5
  162. package/lighthouse-core/fraggle-rock/gather/timespan-runner.js +6 -6
  163. package/lighthouse-core/gather/connections/cri.js +1 -5
  164. package/lighthouse-core/gather/driver/execution-context.js +2 -5
  165. package/lighthouse-core/gather/driver/navigation.js +10 -13
  166. package/lighthouse-core/gather/driver/network-monitor.js +3 -16
  167. package/lighthouse-core/gather/driver.js +1 -6
  168. package/lighthouse-core/gather/fetcher.js +210 -34
  169. package/lighthouse-core/gather/gather-runner.js +17 -13
  170. package/lighthouse-core/gather/gatherers/accessibility.js +4 -16
  171. package/lighthouse-core/gather/gatherers/console-messages.js +2 -4
  172. package/lighthouse-core/gather/gatherers/dobetterweb/doctype.js +2 -4
  173. package/lighthouse-core/gather/gatherers/full-page-screenshot.js +2 -3
  174. package/lighthouse-core/gather/gatherers/iframe-elements.js +1 -4
  175. package/lighthouse-core/gather/gatherers/image-elements.js +0 -2
  176. package/lighthouse-core/gather/gatherers/js-usage.js +87 -12
  177. package/lighthouse-core/gather/gatherers/link-elements.js +14 -12
  178. package/lighthouse-core/gather/gatherers/main-document-content.js +8 -8
  179. package/lighthouse-core/gather/gatherers/script-elements.js +56 -7
  180. package/lighthouse-core/gather/gatherers/seo/robots-txt.js +30 -2
  181. package/lighthouse-core/gather/gatherers/source-maps.js +1 -8
  182. package/lighthouse-core/gather/gatherers/web-app-manifest.js +2 -2
  183. package/lighthouse-core/index.js +2 -26
  184. package/lighthouse-core/lib/cdt/generated/SourceMap.js +1 -1
  185. package/lighthouse-core/lib/dependency-graph/simulator/network-analyzer.js +29 -8
  186. package/lighthouse-core/lib/navigation-error.js +4 -13
  187. package/lighthouse-core/lib/page-functions.js +1 -3
  188. package/lighthouse-core/lib/script-helpers.js +6 -11
  189. package/lighthouse-core/lib/url-shim.js +2 -2
  190. package/lighthouse-core/runner.js +5 -0
  191. package/lighthouse-core/scripts/manual-chrome-launcher.js +1 -0
  192. package/lighthouse-core/util-commonjs.js +6 -8
  193. package/package.json +13 -13
  194. package/readme.md +1 -1
  195. package/report/.eslintrc.cjs +1 -3
  196. package/report/assets/styles.css +5 -10
  197. package/report/assets/templates.html +9 -10
  198. package/report/clients/bundle.js +1 -0
  199. package/report/clients/standalone.js +1 -0
  200. package/report/generator/report-generator.js +21 -46
  201. package/report/renderer/api.js +2 -0
  202. package/report/renderer/category-renderer.js +24 -20
  203. package/report/renderer/components.js +304 -303
  204. package/report/renderer/crc-details-renderer.js +24 -21
  205. package/report/renderer/details-renderer.js +12 -12
  206. package/report/renderer/dom.js +7 -6
  207. package/report/renderer/drop-down-menu.js +1 -0
  208. package/report/renderer/element-screenshot-renderer.js +5 -1
  209. package/report/renderer/features-util.js +1 -0
  210. package/report/renderer/i18n.js +62 -118
  211. package/report/renderer/logger.js +1 -0
  212. package/report/renderer/open-tab.js +3 -1
  213. package/report/renderer/performance-category-renderer.js +11 -10
  214. package/report/renderer/pwa-category-renderer.js +4 -3
  215. package/report/renderer/report-renderer.js +17 -17
  216. package/report/renderer/report-ui-features.js +1 -0
  217. package/report/renderer/snippet-renderer.js +3 -2
  218. package/report/renderer/swap-locale-feature.js +1 -0
  219. package/report/renderer/text-encoding.js +1 -0
  220. package/report/renderer/topbar-features.js +1 -0
  221. package/report/renderer/util.js +6 -7
  222. package/report/test/clients/bundle-test.js +5 -0
  223. package/report/test/generator/file-namer-test.js +1 -0
  224. package/report/test/generator/report-generator-test.js +20 -25
  225. package/report/test/renderer/category-renderer-test.js +4 -3
  226. package/report/test/renderer/components-test.js +3 -0
  227. package/report/test/renderer/crc-details-renderer-test.js +3 -0
  228. package/report/test/renderer/details-renderer-test.js +3 -49
  229. package/report/test/renderer/dom-test.js +3 -0
  230. package/report/test/renderer/element-screenshot-renderer-test.js +6 -3
  231. package/report/test/renderer/i18n-test.js +25 -70
  232. package/report/test/renderer/performance-category-renderer-test.js +5 -14
  233. package/report/test/renderer/pwa-category-renderer-test.js +4 -3
  234. package/report/test/renderer/report-renderer-axe-test.js +4 -3
  235. package/report/test/renderer/report-renderer-test.js +4 -3
  236. package/report/test/renderer/report-ui-features-test.js +4 -3
  237. package/report/test/renderer/snippet-renderer-test.js +3 -0
  238. package/report/test/renderer/text-encoding-test.js +3 -0
  239. package/report/test/renderer/util-test.js +5 -4
  240. package/report/test-assets/faux-psi.js +1 -2
  241. package/shared/localization/format.js +3 -7
  242. package/shared/localization/locales/en-US.json +238 -55
  243. package/shared/localization/locales/en-XL.json +238 -55
  244. package/shared/test/localization/format-test.js +2 -8
  245. package/shared/test/localization/locales-test.js +2 -0
  246. package/shared/test/localization/swap-locale-test.js +2 -0
  247. package/third-party/chromium-synchronization/inspector-issueAdded-types-test.js +2 -0
  248. package/third-party/chromium-synchronization/installability-errors-test.js +2 -0
  249. package/tsconfig.json +0 -1
  250. package/types/artifacts.d.ts +8 -47
  251. package/types/config.d.ts +0 -2
  252. package/types/externs.d.ts +2 -3
  253. package/types/gatherer.d.ts +2 -1
  254. package/types/global-lh.d.ts +0 -3
  255. package/types/lhr/lhr.d.ts +2 -2
  256. package/types/lhr/treemap.d.ts +1 -0
  257. package/changelog.md +0 -5902
  258. package/lighthouse-core/audits/script-elements-test-audit.js +0 -30
  259. package/lighthouse-core/gather/gatherers/scripts.js +0 -154
  260. package/lighthouse-core/scripts/package.json +0 -4
  261. package/report/test/.eslintrc.cjs +0 -11
  262. package/shared/test/localization/.eslintrc.cjs +0 -11
@@ -132,7 +132,7 @@
132
132
  "message": "Lighthouse User Flow Report"
133
133
  },
134
134
  "lighthouse-core/audits/accessibility/accesskeys.js | description": {
135
- "message": "Access keys let users quickly focus a part of the page. For proper navigation, each access key must be unique. [Learn more](https://dequeuniversity.com/rules/axe/4.4/accesskeys)."
135
+ "message": "Access keys let users quickly focus a part of the page. For proper navigation, each access key must be unique. [Learn more](https://web.dev/accesskeys/)."
136
136
  },
137
137
  "lighthouse-core/audits/accessibility/accesskeys.js | failureTitle": {
138
138
  "message": "`[accesskey]` values are not unique"
@@ -141,7 +141,7 @@
141
141
  "message": "`[accesskey]` values are unique"
142
142
  },
143
143
  "lighthouse-core/audits/accessibility/aria-allowed-attr.js | description": {
144
- "message": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-allowed-attr)."
144
+ "message": "Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. [Learn more](https://web.dev/aria-allowed-attr/)."
145
145
  },
146
146
  "lighthouse-core/audits/accessibility/aria-allowed-attr.js | failureTitle": {
147
147
  "message": "`[aria-*]` attributes do not match their roles"
@@ -150,7 +150,7 @@
150
150
  "message": "`[aria-*]` attributes match their roles"
151
151
  },
152
152
  "lighthouse-core/audits/accessibility/aria-command-name.js | description": {
153
- "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-command-name)."
153
+ "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
154
154
  },
155
155
  "lighthouse-core/audits/accessibility/aria-command-name.js | failureTitle": {
156
156
  "message": "`button`, `link`, and `menuitem` elements do not have accessible names."
@@ -159,7 +159,7 @@
159
159
  "message": "`button`, `link`, and `menuitem` elements have accessible names"
160
160
  },
161
161
  "lighthouse-core/audits/accessibility/aria-hidden-body.js | description": {
162
- "message": "Assistive technologies, like screen readers, work inconsistently when `aria-hidden=\"true\"` is set on the document `<body>`. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-hidden-body)."
162
+ "message": "Assistive technologies, like screen readers, work inconsistently when `aria-hidden=\"true\"` is set on the document `<body>`. [Learn more](https://web.dev/aria-hidden-body/)."
163
163
  },
164
164
  "lighthouse-core/audits/accessibility/aria-hidden-body.js | failureTitle": {
165
165
  "message": "`[aria-hidden=\"true\"]` is present on the document `<body>`"
@@ -168,7 +168,7 @@
168
168
  "message": "`[aria-hidden=\"true\"]` is not present on the document `<body>`"
169
169
  },
170
170
  "lighthouse-core/audits/accessibility/aria-hidden-focus.js | description": {
171
- "message": "Focusable descendents within an `[aria-hidden=\"true\"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-hidden-focus)."
171
+ "message": "Focusable descendents within an `[aria-hidden=\"true\"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn more](https://web.dev/aria-hidden-focus/)."
172
172
  },
173
173
  "lighthouse-core/audits/accessibility/aria-hidden-focus.js | failureTitle": {
174
174
  "message": "`[aria-hidden=\"true\"]` elements contain focusable descendents"
@@ -177,7 +177,7 @@
177
177
  "message": "`[aria-hidden=\"true\"]` elements do not contain focusable descendents"
178
178
  },
179
179
  "lighthouse-core/audits/accessibility/aria-input-field-name.js | description": {
180
- "message": "When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-input-field-name)."
180
+ "message": "When an input field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
181
181
  },
182
182
  "lighthouse-core/audits/accessibility/aria-input-field-name.js | failureTitle": {
183
183
  "message": "ARIA input fields do not have accessible names"
@@ -186,7 +186,7 @@
186
186
  "message": "ARIA input fields have accessible names"
187
187
  },
188
188
  "lighthouse-core/audits/accessibility/aria-meter-name.js | description": {
189
- "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-meter-name)."
189
+ "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
190
190
  },
191
191
  "lighthouse-core/audits/accessibility/aria-meter-name.js | failureTitle": {
192
192
  "message": "ARIA `meter` elements do not have accessible names."
@@ -195,7 +195,7 @@
195
195
  "message": "ARIA `meter` elements have accessible names"
196
196
  },
197
197
  "lighthouse-core/audits/accessibility/aria-progressbar-name.js | description": {
198
- "message": "When a `progressbar` element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-progressbar-name)."
198
+ "message": "When a `progressbar` element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
199
199
  },
200
200
  "lighthouse-core/audits/accessibility/aria-progressbar-name.js | failureTitle": {
201
201
  "message": "ARIA `progressbar` elements do not have accessible names."
@@ -204,7 +204,7 @@
204
204
  "message": "ARIA `progressbar` elements have accessible names"
205
205
  },
206
206
  "lighthouse-core/audits/accessibility/aria-required-attr.js | description": {
207
- "message": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-required-attr)."
207
+ "message": "Some ARIA roles have required attributes that describe the state of the element to screen readers. [Learn more](https://web.dev/aria-required-attr/)."
208
208
  },
209
209
  "lighthouse-core/audits/accessibility/aria-required-attr.js | failureTitle": {
210
210
  "message": "`[role]`s do not have all required `[aria-*]` attributes"
@@ -213,7 +213,7 @@
213
213
  "message": "`[role]`s have all required `[aria-*]` attributes"
214
214
  },
215
215
  "lighthouse-core/audits/accessibility/aria-required-children.js | description": {
216
- "message": "Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-required-children)."
216
+ "message": "Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. [Learn more](https://web.dev/aria-required-children/)."
217
217
  },
218
218
  "lighthouse-core/audits/accessibility/aria-required-children.js | failureTitle": {
219
219
  "message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` are missing some or all of those required children."
@@ -222,7 +222,7 @@
222
222
  "message": "Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children."
223
223
  },
224
224
  "lighthouse-core/audits/accessibility/aria-required-parent.js | description": {
225
- "message": "Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-required-parent)."
225
+ "message": "Some ARIA child roles must be contained by specific parent roles to properly perform their intended accessibility functions. [Learn more](https://web.dev/aria-required-parent/)."
226
226
  },
227
227
  "lighthouse-core/audits/accessibility/aria-required-parent.js | failureTitle": {
228
228
  "message": "`[role]`s are not contained by their required parent element"
@@ -231,7 +231,7 @@
231
231
  "message": "`[role]`s are contained by their required parent element"
232
232
  },
233
233
  "lighthouse-core/audits/accessibility/aria-roles.js | description": {
234
- "message": "ARIA roles must have valid values in order to perform their intended accessibility functions. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-roles)."
234
+ "message": "ARIA roles must have valid values in order to perform their intended accessibility functions. [Learn more](https://web.dev/aria-roles/)."
235
235
  },
236
236
  "lighthouse-core/audits/accessibility/aria-roles.js | failureTitle": {
237
237
  "message": "`[role]` values are not valid"
@@ -240,7 +240,7 @@
240
240
  "message": "`[role]` values are valid"
241
241
  },
242
242
  "lighthouse-core/audits/accessibility/aria-toggle-field-name.js | description": {
243
- "message": "When a toggle field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-toggle-field-name)."
243
+ "message": "When a toggle field doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
244
244
  },
245
245
  "lighthouse-core/audits/accessibility/aria-toggle-field-name.js | failureTitle": {
246
246
  "message": "ARIA toggle fields do not have accessible names"
@@ -249,7 +249,7 @@
249
249
  "message": "ARIA toggle fields have accessible names"
250
250
  },
251
251
  "lighthouse-core/audits/accessibility/aria-tooltip-name.js | description": {
252
- "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-tooltip-name)."
252
+ "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
253
253
  },
254
254
  "lighthouse-core/audits/accessibility/aria-tooltip-name.js | failureTitle": {
255
255
  "message": "ARIA `tooltip` elements do not have accessible names."
@@ -258,7 +258,7 @@
258
258
  "message": "ARIA `tooltip` elements have accessible names"
259
259
  },
260
260
  "lighthouse-core/audits/accessibility/aria-treeitem-name.js | description": {
261
- "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-treeitem-name)."
261
+ "message": "When an element doesn't have an accessible name, screen readers announce it with a generic name, making it unusable for users who rely on screen readers. [Learn more](https://web.dev/aria-name/)."
262
262
  },
263
263
  "lighthouse-core/audits/accessibility/aria-treeitem-name.js | failureTitle": {
264
264
  "message": "ARIA `treeitem` elements do not have accessible names."
@@ -267,7 +267,7 @@
267
267
  "message": "ARIA `treeitem` elements have accessible names"
268
268
  },
269
269
  "lighthouse-core/audits/accessibility/aria-valid-attr-value.js | description": {
270
- "message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-valid-attr-value)."
270
+ "message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. [Learn more](https://web.dev/aria-valid-attr-value/)."
271
271
  },
272
272
  "lighthouse-core/audits/accessibility/aria-valid-attr-value.js | failureTitle": {
273
273
  "message": "`[aria-*]` attributes do not have valid values"
@@ -276,7 +276,7 @@
276
276
  "message": "`[aria-*]` attributes have valid values"
277
277
  },
278
278
  "lighthouse-core/audits/accessibility/aria-valid-attr.js | description": {
279
- "message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://dequeuniversity.com/rules/axe/4.4/aria-valid-attr)."
279
+ "message": "Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid names. [Learn more](https://web.dev/aria-valid-attr/)."
280
280
  },
281
281
  "lighthouse-core/audits/accessibility/aria-valid-attr.js | failureTitle": {
282
282
  "message": "`[aria-*]` attributes are not valid or misspelled"
@@ -288,7 +288,7 @@
288
288
  "message": "Failing Elements"
289
289
  },
290
290
  "lighthouse-core/audits/accessibility/button-name.js | description": {
291
- "message": "When a button doesn't have an accessible name, screen readers announce it as \"button\", making it unusable for users who rely on screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/button-name)."
291
+ "message": "When a button doesn't have an accessible name, screen readers announce it as \"button\", making it unusable for users who rely on screen readers. [Learn more](https://web.dev/button-name/)."
292
292
  },
293
293
  "lighthouse-core/audits/accessibility/button-name.js | failureTitle": {
294
294
  "message": "Buttons do not have an accessible name"
@@ -297,7 +297,7 @@
297
297
  "message": "Buttons have an accessible name"
298
298
  },
299
299
  "lighthouse-core/audits/accessibility/bypass.js | description": {
300
- "message": "Adding ways to bypass repetitive content lets keyboard users navigate the page more efficiently. [Learn more](https://dequeuniversity.com/rules/axe/4.4/bypass)."
300
+ "message": "Adding ways to bypass repetitive content lets keyboard users navigate the page more efficiently. [Learn more](https://web.dev/bypass/)."
301
301
  },
302
302
  "lighthouse-core/audits/accessibility/bypass.js | failureTitle": {
303
303
  "message": "The page does not contain a heading, skip link, or landmark region"
@@ -306,7 +306,7 @@
306
306
  "message": "The page contains a heading, skip link, or landmark region"
307
307
  },
308
308
  "lighthouse-core/audits/accessibility/color-contrast.js | description": {
309
- "message": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://dequeuniversity.com/rules/axe/4.4/color-contrast)."
309
+ "message": "Low-contrast text is difficult or impossible for many users to read. [Learn more](https://web.dev/color-contrast/)."
310
310
  },
311
311
  "lighthouse-core/audits/accessibility/color-contrast.js | failureTitle": {
312
312
  "message": "Background and foreground colors do not have a sufficient contrast ratio."
@@ -315,7 +315,7 @@
315
315
  "message": "Background and foreground colors have a sufficient contrast ratio"
316
316
  },
317
317
  "lighthouse-core/audits/accessibility/definition-list.js | description": {
318
- "message": "When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. [Learn more](https://dequeuniversity.com/rules/axe/4.4/definition-list)."
318
+ "message": "When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. [Learn more](https://web.dev/definition-list/)."
319
319
  },
320
320
  "lighthouse-core/audits/accessibility/definition-list.js | failureTitle": {
321
321
  "message": "`<dl>`'s do not contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
@@ -324,7 +324,7 @@
324
324
  "message": "`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements."
325
325
  },
326
326
  "lighthouse-core/audits/accessibility/dlitem.js | description": {
327
- "message": "Definition list items (`<dt>` and `<dd>`) must be wrapped in a parent `<dl>` element to ensure that screen readers can properly announce them. [Learn more](https://dequeuniversity.com/rules/axe/4.4/dlitem)."
327
+ "message": "Definition list items (`<dt>` and `<dd>`) must be wrapped in a parent `<dl>` element to ensure that screen readers can properly announce them. [Learn more](https://web.dev/dlitem/)."
328
328
  },
329
329
  "lighthouse-core/audits/accessibility/dlitem.js | failureTitle": {
330
330
  "message": "Definition list items are not wrapped in `<dl>` elements"
@@ -333,7 +333,7 @@
333
333
  "message": "Definition list items are wrapped in `<dl>` elements"
334
334
  },
335
335
  "lighthouse-core/audits/accessibility/document-title.js | description": {
336
- "message": "The title gives screen reader users an overview of the page, and search engine users rely on it heavily to determine if a page is relevant to their search. [Learn more](https://dequeuniversity.com/rules/axe/4.4/document-title)."
336
+ "message": "The title gives screen reader users an overview of the page, and search engine users rely on it heavily to determine if a page is relevant to their search. [Learn more](https://web.dev/document-title/)."
337
337
  },
338
338
  "lighthouse-core/audits/accessibility/document-title.js | failureTitle": {
339
339
  "message": "Document doesn't have a `<title>` element"
@@ -342,7 +342,7 @@
342
342
  "message": "Document has a `<title>` element"
343
343
  },
344
344
  "lighthouse-core/audits/accessibility/duplicate-id-active.js | description": {
345
- "message": "All focusable elements must have a unique `id` to ensure that they're visible to assistive technologies. [Learn more](https://dequeuniversity.com/rules/axe/4.4/duplicate-id-active)."
345
+ "message": "All focusable elements must have a unique `id` to ensure that they're visible to assistive technologies. [Learn more](https://web.dev/duplicate-id-active/)."
346
346
  },
347
347
  "lighthouse-core/audits/accessibility/duplicate-id-active.js | failureTitle": {
348
348
  "message": "`[id]` attributes on active, focusable elements are not unique"
@@ -351,7 +351,7 @@
351
351
  "message": "`[id]` attributes on active, focusable elements are unique"
352
352
  },
353
353
  "lighthouse-core/audits/accessibility/duplicate-id-aria.js | description": {
354
- "message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn more](https://dequeuniversity.com/rules/axe/4.4/duplicate-id-aria)."
354
+ "message": "The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn more](https://web.dev/duplicate-id-aria/)."
355
355
  },
356
356
  "lighthouse-core/audits/accessibility/duplicate-id-aria.js | failureTitle": {
357
357
  "message": "ARIA IDs are not unique"
@@ -360,7 +360,7 @@
360
360
  "message": "ARIA IDs are unique"
361
361
  },
362
362
  "lighthouse-core/audits/accessibility/form-field-multiple-labels.js | description": {
363
- "message": "Form fields with multiple labels can be confusingly announced by assistive technologies like screen readers which use either the first, the last, or all of the labels. [Learn more](https://dequeuniversity.com/rules/axe/4.4/form-field-multiple-labels)."
363
+ "message": "Form fields with multiple labels can be confusingly announced by assistive technologies like screen readers which use either the first, the last, or all of the labels. [Learn more](https://web.dev/form-field-multiple-labels/)."
364
364
  },
365
365
  "lighthouse-core/audits/accessibility/form-field-multiple-labels.js | failureTitle": {
366
366
  "message": "Form fields have multiple labels"
@@ -369,7 +369,7 @@
369
369
  "message": "No form fields have multiple labels"
370
370
  },
371
371
  "lighthouse-core/audits/accessibility/frame-title.js | description": {
372
- "message": "Screen reader users rely on frame titles to describe the contents of frames. [Learn more](https://dequeuniversity.com/rules/axe/4.4/frame-title)."
372
+ "message": "Screen reader users rely on frame titles to describe the contents of frames. [Learn more](https://web.dev/frame-title/)."
373
373
  },
374
374
  "lighthouse-core/audits/accessibility/frame-title.js | failureTitle": {
375
375
  "message": "`<frame>` or `<iframe>` elements do not have a title"
@@ -378,7 +378,7 @@
378
378
  "message": "`<frame>` or `<iframe>` elements have a title"
379
379
  },
380
380
  "lighthouse-core/audits/accessibility/heading-order.js | description": {
381
- "message": "Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. [Learn more](https://dequeuniversity.com/rules/axe/4.4/heading-order)."
381
+ "message": "Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. [Learn more](https://web.dev/heading-order/)."
382
382
  },
383
383
  "lighthouse-core/audits/accessibility/heading-order.js | failureTitle": {
384
384
  "message": "Heading elements are not in a sequentially-descending order"
@@ -387,7 +387,7 @@
387
387
  "message": "Heading elements appear in a sequentially-descending order"
388
388
  },
389
389
  "lighthouse-core/audits/accessibility/html-has-lang.js | description": {
390
- "message": "If a page doesn't specify a lang attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. [Learn more](https://dequeuniversity.com/rules/axe/4.4/html-has-lang)."
390
+ "message": "If a page doesn't specify a lang attribute, a screen reader assumes that the page is in the default language that the user chose when setting up the screen reader. If the page isn't actually in the default language, then the screen reader might not announce the page's text correctly. [Learn more](https://web.dev/html-has-lang/)."
391
391
  },
392
392
  "lighthouse-core/audits/accessibility/html-has-lang.js | failureTitle": {
393
393
  "message": "`<html>` element does not have a `[lang]` attribute"
@@ -396,7 +396,7 @@
396
396
  "message": "`<html>` element has a `[lang]` attribute"
397
397
  },
398
398
  "lighthouse-core/audits/accessibility/html-lang-valid.js | description": {
399
- "message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) helps screen readers announce text properly. [Learn more](https://dequeuniversity.com/rules/axe/4.4/html-lang-valid)."
399
+ "message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) helps screen readers announce text properly. [Learn more](https://web.dev/html-lang-valid/)."
400
400
  },
401
401
  "lighthouse-core/audits/accessibility/html-lang-valid.js | failureTitle": {
402
402
  "message": "`<html>` element does not have a valid value for its `[lang]` attribute."
@@ -405,7 +405,7 @@
405
405
  "message": "`<html>` element has a valid value for its `[lang]` attribute"
406
406
  },
407
407
  "lighthouse-core/audits/accessibility/image-alt.js | description": {
408
- "message": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more](https://dequeuniversity.com/rules/axe/4.4/image-alt)."
408
+ "message": "Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. [Learn more](https://web.dev/image-alt/)."
409
409
  },
410
410
  "lighthouse-core/audits/accessibility/image-alt.js | failureTitle": {
411
411
  "message": "Image elements do not have `[alt]` attributes"
@@ -414,7 +414,7 @@
414
414
  "message": "Image elements have `[alt]` attributes"
415
415
  },
416
416
  "lighthouse-core/audits/accessibility/input-image-alt.js | description": {
417
- "message": "When an image is being used as an `<input>` button, providing alternative text can help screen reader users understand the purpose of the button. [Learn more](https://dequeuniversity.com/rules/axe/4.4/input-image-alt)."
417
+ "message": "When an image is being used as an `<input>` button, providing alternative text can help screen reader users understand the purpose of the button. [Learn more](https://web.dev/input-image-alt/)."
418
418
  },
419
419
  "lighthouse-core/audits/accessibility/input-image-alt.js | failureTitle": {
420
420
  "message": "`<input type=\"image\">` elements do not have `[alt]` text"
@@ -423,7 +423,7 @@
423
423
  "message": "`<input type=\"image\">` elements have `[alt]` text"
424
424
  },
425
425
  "lighthouse-core/audits/accessibility/label.js | description": {
426
- "message": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://dequeuniversity.com/rules/axe/4.4/label)."
426
+ "message": "Labels ensure that form controls are announced properly by assistive technologies, like screen readers. [Learn more](https://web.dev/label/)."
427
427
  },
428
428
  "lighthouse-core/audits/accessibility/label.js | failureTitle": {
429
429
  "message": "Form elements do not have associated labels"
@@ -432,7 +432,7 @@
432
432
  "message": "Form elements have associated labels"
433
433
  },
434
434
  "lighthouse-core/audits/accessibility/link-name.js | description": {
435
- "message": "Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. [Learn more](https://dequeuniversity.com/rules/axe/4.4/link-name)."
435
+ "message": "Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. [Learn more](https://web.dev/link-name/)."
436
436
  },
437
437
  "lighthouse-core/audits/accessibility/link-name.js | failureTitle": {
438
438
  "message": "Links do not have a discernible name"
@@ -441,7 +441,7 @@
441
441
  "message": "Links have a discernible name"
442
442
  },
443
443
  "lighthouse-core/audits/accessibility/list.js | description": {
444
- "message": "Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. [Learn more](https://dequeuniversity.com/rules/axe/4.4/list)."
444
+ "message": "Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. [Learn more](https://web.dev/list/)."
445
445
  },
446
446
  "lighthouse-core/audits/accessibility/list.js | failureTitle": {
447
447
  "message": "Lists do not contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
@@ -450,16 +450,16 @@
450
450
  "message": "Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`)."
451
451
  },
452
452
  "lighthouse-core/audits/accessibility/listitem.js | description": {
453
- "message": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. [Learn more](https://dequeuniversity.com/rules/axe/4.4/listitem)."
453
+ "message": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>` or `<ol>` to be announced properly. [Learn more](https://web.dev/listitem/)."
454
454
  },
455
455
  "lighthouse-core/audits/accessibility/listitem.js | failureTitle": {
456
- "message": "List items (`<li>`) are not contained within `<ul>`, `<ol>` or `<menu>` parent elements."
456
+ "message": "List items (`<li>`) are not contained within `<ul>` or `<ol>` parent elements."
457
457
  },
458
458
  "lighthouse-core/audits/accessibility/listitem.js | title": {
459
- "message": "List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements"
459
+ "message": "List items (`<li>`) are contained within `<ul>` or `<ol>` parent elements"
460
460
  },
461
461
  "lighthouse-core/audits/accessibility/meta-refresh.js | description": {
462
- "message": "Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience. [Learn more](https://dequeuniversity.com/rules/axe/4.4/meta-refresh)."
462
+ "message": "Users do not expect a page to refresh automatically, and doing so will move focus back to the top of the page. This may create a frustrating or confusing experience. [Learn more](https://web.dev/meta-refresh/)."
463
463
  },
464
464
  "lighthouse-core/audits/accessibility/meta-refresh.js | failureTitle": {
465
465
  "message": "The document uses `<meta http-equiv=\"refresh\">`"
@@ -468,7 +468,7 @@
468
468
  "message": "The document does not use `<meta http-equiv=\"refresh\">`"
469
469
  },
470
470
  "lighthouse-core/audits/accessibility/meta-viewport.js | description": {
471
- "message": "Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. [Learn more](https://dequeuniversity.com/rules/axe/4.4/meta-viewport)."
471
+ "message": "Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. [Learn more](https://web.dev/meta-viewport/)."
472
472
  },
473
473
  "lighthouse-core/audits/accessibility/meta-viewport.js | failureTitle": {
474
474
  "message": "`[user-scalable=\"no\"]` is used in the `<meta name=\"viewport\">` element or the `[maximum-scale]` attribute is less than 5."
@@ -477,7 +477,7 @@
477
477
  "message": "`[user-scalable=\"no\"]` is not used in the `<meta name=\"viewport\">` element and the `[maximum-scale]` attribute is not less than 5."
478
478
  },
479
479
  "lighthouse-core/audits/accessibility/object-alt.js | description": {
480
- "message": "Screen readers cannot translate non-text content. Adding alternate text to `<object>` elements helps screen readers convey meaning to users. [Learn more](https://dequeuniversity.com/rules/axe/4.4/object-alt)."
480
+ "message": "Screen readers cannot translate non-text content. Adding alternate text to `<object>` elements helps screen readers convey meaning to users. [Learn more](https://web.dev/object-alt/)."
481
481
  },
482
482
  "lighthouse-core/audits/accessibility/object-alt.js | failureTitle": {
483
483
  "message": "`<object>` elements do not have alternate text"
@@ -486,7 +486,7 @@
486
486
  "message": "`<object>` elements have alternate text"
487
487
  },
488
488
  "lighthouse-core/audits/accessibility/tabindex.js | description": {
489
- "message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://dequeuniversity.com/rules/axe/4.4/tabindex)."
489
+ "message": "A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. [Learn more](https://web.dev/tabindex/)."
490
490
  },
491
491
  "lighthouse-core/audits/accessibility/tabindex.js | failureTitle": {
492
492
  "message": "Some elements have a `[tabindex]` value greater than 0"
@@ -495,7 +495,7 @@
495
495
  "message": "No element has a `[tabindex]` value greater than 0"
496
496
  },
497
497
  "lighthouse-core/audits/accessibility/td-headers-attr.js | description": {
498
- "message": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more](https://dequeuniversity.com/rules/axe/4.4/td-headers-attr)."
498
+ "message": "Screen readers have features to make navigating tables easier. Ensuring `<td>` cells using the `[headers]` attribute only refer to other cells in the same table may improve the experience for screen reader users. [Learn more](https://web.dev/td-headers-attr/)."
499
499
  },
500
500
  "lighthouse-core/audits/accessibility/td-headers-attr.js | failureTitle": {
501
501
  "message": "Cells in a `<table>` element that use the `[headers]` attribute refer to an element `id` not found within the same table."
@@ -504,7 +504,7 @@
504
504
  "message": "Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table."
505
505
  },
506
506
  "lighthouse-core/audits/accessibility/th-has-data-cells.js | description": {
507
- "message": "Screen readers have features to make navigating tables easier. Ensuring table headers always refer to some set of cells may improve the experience for screen reader users. [Learn more](https://dequeuniversity.com/rules/axe/4.4/th-has-data-cells)."
507
+ "message": "Screen readers have features to make navigating tables easier. Ensuring table headers always refer to some set of cells may improve the experience for screen reader users. [Learn more](https://web.dev/th-has-data-cells/)."
508
508
  },
509
509
  "lighthouse-core/audits/accessibility/th-has-data-cells.js | failureTitle": {
510
510
  "message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` do not have data cells they describe."
@@ -513,7 +513,7 @@
513
513
  "message": "`<th>` elements and elements with `[role=\"columnheader\"/\"rowheader\"]` have data cells they describe."
514
514
  },
515
515
  "lighthouse-core/audits/accessibility/valid-lang.js | description": {
516
- "message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) on elements helps ensure that text is pronounced correctly by a screen reader. [Learn more](https://dequeuniversity.com/rules/axe/4.4/valid-lang)."
516
+ "message": "Specifying a valid [BCP 47 language](https://www.w3.org/International/questions/qa-choosing-language-tags#question) on elements helps ensure that text is pronounced correctly by a screen reader. [Learn more](https://web.dev/valid-lang/)."
517
517
  },
518
518
  "lighthouse-core/audits/accessibility/valid-lang.js | failureTitle": {
519
519
  "message": "`[lang]` attributes do not have a valid value"
@@ -522,7 +522,7 @@
522
522
  "message": "`[lang]` attributes have a valid value"
523
523
  },
524
524
  "lighthouse-core/audits/accessibility/video-caption.js | description": {
525
- "message": "When a video provides a caption it is easier for deaf and hearing impaired users to access its information. [Learn more](https://dequeuniversity.com/rules/axe/4.4/video-caption)."
525
+ "message": "When a video provides a caption it is easier for deaf and hearing impaired users to access its information. [Learn more](https://web.dev/video-caption/)."
526
526
  },
527
527
  "lighthouse-core/audits/accessibility/video-caption.js | failureTitle": {
528
528
  "message": "`<video>` elements do not contain a `<track>` element with `[kind=\"captions\"]`."
@@ -603,7 +603,7 @@
603
603
  "message": "Use video formats for animated content"
604
604
  },
605
605
  "lighthouse-core/audits/byte-efficiency/legacy-javascript.js | description": {
606
- "message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn More](https://web.dev/publish-modern-javascript/)"
606
+ "message": "Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. [Learn More](https://philipwalton.com/articles/deploying-es2015-code-in-production-today/)"
607
607
  },
608
608
  "lighthouse-core/audits/byte-efficiency/legacy-javascript.js | title": {
609
609
  "message": "Avoid serving legacy JavaScript to modern browsers"
@@ -746,24 +746,210 @@
746
746
  "lighthouse-core/audits/csp-xss.js | title": {
747
747
  "message": "Ensure CSP is effective against XSS attacks"
748
748
  },
749
+ "lighthouse-core/audits/deprecations.js | authorizationCoveredByWildcard": {
750
+ "message": "Authorization will not be covered by the wildcard symbol (*) in CORS `Access-Control-Allow-Headers` handling."
751
+ },
752
+ "lighthouse-core/audits/deprecations.js | canRequestURLHTTPContainingNewline": {
753
+ "message": "Resource requests whose URLs contained both removed whitespace `(n|r|t)` characters and less-than characters (`<`) are blocked. Please remove newlines and encode less-than characters from places like element attribute values in order to load these resources."
754
+ },
755
+ "lighthouse-core/audits/deprecations.js | chromeLoadTimesConnectionInfo": {
756
+ "message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Navigation Timing 2."
757
+ },
758
+ "lighthouse-core/audits/deprecations.js | chromeLoadTimesFirstPaintAfterLoadTime": {
759
+ "message": "`chrome.loadTimes()` is deprecated, instead use standardized API: Paint Timing."
760
+ },
761
+ "lighthouse-core/audits/deprecations.js | chromeLoadTimesWasAlternateProtocolAvailable": {
762
+ "message": "`chrome.loadTimes()` is deprecated, instead use standardized API: `nextHopProtocol` in Navigation Timing 2."
763
+ },
749
764
  "lighthouse-core/audits/deprecations.js | columnDeprecate": {
750
765
  "message": "Deprecation / Warning"
751
766
  },
752
767
  "lighthouse-core/audits/deprecations.js | columnLine": {
753
768
  "message": "Line"
754
769
  },
770
+ "lighthouse-core/audits/deprecations.js | cookieWithTruncatingChar": {
771
+ "message": "Cookies containing a `(0|r|n)` character will be rejected instead of truncated."
772
+ },
773
+ "lighthouse-core/audits/deprecations.js | crossOriginAccessBasedOnDocumentDomain": {
774
+ "message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting `document.domain`."
775
+ },
776
+ "lighthouse-core/audits/deprecations.js | crossOriginWindowAlert": {
777
+ "message": "Triggering `window.alert` from cross origin iframes has been deprecated and will be removed in the future."
778
+ },
779
+ "lighthouse-core/audits/deprecations.js | crossOriginWindowConfirm": {
780
+ "message": "Triggering `window.confirm` from cross origin iframes has been deprecated and will be removed in the future."
781
+ },
782
+ "lighthouse-core/audits/deprecations.js | cssSelectorInternalMediaControlsOverlayCastButton": {
783
+ "message": "The `disableRemotePlayback` attribute should be used in order to disable the default Cast integration instead of using `-internal-media-controls-overlay-cast-button` selector."
784
+ },
785
+ "lighthouse-core/audits/deprecations.js | customCursorIntersectsViewport": {
786
+ "message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
787
+ },
755
788
  "lighthouse-core/audits/deprecations.js | description": {
756
789
  "message": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://web.dev/deprecations/)."
757
790
  },
758
791
  "lighthouse-core/audits/deprecations.js | displayValue": {
759
792
  "message": "{itemCount, plural,\n =1 {1 warning found}\n other {# warnings found}\n }"
760
793
  },
794
+ "lighthouse-core/audits/deprecations.js | documentDomainSettingWithoutOriginAgentClusterHeader": {
795
+ "message": "Relaxing the same-origin policy by setting `document.domain` is deprecated, and will be disabled by default. To continue using this feature, please opt-out of origin-keyed agent clusters by sending an `Origin-Agent-Cluster: ?0` header along with the HTTP response for the document and frames. See https://developer.chrome.com/blog/immutable-document-domain/ for more details."
796
+ },
797
+ "lighthouse-core/audits/deprecations.js | eventPath": {
798
+ "message": "`Event.path` is deprecated and will be removed. Please use `Event.composedPath()` instead."
799
+ },
761
800
  "lighthouse-core/audits/deprecations.js | failureTitle": {
762
801
  "message": "Uses deprecated APIs"
763
802
  },
803
+ "lighthouse-core/audits/deprecations.js | feature": {
804
+ "message": "Check the feature status page for more details."
805
+ },
806
+ "lighthouse-core/audits/deprecations.js | geolocationInsecureOrigin": {
807
+ "message": "`getCurrentPosition()` and `watchPosition()` no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
808
+ },
809
+ "lighthouse-core/audits/deprecations.js | geolocationInsecureOriginDeprecatedNotRemoved": {
810
+ "message": "`getCurrentPosition()` and `watchPosition()` are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
811
+ },
812
+ "lighthouse-core/audits/deprecations.js | getUserMediaInsecureOrigin": {
813
+ "message": "`getUserMedia()` no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
814
+ },
815
+ "lighthouse-core/audits/deprecations.js | hostCandidateAttributeGetter": {
816
+ "message": "`RTCPeerConnectionIceErrorEvent.hostCandidate` is deprecated. Please use `RTCPeerConnectionIceErrorEvent.address` or `RTCPeerConnectionIceErrorEvent.port` instead."
817
+ },
818
+ "lighthouse-core/audits/deprecations.js | insecurePrivateNetworkSubresourceRequest": {
819
+ "message": "The website requested a subresource from a network that it could only access because of its users' privileged network position. These requests expose non-public devices and servers to the internet, increasing the risk of a cross-site request forgery (CSRF) attack, and/or information leakage. To mitigate these risks, Chrome deprecates requests to non-public subresources when initiated from non-secure contexts, and will start blocking them."
820
+ },
821
+ "lighthouse-core/audits/deprecations.js | legacyConstraintGoogCpuOveruseDetection": {
822
+ "message": "CPU overuse detection is enabled-by-default and the ability to disable it using `googCpuOveruseDetection` will soon be removed. Please stop using this legacy constraint."
823
+ },
824
+ "lighthouse-core/audits/deprecations.js | legacyConstraintGoogIPv6": {
825
+ "message": "IPv6 is enabled-by-default and the ability to disable it using `googIPv6` will soon be removed. Please stop using this legacy constraint."
826
+ },
827
+ "lighthouse-core/audits/deprecations.js | legacyConstraintGoogScreencastMinBitrate": {
828
+ "message": "Screencast min bitrate is now set to 100 kbps by default and `googScreencastMinBitrate` will soon be ignored in favor of this new default. Please stop using this legacy constraint."
829
+ },
830
+ "lighthouse-core/audits/deprecations.js | legacyConstraintGoogSuspendBelowMinBitrate": {
831
+ "message": "Support for the `googSuspendBelowMinBitrate` constraint is about to be removed. Please stop using this legacy constraint."
832
+ },
833
+ "lighthouse-core/audits/deprecations.js | localCSSFileExtensionRejected": {
834
+ "message": "CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension."
835
+ },
836
+ "lighthouse-core/audits/deprecations.js | mediaElementAudioSourceNode": {
837
+ "message": "Creating a `MediaElementAudioSourceNode` on an `OfflineAudioContext` is deprecated and will be removed."
838
+ },
839
+ "lighthouse-core/audits/deprecations.js | mediaSourceAbortRemove": {
840
+ "message": "Using `SourceBuffer.abort()` to abort `remove()`'s asynchronous range removal is deprecated due to specification change. Support will be removed in the future. You should instead await `updateend`. `abort()` is intended to only abort an asynchronous media append or reset parser state."
841
+ },
842
+ "lighthouse-core/audits/deprecations.js | mediaSourceDurationTruncatingBuffered": {
843
+ "message": "Setting `MediaSource.duration` below the highest presentation timestamp of any buffered coded frames is deprecated due to specification change. Support for implicit removal of truncated buffered media will be removed in the future. You should instead perform explicit `remove(newDuration, oldDuration)` on all `sourceBuffers`, where `newDuration < oldDuration`."
844
+ },
845
+ "lighthouse-core/audits/deprecations.js | milestone": {
846
+ "message": "This change will go into effect with milestone {milestone}."
847
+ },
848
+ "lighthouse-core/audits/deprecations.js | noSysexWebMIDIWithoutPermission": {
849
+ "message": "Web MIDI will ask a permission to use even if the sysex is not specified in the `MIDIOptions`."
850
+ },
851
+ "lighthouse-core/audits/deprecations.js | notificationInsecureOrigin": {
852
+ "message": "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
853
+ },
854
+ "lighthouse-core/audits/deprecations.js | notificationPermissionRequestedIframe": {
855
+ "message": "Permission for the Notification API may no longer be requested from a cross-origin iframe. You should consider requesting permission from a top-level frame or opening a new window instead."
856
+ },
857
+ "lighthouse-core/audits/deprecations.js | obsoleteWebRtcCipherSuite": {
858
+ "message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
859
+ },
860
+ "lighthouse-core/audits/deprecations.js | paymentRequestBasicCard": {
861
+ "message": "The `basic-card` payment method is deprecated and will be removed."
862
+ },
863
+ "lighthouse-core/audits/deprecations.js | paymentRequestShowWithoutGesture": {
864
+ "message": "Calling `PaymentRequest.show()` without user activation is deprecated and will be removed."
865
+ },
866
+ "lighthouse-core/audits/deprecations.js | pictureSourceSrc": {
867
+ "message": "`<source src>` with a `<picture>` parent is invalid and therefore ignored. Please use `<source srcset>` instead."
868
+ },
869
+ "lighthouse-core/audits/deprecations.js | prefixedCancelAnimationFrame": {
870
+ "message": "`webkitCancelAnimationFrame` is vendor-specific. Please use the standard `cancelAnimationFrame` instead."
871
+ },
872
+ "lighthouse-core/audits/deprecations.js | prefixedRequestAnimationFrame": {
873
+ "message": "`webkitRequestAnimationFrame` is vendor-specific. Please use the standard `requestAnimationFrame` instead."
874
+ },
875
+ "lighthouse-core/audits/deprecations.js | prefixedStorageInfo": {
876
+ "message": "`window.webkitStorageInfo` is deprecated. Please use `navigator.webkitTemporaryStorage` or `navigator.webkitPersistentStorage` instead."
877
+ },
878
+ "lighthouse-core/audits/deprecations.js | prefixedVideoDisplayingFullscreen": {
879
+ "message": "`HTMLVideoElement.webkitDisplayingFullscreen` is deprecated. Please use `Document.fullscreenElement` instead."
880
+ },
881
+ "lighthouse-core/audits/deprecations.js | prefixedVideoEnterFullscreen": {
882
+ "message": "`HTMLVideoElement.webkitEnterFullscreen()` is deprecated. Please use `Element.requestFullscreen()` instead."
883
+ },
884
+ "lighthouse-core/audits/deprecations.js | prefixedVideoEnterFullScreen": {
885
+ "message": "`HTMLVideoElement.webkitEnterFullScreen()` is deprecated. Please use `Element.requestFullscreen()` instead."
886
+ },
887
+ "lighthouse-core/audits/deprecations.js | prefixedVideoExitFullscreen": {
888
+ "message": "`HTMLVideoElement.webkitExitFullscreen()` is deprecated. Please use `Document.exitFullscreen()` instead."
889
+ },
890
+ "lighthouse-core/audits/deprecations.js | prefixedVideoExitFullScreen": {
891
+ "message": "`HTMLVideoElement.webkitExitFullsSreen()` is deprecated. Please use `Document.exitFullscreen()` instead."
892
+ },
893
+ "lighthouse-core/audits/deprecations.js | prefixedVideoSupportsFullscreen": {
894
+ "message": "`HTMLVideoElement.webkitSupportsFullscreen` is deprecated. Please use `Document.fullscreenEnabled` instead."
895
+ },
896
+ "lighthouse-core/audits/deprecations.js | rangeExpand": {
897
+ "message": "`Range.expand()` is deprecated. Please use `Selection.modify()` instead."
898
+ },
899
+ "lighthouse-core/audits/deprecations.js | requestedSubresourceWithEmbeddedCredentials": {
900
+ "message": "Subresource requests whose URLs contain embedded credentials (e.g. `https://user:pass@host/`) are blocked."
901
+ },
902
+ "lighthouse-core/audits/deprecations.js | rtcConstraintEnableDtlsSrtpFalse": {
903
+ "message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `false` value for this constraint, which is interpreted as an attempt to use the removed `SDES` key negotiation method. This functionality is removed; use a service that supports DTLS key negotiation instead."
904
+ },
905
+ "lighthouse-core/audits/deprecations.js | rtcConstraintEnableDtlsSrtpTrue": {
906
+ "message": "The constraint `DtlsSrtpKeyAgreement` is removed. You have specified a `true` value for this constraint, which had no effect, but you can remove this constraint for tidiness."
907
+ },
908
+ "lighthouse-core/audits/deprecations.js | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
909
+ "message": "Complex Plan B SDP detected! Chrome will switch the default `sdpSemantics` from `plan-b` to the standardized `unified-plan` format and this peer connection is relying on the default `sdpSemantics`. This SDP is not compatible with Unified Plan and will be rejected by clients expecting Unified Plan. For more information about how to prepare for the switch, see https://webrtc.org/web-apis/chrome/unified-plan/."
910
+ },
911
+ "lighthouse-core/audits/deprecations.js | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
912
+ "message": "The `mediaConstraints` version of `RTCOfferOptions/RTCAnswerOptions` are deprecated and will soon be removed, please migrate to the promise-based `createOffer`/`createAnswer` instead."
913
+ },
914
+ "lighthouse-core/audits/deprecations.js | rtcPeerConnectionSdpSemanticsPlanB": {
915
+ "message": "Plan B SDP semantics, which is used when constructing an `RTCPeerConnection` with `{sdpSemantics:plan-b}`, is a legacy non-standard version of the Session Description Protocol that has been permanently deleted from the Web Platform. It is still available when building with IS_FUCHSIA, but we intend to delete it as soon as possible. Stop depending on it. See https://crbug.com/1302249 for status."
916
+ },
917
+ "lighthouse-core/audits/deprecations.js | rtcpMuxPolicyNegotiate": {
918
+ "message": "The `rtcpMuxPolicy` option is deprecated and will be removed."
919
+ },
920
+ "lighthouse-core/audits/deprecations.js | rtpDataChannel": {
921
+ "message": "RTP data channels are no longer supported. The `RtpDataChannels` constraint is currently ignored, and may cause an error at a later date."
922
+ },
923
+ "lighthouse-core/audits/deprecations.js | selectionAddRangeIntersect": {
924
+ "message": "The behavior that `Selection.addRange()` merges existing Range and the specified Range was removed."
925
+ },
926
+ "lighthouse-core/audits/deprecations.js | sharedArrayBufferConstructedWithoutIsolation": {
927
+ "message": "`SharedArrayBuffer` will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
928
+ },
929
+ "lighthouse-core/audits/deprecations.js | textToSpeech_DisallowedByAutoplay": {
930
+ "message": "`speechSynthesis.speak()` without user activation is deprecated and will be removed."
931
+ },
764
932
  "lighthouse-core/audits/deprecations.js | title": {
765
933
  "message": "Avoids deprecated APIs"
766
934
  },
935
+ "lighthouse-core/audits/deprecations.js | unknownDeprecation": {
936
+ "message": "..."
937
+ },
938
+ "lighthouse-core/audits/deprecations.js | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
939
+ "message": "Extensions should opt into cross-origin isolation to continue using `SharedArrayBuffer`. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
940
+ },
941
+ "lighthouse-core/audits/deprecations.js | webCodecsVideoFrameDefaultTimestamp": {
942
+ "message": "Constructing a `VideoFrame` without a timestamp is deprecated and support will be removed. Please provide a timestamp via `VideoFrameInit`."
943
+ },
944
+ "lighthouse-core/audits/deprecations.js | xhrJSONEncodingDetection": {
945
+ "message": "UTF-16 is not supported by response json in `XMLHttpRequest`"
946
+ },
947
+ "lighthouse-core/audits/deprecations.js | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
948
+ "message": "Synchronous `XMLHttpRequest` on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/."
949
+ },
950
+ "lighthouse-core/audits/deprecations.js | xrSupportsSession": {
951
+ "message": "`supportsSession()` is deprecated. Please use `isSessionSupported()` and check the resolved boolean value instead."
952
+ },
767
953
  "lighthouse-core/audits/dobetterweb/charset.js | description": {
768
954
  "message": "A character encoding declaration is required. It can be done with a `<meta>` tag in the first 1024 bytes of the HTML or in the Content-Type HTTP response header. [Learn more](https://web.dev/charset/)."
769
955
  },
@@ -777,7 +963,7 @@
777
963
  "message": "Specifying a doctype prevents the browser from switching to quirks-mode. [Learn more](https://web.dev/doctype/)."
778
964
  },
779
965
  "lighthouse-core/audits/dobetterweb/doctype.js | explanationBadDoctype": {
780
- "message": "Doctype name must be the string `html`"
966
+ "message": "Doctype name must be the lowercase string `html`"
781
967
  },
782
968
  "lighthouse-core/audits/dobetterweb/doctype.js | explanationNoDoctype": {
783
969
  "message": "Document must contain a doctype"
@@ -788,9 +974,6 @@
788
974
  "lighthouse-core/audits/dobetterweb/doctype.js | explanationSystemId": {
789
975
  "message": "Expected systemId to be an empty string"
790
976
  },
791
- "lighthouse-core/audits/dobetterweb/doctype.js | explanationWrongDoctype": {
792
- "message": "Document contains a doctype that triggers quirks-mode"
793
- },
794
977
  "lighthouse-core/audits/dobetterweb/doctype.js | failureTitle": {
795
978
  "message": "Page lacks the HTML doctype, thus triggering quirks-mode"
796
979
  },
@@ -1281,7 +1464,7 @@
1281
1464
  "message": "Fonts with `font-display: optional` are preloaded"
1282
1465
  },
1283
1466
  "lighthouse-core/audits/preload-lcp-image.js | description": {
1284
- "message": "If the LCP element is dynamically added to the page, you should preload the image in order to improve LCP. [Learn more](https://web.dev/optimize-lcp/#preload-important-resources)."
1467
+ "message": "Preload the image used by the LCP element in order to improve your LCP time. [Learn more](https://web.dev/optimize-lcp/#preload-important-resources)."
1285
1468
  },
1286
1469
  "lighthouse-core/audits/preload-lcp-image.js | title": {
1287
1470
  "message": "Preload Largest Contentful Paint image"
@@ -1676,8 +1859,8 @@
1676
1859
  "lighthouse-core/audits/work-during-interaction.js | presentationDelay": {
1677
1860
  "message": "Presentation delay"
1678
1861
  },
1679
- "lighthouse-core/audits/work-during-interaction.js | processingTime": {
1680
- "message": "Processing time"
1862
+ "lighthouse-core/audits/work-during-interaction.js | processingDelay": {
1863
+ "message": "Processing delay"
1681
1864
  },
1682
1865
  "lighthouse-core/audits/work-during-interaction.js | title": {
1683
1866
  "message": "Minimizes work during key interaction"
@@ -1704,7 +1887,7 @@
1704
1887
  "message": "These checks highlight opportunities to [improve the accessibility of your web app](https://web.dev/lighthouse-accessibility/). Only a subset of accessibility issues can be automatically detected so manual testing is also encouraged."
1705
1888
  },
1706
1889
  "lighthouse-core/config/default-config.js | a11yCategoryManualDescription": {
1707
- "message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://web.dev/how-to-review/)."
1890
+ "message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://developers.google.com/web/fundamentals/accessibility/how-to-review)."
1708
1891
  },
1709
1892
  "lighthouse-core/config/default-config.js | a11yCategoryTitle": {
1710
1893
  "message": "Accessibility"