lighthouse 13.2.0 → 13.4.0-dev.20260625

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 (218) hide show
  1. package/.agents/skills/lighthouse-verification/SKILL.md +23 -0
  2. package/cli/cli-flags.d.ts +8 -9
  3. package/cli/cli-flags.js +2 -2
  4. package/cli/test/smokehouse/config/exclusions.js +2 -0
  5. package/cli/test/smokehouse/lighthouse-runners/bundle.js +7 -3
  6. package/cli/test/smokehouse/lighthouse-runners/cli.js +5 -1
  7. package/cli/test/smokehouse/lighthouse-runners/devtools-mcp.js +7 -3
  8. package/cli/test/smokehouse/lighthouse-runners/devtools.js +4 -1
  9. package/cli/test/smokehouse/smokehouse.js +7 -2
  10. package/cli/test/smokehouse/version-check.d.ts +1 -1
  11. package/core/audits/accessibility/accesskeys.js +1 -1
  12. package/core/audits/accessibility/aria-allowed-attr.js +1 -1
  13. package/core/audits/accessibility/aria-allowed-role.js +1 -1
  14. package/core/audits/accessibility/aria-command-name.js +1 -1
  15. package/core/audits/accessibility/aria-conditional-attr.js +1 -1
  16. package/core/audits/accessibility/aria-deprecated-role.js +1 -1
  17. package/core/audits/accessibility/aria-dialog-name.js +1 -1
  18. package/core/audits/accessibility/aria-hidden-body.js +1 -1
  19. package/core/audits/accessibility/aria-hidden-focus.js +1 -1
  20. package/core/audits/accessibility/aria-input-field-name.js +1 -1
  21. package/core/audits/accessibility/aria-meter-name.js +1 -1
  22. package/core/audits/accessibility/aria-progressbar-name.js +1 -1
  23. package/core/audits/accessibility/aria-prohibited-attr.js +1 -1
  24. package/core/audits/accessibility/aria-required-attr.js +1 -1
  25. package/core/audits/accessibility/aria-required-children.js +1 -1
  26. package/core/audits/accessibility/aria-required-parent.js +1 -1
  27. package/core/audits/accessibility/aria-roles.js +1 -1
  28. package/core/audits/accessibility/aria-text.js +1 -1
  29. package/core/audits/accessibility/aria-toggle-field-name.js +1 -1
  30. package/core/audits/accessibility/aria-tooltip-name.js +1 -1
  31. package/core/audits/accessibility/aria-treeitem-name.js +1 -1
  32. package/core/audits/accessibility/aria-valid-attr-value.js +1 -1
  33. package/core/audits/accessibility/aria-valid-attr.js +1 -1
  34. package/core/audits/accessibility/autocomplete-valid.js +1 -1
  35. package/core/audits/accessibility/button-name.js +1 -1
  36. package/core/audits/accessibility/bypass.js +1 -1
  37. package/core/audits/accessibility/color-contrast.js +1 -1
  38. package/core/audits/accessibility/definition-list.js +1 -1
  39. package/core/audits/accessibility/dlitem.js +1 -1
  40. package/core/audits/accessibility/document-title.js +1 -1
  41. package/core/audits/accessibility/duplicate-id-aria.js +1 -1
  42. package/core/audits/accessibility/empty-heading.js +1 -1
  43. package/core/audits/accessibility/form-field-multiple-labels.js +1 -1
  44. package/core/audits/accessibility/frame-title.js +1 -1
  45. package/core/audits/accessibility/heading-order.js +1 -1
  46. package/core/audits/accessibility/html-has-lang.js +1 -1
  47. package/core/audits/accessibility/html-lang-valid.js +1 -1
  48. package/core/audits/accessibility/html-xml-lang-mismatch.js +1 -1
  49. package/core/audits/accessibility/identical-links-same-purpose.js +1 -1
  50. package/core/audits/accessibility/image-alt.js +1 -1
  51. package/core/audits/accessibility/image-redundant-alt.js +1 -1
  52. package/core/audits/accessibility/input-button-name.js +1 -1
  53. package/core/audits/accessibility/input-image-alt.js +1 -1
  54. package/core/audits/accessibility/label-content-name-mismatch.js +1 -1
  55. package/core/audits/accessibility/label.js +1 -1
  56. package/core/audits/accessibility/landmark-one-main.js +1 -1
  57. package/core/audits/accessibility/link-in-text-block.js +1 -1
  58. package/core/audits/accessibility/link-name.js +1 -1
  59. package/core/audits/accessibility/list.js +1 -1
  60. package/core/audits/accessibility/listitem.js +1 -1
  61. package/core/audits/accessibility/meta-refresh.js +1 -1
  62. package/core/audits/accessibility/meta-viewport.js +1 -1
  63. package/core/audits/accessibility/object-alt.js +1 -1
  64. package/core/audits/accessibility/presentation-role-conflict.js +1 -1
  65. package/core/audits/accessibility/select-name.js +1 -1
  66. package/core/audits/accessibility/skip-link.js +1 -1
  67. package/core/audits/accessibility/svg-img-alt.js +1 -1
  68. package/core/audits/accessibility/tabindex.js +1 -1
  69. package/core/audits/accessibility/table-duplicate-name.js +1 -1
  70. package/core/audits/accessibility/table-fake-caption.js +1 -1
  71. package/core/audits/accessibility/target-size.js +1 -1
  72. package/core/audits/accessibility/td-has-header.js +1 -1
  73. package/core/audits/accessibility/td-headers-attr.js +1 -1
  74. package/core/audits/accessibility/th-has-data-cells.js +1 -1
  75. package/core/audits/accessibility/valid-lang.js +1 -1
  76. package/core/audits/accessibility/video-caption.js +1 -1
  77. package/core/audits/agentic/agent-accessibility-tree.js +1 -1
  78. package/core/audits/agentic/llms-txt.d.ts +1 -0
  79. package/core/audits/agentic/llms-txt.js +23 -10
  80. package/core/audits/baseline.js +10 -12
  81. package/core/audits/dobetterweb/geolocation-on-start.js +2 -1
  82. package/core/audits/network-requests.js +2 -0
  83. package/core/audits/seo/canonical.js +19 -7
  84. package/core/audits/seo/robots-txt.d.ts +1 -0
  85. package/core/audits/seo/robots-txt.js +22 -8
  86. package/core/audits/webmcp-form-coverage.js +2 -2
  87. package/core/audits/webmcp-registered-tools.js +1 -1
  88. package/core/audits/webmcp-schema-validity.js +1 -1
  89. package/core/computed/js-bundles.d.ts +1 -1
  90. package/core/computed/load-simulator.d.ts +1 -1
  91. package/core/computed/metrics/first-contentful-paint-all-frames.d.ts +1 -1
  92. package/core/computed/metrics/first-contentful-paint.d.ts +1 -1
  93. package/core/computed/metrics/interactive.d.ts +1 -1
  94. package/core/computed/metrics/lantern-metric.d.ts +6 -6
  95. package/core/computed/metrics/largest-contentful-paint-all-frames.d.ts +1 -1
  96. package/core/computed/metrics/largest-contentful-paint.d.ts +1 -1
  97. package/core/computed/metrics/max-potential-fid.d.ts +1 -1
  98. package/core/computed/metrics/speed-index.d.ts +1 -1
  99. package/core/computed/metrics/time-to-first-byte.d.ts +1 -1
  100. package/core/computed/metrics/total-blocking-time.d.ts +1 -1
  101. package/core/computed/module-duplication.d.ts +1 -1
  102. package/core/computed/page-dependency-graph.d.ts +1 -1
  103. package/core/computed/unused-css.d.ts +1 -1
  104. package/core/config/agentic-browsing-config.d.ts +1 -0
  105. package/core/config/agentic-browsing-config.js +3 -2
  106. package/core/config/config-helpers.d.ts +1 -0
  107. package/core/config/config-helpers.js +1 -1
  108. package/core/config/config-plugin.d.ts +1 -0
  109. package/core/config/config-plugin.js +1 -0
  110. package/core/config/config.d.ts +1 -0
  111. package/core/config/config.js +1 -0
  112. package/core/config/constants.d.ts +1 -0
  113. package/core/config/constants.js +1 -0
  114. package/core/config/default-config.js +45 -0
  115. package/core/config/experimental-config.d.ts +1 -9
  116. package/core/config/experimental-config.js +2 -0
  117. package/core/config/filters.d.ts +1 -0
  118. package/core/config/filters.js +1 -0
  119. package/core/config/full-config.d.ts +1 -5
  120. package/core/config/full-config.js +2 -0
  121. package/core/config/lr-desktop-config.d.ts +1 -0
  122. package/core/config/lr-desktop-config.js +1 -0
  123. package/core/config/lr-mobile-config.d.ts +1 -5
  124. package/core/config/lr-mobile-config.js +2 -0
  125. package/core/config/perf-config.d.ts +1 -5
  126. package/core/config/perf-config.js +2 -0
  127. package/core/config/validation.d.ts +1 -0
  128. package/core/config/validation.js +1 -0
  129. package/core/gather/driver/execution-context.d.ts +23 -0
  130. package/core/gather/driver/execution-context.js +86 -1
  131. package/core/gather/driver/storage.js +13 -0
  132. package/core/gather/driver.d.ts +1 -1
  133. package/core/gather/gatherers/accessibility.js +1 -0
  134. package/core/gather/gatherers/agentic/llms-txt.js +5 -1
  135. package/core/gather/gatherers/seo/robots-txt.js +6 -1
  136. package/core/gather/gatherers/trace-elements.d.ts +4 -1
  137. package/core/gather/gatherers/trace-elements.js +24 -28
  138. package/core/gather/gatherers/webmcp-schema.js +9 -16
  139. package/core/gather/gatherers/webmcp.d.ts +5 -0
  140. package/core/gather/gatherers/webmcp.js +34 -27
  141. package/core/index.d.ts +0 -1
  142. package/core/index.js +0 -1
  143. package/core/lib/baseline/web-features-data.json +1179 -0
  144. package/core/lib/baseline/web-features-metadata.json +1 -1
  145. package/core/lib/deprecations-strings.d.ts +117 -87
  146. package/core/lib/deprecations-strings.js +31 -0
  147. package/core/lib/script-helpers.js +13 -1
  148. package/core/scoring.d.ts +58 -58
  149. package/dist/report/bundle.esm.js +4 -7
  150. package/dist/report/flow.js +6 -9
  151. package/dist/report/standalone.js +20 -12
  152. package/flow-report/types/flow-report.d.ts +2 -2
  153. package/package.json +31 -31
  154. package/report/assets/styles.css +1 -4
  155. package/report/renderer/components.js +1 -1
  156. package/report/renderer/details-renderer.d.ts +6 -1
  157. package/report/renderer/details-renderer.js +11 -3
  158. package/report/renderer/explodey-gauge.js +9 -7
  159. package/report/renderer/i18n-formatter.d.ts +1 -1
  160. package/report/renderer/logger.js +18 -4
  161. package/report/renderer/text-encoding.js +1 -1
  162. package/report/types/html-renderer.d.ts +2 -2
  163. package/shared/localization/locales/ar-XB.json +290 -65
  164. package/shared/localization/locales/ar.json +290 -65
  165. package/shared/localization/locales/bg.json +290 -65
  166. package/shared/localization/locales/ca.json +295 -70
  167. package/shared/localization/locales/cs.json +290 -65
  168. package/shared/localization/locales/da.json +294 -69
  169. package/shared/localization/locales/de.json +295 -70
  170. package/shared/localization/locales/el.json +290 -65
  171. package/shared/localization/locales/en-GB.json +290 -65
  172. package/shared/localization/locales/en-US.json +112 -76
  173. package/shared/localization/locales/en-XA.json +253 -64
  174. package/shared/localization/locales/en-XL.json +112 -76
  175. package/shared/localization/locales/es-419.json +290 -65
  176. package/shared/localization/locales/es.json +298 -73
  177. package/shared/localization/locales/fi.json +290 -65
  178. package/shared/localization/locales/fil.json +290 -65
  179. package/shared/localization/locales/fr.json +294 -69
  180. package/shared/localization/locales/he.json +293 -68
  181. package/shared/localization/locales/hi.json +291 -66
  182. package/shared/localization/locales/hr.json +290 -65
  183. package/shared/localization/locales/hu.json +290 -65
  184. package/shared/localization/locales/id.json +290 -65
  185. package/shared/localization/locales/it.json +294 -69
  186. package/shared/localization/locales/ja.json +290 -65
  187. package/shared/localization/locales/ko.json +290 -65
  188. package/shared/localization/locales/lt.json +290 -65
  189. package/shared/localization/locales/lv.json +290 -65
  190. package/shared/localization/locales/nl.json +290 -65
  191. package/shared/localization/locales/no.json +290 -65
  192. package/shared/localization/locales/pl.json +290 -65
  193. package/shared/localization/locales/pt-PT.json +291 -66
  194. package/shared/localization/locales/pt.json +290 -65
  195. package/shared/localization/locales/ro.json +290 -65
  196. package/shared/localization/locales/ru.json +301 -76
  197. package/shared/localization/locales/sk.json +291 -66
  198. package/shared/localization/locales/sl.json +290 -65
  199. package/shared/localization/locales/sr-Latn.json +290 -65
  200. package/shared/localization/locales/sr.json +290 -65
  201. package/shared/localization/locales/sv.json +297 -72
  202. package/shared/localization/locales/ta.json +291 -66
  203. package/shared/localization/locales/te.json +293 -68
  204. package/shared/localization/locales/th.json +291 -66
  205. package/shared/localization/locales/tr.json +290 -65
  206. package/shared/localization/locales/uk.json +290 -65
  207. package/shared/localization/locales/vi.json +291 -66
  208. package/shared/localization/locales/zh-HK.json +292 -67
  209. package/shared/localization/locales/zh-TW.json +291 -66
  210. package/shared/localization/locales/zh.json +291 -66
  211. package/shared/types/shared.d.ts +1 -1
  212. package/tsconfig-base.json +2 -1
  213. package/tsconfig.json +2 -0
  214. package/types/artifacts.d.ts +1 -1
  215. package/types/internal/rxjs.d.ts +1 -1
  216. package/types/internal/smokehouse.d.ts +8 -2
  217. package/types.d.ts +2 -0
  218. package/types.js +11 -0
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: lighthouse-verification
3
+ description: Instructions for how to validate changes made to Lighthouse. Must invoke when making changes to Lighthouse.
4
+ ---
5
+
6
+ # Lighthouse verification
7
+
8
+ Run a subset of the unit tests like this:
9
+
10
+ ```
11
+ yarn mocha test/files/to/run
12
+ ```
13
+
14
+ Don't run "yarn unit" - it takes too long.
15
+
16
+ Run typechecking and linter:
17
+
18
+ ```
19
+ yarn type-check
20
+ yarn lint --fix
21
+ ```
22
+
23
+ Make sure to run some unit tests and the type-checker / linter after making changes.
@@ -9,11 +9,11 @@ export function getFlags(manualArgv?: string | undefined, options?: {
9
9
  /**
10
10
  * @param {string=} manualArgv
11
11
  */
12
- export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yargs.Omit<yargs.Omit<yargs.Omit<yargs.Omit<yargs.Omit<yargs.Omit<yargs.Omit<yargs.Omit<{
12
+ export function getYargsParser(manualArgv?: string | undefined): import("yargs").Argv<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<import("yargs").Omit<{
13
13
  _: string[] | undefined;
14
14
  } & {
15
15
  "cli-flags-path": unknown;
16
- }, "verbose" | "quiet"> & yargs.InferredOptionTypes<{
16
+ }, "verbose" | "quiet"> & import("yargs").InferredOptionTypes<{
17
17
  verbose: {
18
18
  type: "boolean";
19
19
  default: boolean;
@@ -24,7 +24,7 @@ export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yarg
24
24
  default: boolean;
25
25
  describe: string;
26
26
  };
27
- }>, "hostname" | "port" | "screenEmulation" | "emulatedUserAgent" | "preset" | "save-assets" | "list-all-audits" | "list-locales" | "list-trace-categories" | "debug-navigation" | "additional-trace-categories" | "config-path" | "chrome-flags" | "form-factor" | "max-wait-for-load" | "enable-error-reporting" | "gather-mode" | "audit-mode" | "only-audits" | "only-categories" | "skip-audits" | "disable-full-page-screenshot" | "ignore-status-code"> & yargs.InferredOptionTypes<{
27
+ }>, "port" | "screenEmulation" | "emulatedUserAgent" | "hostname" | "preset" | "save-assets" | "list-all-audits" | "list-locales" | "list-trace-categories" | "debug-navigation" | "additional-trace-categories" | "config-path" | "chrome-flags" | "form-factor" | "max-wait-for-load" | "enable-error-reporting" | "gather-mode" | "audit-mode" | "only-audits" | "only-categories" | "skip-audits" | "disable-full-page-screenshot" | "ignore-status-code"> & import("yargs").InferredOptionTypes<{
28
28
  'save-assets': {
29
29
  type: "boolean";
30
30
  default: boolean;
@@ -133,7 +133,7 @@ export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yarg
133
133
  type: "boolean";
134
134
  describe: string;
135
135
  };
136
- }>, "output" | "view" | "output-path"> & yargs.InferredOptionTypes<{
136
+ }>, "output" | "view" | "output-path"> & import("yargs").InferredOptionTypes<{
137
137
  output: {
138
138
  type: "array";
139
139
  default: readonly ["html"];
@@ -150,7 +150,7 @@ export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yarg
150
150
  default: boolean;
151
151
  describe: string;
152
152
  };
153
- }>, "locale" | "blocked-url-patterns" | "disable-storage-reset" | "throttling-method"> & yargs.InferredOptionTypes<{
153
+ }>, "locale" | "blocked-url-patterns" | "disable-storage-reset" | "throttling-method"> & import("yargs").InferredOptionTypes<{
154
154
  locale: {
155
155
  coerce: typeof coerceLocale;
156
156
  describe: string;
@@ -169,8 +169,8 @@ export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yarg
169
169
  describe: string;
170
170
  };
171
171
  }> & {
172
- throttling: import("../types/lh.js").ThrottlingSettings | undefined;
173
- }, "channel" | "plugins" | "extra-headers" | "precomputed-lantern-data-path" | "lantern-data-output-path" | "chrome-ignore-default-flags"> & yargs.InferredOptionTypes<{
172
+ throttling: import("../types.js").ThrottlingSettings | undefined;
173
+ }, "channel" | "plugins" | "extra-headers" | "precomputed-lantern-data-path" | "lantern-data-output-path" | "chrome-ignore-default-flags"> & import("yargs").InferredOptionTypes<{
174
174
  'extra-headers': {
175
175
  coerce: typeof coerceExtraHeaders;
176
176
  describe: string;
@@ -202,9 +202,8 @@ export function getYargsParser(manualArgv?: string | undefined): yargs.Argv<yarg
202
202
  }, "throttling-method"> & {
203
203
  "throttling-method": "devtools" | "simulate" | "provided" | undefined;
204
204
  }, "preset"> & {
205
- preset: "desktop" | "experimental" | "perf" | undefined;
205
+ preset: "desktop" | "perf" | "experimental" | undefined;
206
206
  }>;
207
- import yargs from 'yargs';
208
207
  /**
209
208
  * Take yarg's unchecked object value and ensure it is a proper LH.screenEmulationSettings.
210
209
  * @param {unknown} value
package/cli/cli-flags.js CHANGED
@@ -54,7 +54,7 @@ function getYargsParser(manualArgv) {
54
54
  'Path to JSON file of HTTP Header key/value pairs to send in requests')
55
55
  .example(
56
56
  'lighthouse <url> --only-categories=performance,seo',
57
- 'Only run the specified categories. Available categories: accessibility, best-practices, performance, seo')
57
+ 'Only run the specified categories. Available categories: accessibility, best-practices, performance, seo, agentic-browsing')
58
58
 
59
59
  // We only have the single string positional argument, the url.
60
60
  .option('_', {
@@ -188,7 +188,7 @@ function getYargsParser(manualArgv) {
188
188
  array: true,
189
189
  type: 'string',
190
190
  coerce: splitCommaSeparatedValues,
191
- describe: 'Only run the specified categories. Available categories: accessibility, best-practices, performance, seo',
191
+ describe: 'Only run the specified categories. Available categories: accessibility, best-practices, performance, seo, agentic-browsing',
192
192
  },
193
193
  'skip-audits': {
194
194
  array: true,
@@ -84,6 +84,8 @@ for (const array of Object.values(exclusions)) {
84
84
  array.push('issues-mixed-content');
85
85
  // works most of the time, but since it uses a live site it can be flaky
86
86
  array.push('trusted-types-directive-present');
87
+ // https://csp.withgoogle.com/docs/index.html is down
88
+ array.push('origin-isolation-coop-present');
87
89
  }
88
90
 
89
91
  export default exclusions;
@@ -80,11 +80,15 @@ async function runBundledLighthouse(url, config, testRunnerOptions) {
80
80
  const thirdPartyWeb = global.thirdPartyWeb;
81
81
  thirdPartyWeb.provideThirdPartyWeb(thirdPartyWebLib);
82
82
 
83
+ const chromeFlags = [];
84
+ if (testRunnerOptions?.headless) chromeFlags.push('--headless=new');
85
+ if (testRunnerOptions?.chromeFlags) {
86
+ chromeFlags.push(...testRunnerOptions.chromeFlags.split(' '));
87
+ }
88
+
83
89
  // Launch and connect to Chrome.
84
90
  const launchedChrome = await ChromeLauncher.launch({
85
- chromeFlags: [
86
- testRunnerOptions?.headless ? '--headless=new' : '',
87
- ],
91
+ chromeFlags,
88
92
  });
89
93
  const port = launchedChrome.port;
90
94
 
@@ -66,7 +66,11 @@ async function internalRun(url, tmpPath, config, logger, options) {
66
66
  '--quiet',
67
67
  ];
68
68
 
69
- if (headless) args.push('--chrome-flags="--headless=new"');
69
+ let chromeFlags = '';
70
+ if (headless) chromeFlags += '--headless=new ';
71
+ if (options && options.chromeFlags) chromeFlags += options.chromeFlags;
72
+
73
+ if (chromeFlags) args.push(`--chrome-flags="${chromeFlags.trim()}"`);
70
74
 
71
75
  // Config can be optionally provided.
72
76
  if (config) {
@@ -56,11 +56,15 @@ async function runBundledLighthouse(url, config, testRunnerOptions) {
56
56
  // Load bundle.
57
57
  const {navigation} = await import(LH_ROOT + '/dist/lighthouse-devtools-mcp-bundle.js');
58
58
 
59
+ const chromeFlags = [];
60
+ if (testRunnerOptions?.headless) chromeFlags.push('--headless=new');
61
+ if (testRunnerOptions?.chromeFlags) {
62
+ chromeFlags.push(...testRunnerOptions.chromeFlags.split(' '));
63
+ }
64
+
59
65
  // Launch and connect to Chrome.
60
66
  const launchedChrome = await ChromeLauncher.launch({
61
- chromeFlags: [
62
- testRunnerOptions?.headless ? '--headless=new' : '',
63
- ],
67
+ chromeFlags,
64
68
  });
65
69
  const port = launchedChrome.port;
66
70
 
@@ -46,9 +46,12 @@ async function setup() {
46
46
  */
47
47
  async function runLighthouse(url, config, logger, testRunnerOptions) {
48
48
  const chromeFlags = [
49
- testRunnerOptions?.headless ? '--headless=new' : '',
50
49
  `--custom-devtools-frontend=file://${devtoolsDir}/out/LighthouseIntegration/gen/front_end`,
51
50
  ];
51
+ if (testRunnerOptions?.headless) chromeFlags.push('--headless=new');
52
+ if (testRunnerOptions?.chromeFlags) {
53
+ chromeFlags.push(...testRunnerOptions.chromeFlags.split(' '));
54
+ }
52
55
  // TODO: `testUrlFromDevtools` should accept a logger, so we get some output even for time outs.
53
56
  const {lhr, artifacts, logs} = await testUrlFromDevtools(url, {
54
57
  config,
@@ -136,7 +136,7 @@ function purpleify(str) {
136
136
  * @return {Promise<SmokehouseResult>}
137
137
  */
138
138
  async function runSmokeTest(smokeTestDefn, testOptions) {
139
- const {id, expectations, config} = smokeTestDefn;
139
+ const {id, expectations, config, testRunnerOptions: customTestRunnerOptions} = smokeTestDefn;
140
140
  const {
141
141
  lighthouseRunner,
142
142
  retries,
@@ -145,6 +145,11 @@ async function runSmokeTest(smokeTestDefn, testOptions) {
145
145
  } = testOptions;
146
146
  const requestedUrl = expectations.lhr.requestedUrl;
147
147
 
148
+ const mergedTestRunnerOptions = {
149
+ ...testRunnerOptions,
150
+ ...customTestRunnerOptions,
151
+ };
152
+
148
153
  console.log(`${purpleify(id)} smoketest starting…`);
149
154
 
150
155
  // Rerun test until there's a passing result or retries are exhausted to prevent flakes.
@@ -170,7 +175,7 @@ async function runSmokeTest(smokeTestDefn, testOptions) {
170
175
  reject(new Error('Timed out waiting for provided lighthouseRunner')), 1000 * 120);
171
176
  });
172
177
  const timedResult = await Promise.race([
173
- lighthouseRunner(requestedUrl, config, logger, testRunnerOptions),
178
+ lighthouseRunner(requestedUrl, config, logger, mergedTestRunnerOptions),
174
179
  timeoutPromise,
175
180
  ]);
176
181
  result = {
@@ -11,5 +11,5 @@ export function chromiumVersionCheck(opts: {
11
11
  * @param {number[]} versionA
12
12
  * @param {number[]} versionB
13
13
  */
14
- export function compareVersions(versionA: number[], versionB: number[]): 1 | 0 | -1;
14
+ export function compareVersions(versionA: number[], versionB: number[]): 1 | -1 | 0;
15
15
  //# sourceMappingURL=version-check.d.ts.map
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Access keys let users quickly focus a part of the page. For proper ' +
22
22
  'navigation, each access key must be unique. ' +
23
- '[Learn more about access keys](https://dequeuniversity.com/rules/axe/4.11/accesskeys).',
23
+ '[Learn more about access keys](https://dequeuniversity.com/rules/axe/4.12/accesskeys).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Each ARIA `role` supports a specific subset of `aria-*` attributes. ' +
22
22
  'Mismatching these invalidates the `aria-*` attributes. [Learn ' +
23
- 'how to match ARIA attributes to their roles](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-attr).',
23
+ 'how to match ARIA attributes to their roles](https://dequeuniversity.com/rules/axe/4.12/aria-allowed-attr).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Many HTML elements can only be assigned certain ARIA roles. Using ARIA ' +
22
22
  'roles where they are not allowed can interfere with the accessibility of the web page. ' +
23
- '[Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-role).',
23
+ '[Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.12/aria-allowed-role).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that evaluates if important HTML elements do not have accessible names. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: '`button`, `link`, and `menuitem` elements do not have accessible names.',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should have accessible names for HTML elements. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: '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 how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.11/aria-command-name).',
21
+ description: '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 how to make command elements more accessible](https://dequeuniversity.com/rules/axe/4.12/aria-command-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -19,7 +19,7 @@ const UIStrings = {
19
19
  failureTitle: 'ARIA attributes are not used as specified for the element\'s role',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Some ARIA attributes are only allowed on an element under certain conditions. ' +
22
- '[Learn more about conditional ARIA attributes](https://dequeuniversity.com/rules/axe/4.11/aria-conditional-attr).',
22
+ '[Learn more about conditional ARIA attributes](https://dequeuniversity.com/rules/axe/4.12/aria-conditional-attr).',
23
23
  };
24
24
 
25
25
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -19,7 +19,7 @@ const UIStrings = {
19
19
  failureTitle: 'Deprecated ARIA roles were used',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Deprecated ARIA roles may not be processed correctly by assistive technology. ' +
22
- '[Learn more about deprecated ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-deprecated-role).',
22
+ '[Learn more about deprecated ARIA roles](https://dequeuniversity.com/rules/axe/4.12/aria-deprecated-role).',
23
23
  };
24
24
 
25
25
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -21,7 +21,7 @@ const UIStrings = {
21
21
  /** Description of a Lighthouse audit that tells the user *why* they should have accessible names for ARIA dialog elements. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
22
22
  description: 'ARIA dialog elements without accessible names may prevent screen readers users ' +
23
23
  'from discerning the purpose of these elements. ' +
24
- '[Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.11/aria-dialog-name).',
24
+ '[Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.12/aria-dialog-name).',
25
25
  };
26
26
 
27
27
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks if the html <body> element does not have an aria-hidden attribute set on it. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: '`[aria-hidden="true"]` is present on the document `<body>`',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: 'Assistive technologies, like screen readers, work inconsistently when `aria-hidden="true"` is set on the document `<body>`. [Learn how `aria-hidden` affects the document body](https://dequeuniversity.com/rules/axe/4.11/aria-hidden-body).',
21
+ description: 'Assistive technologies, like screen readers, work inconsistently when `aria-hidden="true"` is set on the document `<body>`. [Learn how `aria-hidden` affects the document body](https://dequeuniversity.com/rules/axe/4.12/aria-hidden-body).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks if all elements that have an aria-hidden attribute do not contain focusable descendent elements. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: '`[aria-hidden="true"]` elements contain focusable descendents',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: 'Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn how `aria-hidden` affects focusable elements](https://dequeuniversity.com/rules/axe/4.11/aria-hidden-focus).',
21
+ description: 'Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. [Learn how `aria-hidden` affects focusable elements](https://dequeuniversity.com/rules/axe/4.12/aria-hidden-focus).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks that all ARIA input fields have an accessible name. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA input fields do not have accessible names',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: '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 about input field labels](https://dequeuniversity.com/rules/axe/4.11/aria-input-field-name).',
21
+ description: '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 about input field labels](https://dequeuniversity.com/rules/axe/4.12/aria-input-field-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that evaluates if meter HTML elements do not have accessible names. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA `meter` elements do not have accessible names.',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should have accessible names for HTML 'meter' elements. This is displayed after a user expands the section to see more. No character length limits. 'Learn how...' becomes link text to additional documentation. */
21
- description: 'When a meter 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 how to name `meter` elements](https://dequeuniversity.com/rules/axe/4.11/aria-meter-name).',
21
+ description: 'When a meter 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 how to name `meter` elements](https://dequeuniversity.com/rules/axe/4.12/aria-meter-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that evaluates if progressbar HTML elements do not have accessible names. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA `progressbar` elements do not have accessible names.',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: '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 how to label `progressbar` elements](https://dequeuniversity.com/rules/axe/4.11/aria-progressbar-name).',
21
+ description: '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 how to label `progressbar` elements](https://dequeuniversity.com/rules/axe/4.12/aria-progressbar-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Using ARIA attributes in roles where they are prohibited can mean that important ' +
22
22
  'information is not communicated to users of assistive technologies. ' +
23
- '[Learn more about prohibited ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-prohibited-attr).',
23
+ '[Learn more about prohibited ARIA roles](https://dequeuniversity.com/rules/axe/4.12/aria-prohibited-attr).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -19,7 +19,7 @@ const UIStrings = {
19
19
  failureTitle: '`[role]`s do not have all required `[aria-*]` attributes',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Some ARIA roles have required attributes that describe the state ' +
22
- 'of the element to screen readers. [Learn more about roles and required attributes](https://dequeuniversity.com/rules/axe/4.11/aria-required-attr).',
22
+ 'of the element to screen readers. [Learn more about roles and required attributes](https://dequeuniversity.com/rules/axe/4.12/aria-required-attr).',
23
23
  };
24
24
 
25
25
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -23,7 +23,7 @@ const UIStrings = {
23
23
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
24
24
  description: 'Some ARIA parent roles must contain specific child roles to perform ' +
25
25
  'their intended accessibility functions. ' +
26
- '[Learn more about roles and required children elements](https://dequeuniversity.com/rules/axe/4.11/aria-required-children).',
26
+ '[Learn more about roles and required children elements](https://dequeuniversity.com/rules/axe/4.12/aria-required-children).',
27
27
  };
28
28
 
29
29
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -21,7 +21,7 @@ const UIStrings = {
21
21
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
22
22
  description: 'Some ARIA child roles must be contained by specific parent roles to ' +
23
23
  'properly perform their intended accessibility functions. ' +
24
- '[Learn more about ARIA roles and required parent element](https://dequeuniversity.com/rules/axe/4.11/aria-required-parent).',
24
+ '[Learn more about ARIA roles and required parent element](https://dequeuniversity.com/rules/axe/4.12/aria-required-parent).',
25
25
  };
26
26
 
27
27
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'ARIA roles must have valid values in order to perform their ' +
22
22
  'intended accessibility functions. ' +
23
- '[Learn more about valid ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-roles).',
23
+ '[Learn more about valid ARIA roles](https://dequeuniversity.com/rules/axe/4.12/aria-roles).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Adding `role=text` around a text node split by markup enables VoiceOver to treat ' +
22
22
  'it as one phrase, but the element\'s focusable descendents will not be announced. ' +
23
- '[Learn more about the `role=text` attribute](https://dequeuniversity.com/rules/axe/4.11/aria-text).',
23
+ '[Learn more about the `role=text` attribute](https://dequeuniversity.com/rules/axe/4.12/aria-text).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks that all ARIA toggle fields have an accessible name. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA toggle fields do not have accessible names',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: '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 about toggle fields](https://dequeuniversity.com/rules/axe/4.11/aria-toggle-field-name).',
21
+ description: '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 about toggle fields](https://dequeuniversity.com/rules/axe/4.12/aria-toggle-field-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that evaluates if tooltip HTML elements do not have accessible names. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA `tooltip` elements do not have accessible names.',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should have accessible names for HTML 'tooltip' elements. This is displayed after a user expands the section to see more. No character length limits. 'Learn how...' becomes link text to additional documentation. */
21
- description: 'When a tooltip 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 how to name `tooltip` elements](https://dequeuniversity.com/rules/axe/4.11/aria-tooltip-name).',
21
+ description: 'When a tooltip 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 how to name `tooltip` elements](https://dequeuniversity.com/rules/axe/4.12/aria-tooltip-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that evaluates if treeitem HTML elements do not have accessible names. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA `treeitem` elements do not have accessible names.',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should have accessible names for HTML elements. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: 'When a `treeitem` 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 about labeling `treeitem` elements](https://dequeuniversity.com/rules/axe/4.11/aria-treeitem-name).',
21
+ description: 'When a `treeitem` 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 about labeling `treeitem` elements](https://dequeuniversity.com/rules/axe/4.12/aria-treeitem-name).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Assistive technologies, like screen readers, can\'t interpret ARIA ' +
22
22
  'attributes with invalid values. [Learn ' +
23
- 'more about valid values for ARIA attributes](https://dequeuniversity.com/rules/axe/4.11/aria-valid-attr-value).',
23
+ 'more about valid values for ARIA attributes](https://dequeuniversity.com/rules/axe/4.12/aria-valid-attr-value).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Assistive technologies, like screen readers, can\'t interpret ARIA ' +
22
22
  'attributes with invalid names. [Learn ' +
23
- 'more about valid ARIA attributes](https://dequeuniversity.com/rules/axe/4.11/aria-valid-attr).',
23
+ 'more about valid ARIA attributes](https://dequeuniversity.com/rules/axe/4.12/aria-valid-attr).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'The `autocomplete` attribute values must be valid and correctly applied for ' +
22
22
  'screen readers to function correctly. ' +
23
- '[Learn more about valid autocomplete values](https://dequeuniversity.com/rules/axe/4.11/autocomplete-valid).',
23
+ '[Learn more about valid autocomplete values](https://dequeuniversity.com/rules/axe/4.12/autocomplete-valid).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'When a button doesn\'t have an accessible name, screen readers announce it ' +
22
22
  'as "button", making it unusable for users who rely on screen readers. ' +
23
- '[Learn how to make buttons more accessible](https://dequeuniversity.com/rules/axe/4.11/button-name).',
23
+ '[Learn how to make buttons more accessible](https://dequeuniversity.com/rules/axe/4.12/button-name).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -21,7 +21,7 @@ const UIStrings = {
21
21
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
22
22
  description: 'Adding ways to bypass repetitive content lets keyboard users navigate the ' +
23
23
  'page more efficiently. ' +
24
- '[Learn more about bypass blocks](https://dequeuniversity.com/rules/axe/4.11/bypass).',
24
+ '[Learn more about bypass blocks](https://dequeuniversity.com/rules/axe/4.12/bypass).',
25
25
  };
26
26
 
27
27
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -21,7 +21,7 @@ const UIStrings = {
21
21
  'sufficient contrast ratio.',
22
22
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
23
23
  description: 'Low-contrast text is difficult or impossible for many users to read. ' +
24
- '[Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast).',
24
+ '[Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.12/color-contrast).',
25
25
  };
26
26
 
27
27
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -22,7 +22,7 @@ const UIStrings = {
22
22
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
23
23
  description: 'When definition lists are not properly marked up, screen readers may produce ' +
24
24
  'confusing or inaccurate output. ' +
25
- '[Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.11/definition-list).',
25
+ '[Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.12/definition-list).',
26
26
  };
27
27
 
28
28
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Definition list items (`<dt>` and `<dd>`) must be wrapped in a ' +
22
22
  'parent `<dl>` element to ensure that screen readers can properly announce them. ' +
23
- '[Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.11/dlitem).',
23
+ '[Learn how to structure definition lists correctly](https://dequeuniversity.com/rules/axe/4.12/dlitem).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'The title gives screen reader users an overview of the page, and search ' +
22
22
  'engine users rely on it heavily to determine if a page is relevant to their search. ' +
23
- '[Learn more about document titles](https://dequeuniversity.com/rules/axe/4.11/document-title).',
23
+ '[Learn more about document titles](https://dequeuniversity.com/rules/axe/4.12/document-title).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks if there are any duplicate ARIA IDs on the page. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'ARIA IDs are not unique',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: 'The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.11/duplicate-id-aria).',
21
+ description: 'The value of an ARIA ID must be unique to prevent other instances from being overlooked by assistive technologies. [Learn how to fix duplicate ARIA IDs](https://dequeuniversity.com/rules/axe/4.12/duplicate-id-aria).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -20,7 +20,7 @@ const UIStrings = {
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'A heading with no content or inaccessible text prevent screen reader users from ' +
22
22
  'accessing information on the page\'s structure. ' +
23
- '[Learn more about headings](https://dequeuniversity.com/rules/axe/4.11/empty-heading).',
23
+ '[Learn more about headings](https://dequeuniversity.com/rules/axe/4.12/empty-heading).',
24
24
  };
25
25
 
26
26
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -18,7 +18,7 @@ const UIStrings = {
18
18
  /** Title of an accessibility audit that checks if any form fields have multiple label elements. This title is descriptive of the failing state and is shown to users when there is a failure that needs to be addressed. */
19
19
  failureTitle: 'Form fields have multiple labels',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
- description: '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 how to use form labels](https://dequeuniversity.com/rules/axe/4.11/form-field-multiple-labels).',
21
+ description: '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 how to use form labels](https://dequeuniversity.com/rules/axe/4.12/form-field-multiple-labels).',
22
22
  };
23
23
 
24
24
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
@@ -19,7 +19,7 @@ const UIStrings = {
19
19
  failureTitle: '`<frame>` or `<iframe>` elements do not have a title',
20
20
  /** Description of a Lighthouse audit that tells the user *why* they should try to pass. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
21
21
  description: 'Screen reader users rely on frame titles to describe the contents of frames. ' +
22
- '[Learn more about frame titles](https://dequeuniversity.com/rules/axe/4.11/frame-title).',
22
+ '[Learn more about frame titles](https://dequeuniversity.com/rules/axe/4.12/frame-title).',
23
23
  };
24
24
 
25
25
  const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);