Skip to content

Commit c0c8b39

Browse files
authored
deps: upgrade deps (#16760)
1 parent b10639d commit c0c8b39

117 files changed

Lines changed: 3370 additions & 3370 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/devtools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
# 3) every change to file in Lighthouse repo important to running these tests.
5353
#
5454
# The number is how many times this hash key was manually updated to break the cache.
55-
key: ${{ runner.os }}-14-${{ env.WEEK_OF_THE_YEAR }}-${{ hashFiles('cdt-test-hash.txt') }}
56-
restore-keys: ${{ runner.os }}-14
55+
key: ${{ runner.os }}-15-${{ env.WEEK_OF_THE_YEAR }}-${{ hashFiles('cdt-test-hash.txt') }}
56+
restore-keys: ${{ runner.os }}-15
5757
- name: Set GHA_DEVTOOLS_CACHE_HIT
5858
if: steps.devtools-cache.outputs.cache-hit == 'true'
5959
run: echo "GHA_DEVTOOLS_CACHE_HIT=1" >> $GITHUB_ENV

cli/test/smokehouse/test-definitions/a11y.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ const expectations = {
227227
'selector': 'body > section > div#aria-prohibited-attr',
228228
'snippet': '<div id="aria-prohibited-attr" role="presentation" aria-label="Label">',
229229
'nodeLabel': 'Label',
230-
'explanation': 'Fix all of the following:\n aria-label attribute cannot be used with role "null".',
230+
'explanation': 'Fix all of the following:\n aria-label attribute cannot be used on a div with no valid role attribute.',
231231
},
232232
},
233233
],
@@ -988,7 +988,7 @@ const expectations = {
988988
'type': 'node',
989989
'selector': 'body > section > table#td-headers-attr',
990990
'snippet': '<table id="td-headers-attr">',
991-
'explanation': 'Fix all of the following:\n The headers attribute is not exclusively used to refer to other cells in the table',
991+
'explanation': 'Fix all of the following:\n The headers attribute is not exclusively used to refer to other header cells in the table',
992992
'nodeLabel': 'FOO\nfoo',
993993
},
994994
},

core/audits/accessibility/accesskeys.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const UIStrings = {
2020
/** 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. */
2121
description: 'Access keys let users quickly focus a part of the page. For proper ' +
2222
'navigation, each access key must be unique. ' +
23-
'[Learn more about access keys](https://dequeuniversity.com/rules/axe/4.10/accesskeys).',
23+
'[Learn more about access keys](https://dequeuniversity.com/rules/axe/4.11/accesskeys).',
2424
};
2525

2626
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-allowed-attr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const UIStrings = {
2020
/** 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. */
2121
description: 'Each ARIA `role` supports a specific subset of `aria-*` attributes. ' +
2222
'Mismatching these invalidates the `aria-*` attributes. [Learn ' +
23-
'how to match ARIA attributes to their roles](https://dequeuniversity.com/rules/axe/4.10/aria-allowed-attr).',
23+
'how to match ARIA attributes to their roles](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-attr).',
2424
};
2525

2626
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-allowed-role.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const UIStrings = {
2020
/** 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. */
2121
description: 'Many HTML elements can only be assigned certain ARIA roles. Using ARIA ' +
2222
'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.10/aria-allowed-role).',
23+
'[Learn more about ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-allowed-role).',
2424
};
2525

2626
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-command-name.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const UIStrings = {
1818
/** 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. */
1919
failureTitle: '`button`, `link`, and `menuitem` elements do not have accessible names.',
2020
/** 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.10/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.11/aria-command-name).',
2222
};
2323

2424
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-conditional-attr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const UIStrings = {
1919
failureTitle: 'ARIA attributes are not used as specified for the element\'s role',
2020
/** 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. */
2121
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.10/aria-conditional-attr).',
22+
'[Learn more about conditional ARIA attributes](https://dequeuniversity.com/rules/axe/4.11/aria-conditional-attr).',
2323
};
2424

2525
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-deprecated-role.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const UIStrings = {
1919
failureTitle: 'Deprecated ARIA roles were used',
2020
/** 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. */
2121
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.10/aria-deprecated-role).',
22+
'[Learn more about deprecated ARIA roles](https://dequeuniversity.com/rules/axe/4.11/aria-deprecated-role).',
2323
};
2424

2525
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-dialog-name.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const UIStrings = {
2121
/** 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. */
2222
description: 'ARIA dialog elements without accessible names may prevent screen readers users ' +
2323
'from discerning the purpose of these elements. ' +
24-
'[Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.10/aria-dialog-name).',
24+
'[Learn how to make ARIA dialog elements more accessible](https://dequeuniversity.com/rules/axe/4.11/aria-dialog-name).',
2525
};
2626

2727
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

core/audits/accessibility/aria-hidden-body.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const UIStrings = {
1818
/** 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. */
1919
failureTitle: '`[aria-hidden="true"]` is present on the document `<body>`',
2020
/** 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.10/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.11/aria-hidden-body).',
2222
};
2323

2424
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);

0 commit comments

Comments
 (0)