lighthouse 9.5.0-dev.20220419 → 9.5.0-dev.20220422
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/report/bundle.esm.js +1 -1
- package/dist/report/flow.js +1 -1
- package/dist/report/standalone.js +1 -1
- package/lighthouse-cli/test/smokehouse/readme.md +5 -4
- package/lighthouse-cli/test/smokehouse/report-assert.js +15 -10
- package/lighthouse-cli/test/smokehouse/version-check-test.js +45 -0
- package/lighthouse-cli/test/smokehouse/version-check.js +48 -0
- package/lighthouse-core/audits/accessibility/accesskeys.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-allowed-attr.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-command-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-hidden-body.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-hidden-focus.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-input-field-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-meter-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-progressbar-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-required-attr.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-required-children.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-required-parent.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-roles.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-toggle-field-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-tooltip-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-treeitem-name.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-valid-attr-value.js +1 -1
- package/lighthouse-core/audits/accessibility/aria-valid-attr.js +1 -1
- package/lighthouse-core/audits/accessibility/button-name.js +1 -1
- package/lighthouse-core/audits/accessibility/bypass.js +1 -1
- package/lighthouse-core/audits/accessibility/color-contrast.js +1 -1
- package/lighthouse-core/audits/accessibility/definition-list.js +1 -1
- package/lighthouse-core/audits/accessibility/dlitem.js +1 -1
- package/lighthouse-core/audits/accessibility/document-title.js +1 -1
- package/lighthouse-core/audits/accessibility/duplicate-id-active.js +1 -1
- package/lighthouse-core/audits/accessibility/duplicate-id-aria.js +1 -1
- package/lighthouse-core/audits/accessibility/form-field-multiple-labels.js +1 -1
- package/lighthouse-core/audits/accessibility/frame-title.js +1 -1
- package/lighthouse-core/audits/accessibility/heading-order.js +1 -1
- package/lighthouse-core/audits/accessibility/html-has-lang.js +1 -1
- package/lighthouse-core/audits/accessibility/html-lang-valid.js +1 -1
- package/lighthouse-core/audits/accessibility/image-alt.js +1 -1
- package/lighthouse-core/audits/accessibility/input-image-alt.js +1 -1
- package/lighthouse-core/audits/accessibility/label.js +1 -1
- package/lighthouse-core/audits/accessibility/link-name.js +1 -1
- package/lighthouse-core/audits/accessibility/list.js +1 -1
- package/lighthouse-core/audits/accessibility/listitem.js +1 -1
- package/lighthouse-core/audits/accessibility/meta-refresh.js +1 -1
- package/lighthouse-core/audits/accessibility/meta-viewport.js +1 -1
- package/lighthouse-core/audits/accessibility/object-alt.js +1 -1
- package/lighthouse-core/audits/accessibility/tabindex.js +1 -1
- package/lighthouse-core/audits/accessibility/td-headers-attr.js +1 -1
- package/lighthouse-core/audits/accessibility/th-has-data-cells.js +1 -1
- package/lighthouse-core/audits/accessibility/valid-lang.js +1 -1
- package/lighthouse-core/audits/accessibility/video-caption.js +1 -1
- package/lighthouse-core/audits/deprecations.js +4 -0
- package/lighthouse-core/config/default-config.js +1 -1
- package/package.json +1 -1
- package/report/assets/styles.css +5 -3
- package/report/renderer/components.js +1 -1
- package/report/test-assets/faux-psi.js +2 -0
- package/shared/localization/locales/en-US.json +45 -45
- package/shared/localization/locales/en-XL.json +45 -45
- package/third-party/snyk/snapshot.json +0 -1
- package/types/smokehouse.d.ts +1 -1
|
@@ -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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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,7 +450,7 @@
|
|
|
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>` or `<ol>` to be announced properly. [Learn more](https://
|
|
453
|
+
"message": "Screen readers require list items (`<li>`) to be contained within a parent `<ul>` or `<ol>` to be announced properly. [Learn more](https://dequeuniversity.com/rules/axe/4.4/listitem)."
|
|
454
454
|
},
|
|
455
455
|
"lighthouse-core/audits/accessibility/listitem.js | failureTitle": {
|
|
456
456
|
"message": "List items (`<li>`) are not contained within `<ul>` or `<ol>` parent elements."
|
|
@@ -459,7 +459,7 @@
|
|
|
459
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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://
|
|
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)."
|
|
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\"]`."
|
|
@@ -1674,7 +1674,7 @@
|
|
|
1674
1674
|
"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."
|
|
1675
1675
|
},
|
|
1676
1676
|
"lighthouse-core/config/default-config.js | a11yCategoryManualDescription": {
|
|
1677
|
-
"message": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://
|
|
1677
|
+
"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/)."
|
|
1678
1678
|
},
|
|
1679
1679
|
"lighthouse-core/config/default-config.js | a11yCategoryTitle": {
|
|
1680
1680
|
"message": "Accessibility"
|