Skip to content

Commit b315698

Browse files
committedJun 21, 2020
Allow negative tabindex in aria-activedescendant-has-tabindex
1 parent 85801bd commit b315698

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed
 

‎__tests__/src/rules/aria-activedescendant-has-tabindex-test.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import rule from '../../../src/rules/aria-activedescendant-has-tabindex';
1818
const ruleTester = new RuleTester();
1919

2020
const expectedError = {
21-
message: 'An element that manages focus with `aria-activedescendant` must be tabbable',
21+
message: 'An element that manages focus with `aria-activedescendant` must have a tabindex',
2222
type: 'JSXOpeningElement',
2323
};
2424

@@ -57,25 +57,28 @@ ruleTester.run('aria-activedescendant-has-tabindex', rule, {
5757
{
5858
code: '<input aria-activedescendant={someID} />;',
5959
},
60+
{
61+
code: '<input aria-activedescendant={someID} tabIndex={1} />;',
62+
},
6063
{
6164
code: '<input aria-activedescendant={someID} tabIndex={0} />;',
6265
},
63-
].map(parserOptionsMapper),
64-
invalid: [
6566
{
66-
code: '<div aria-activedescendant={someID} />;',
67-
errors: [expectedError],
67+
code: '<input aria-activedescendant={someID} tabIndex={-1} />;',
6868
},
6969
{
7070
code: '<div aria-activedescendant={someID} tabIndex={-1} />;',
71-
errors: [expectedError],
7271
},
7372
{
7473
code: '<div aria-activedescendant={someID} tabIndex="-1" />;',
75-
errors: [expectedError],
7674
},
7775
{
7876
code: '<input aria-activedescendant={someID} tabIndex={-1} />;',
77+
},
78+
].map(parserOptionsMapper),
79+
invalid: [
80+
{
81+
code: '<div aria-activedescendant={someID} />;',
7982
errors: [expectedError],
8083
},
8184
].map(parserOptionsMapper),

‎src/rules/aria-activedescendant-has-tabindex.js

+6-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import isInteractiveElement from '../util/isInteractiveElement';
1313
// Rule Definition
1414
// ----------------------------------------------------------------------------
1515

16-
const errorMessage = 'An element that manages focus with `aria-activedescendant` must be tabbable';
16+
const errorMessage = 'An element that manages focus with `aria-activedescendant` must have a tabindex';
1717

1818
const schema = generateObjSchema();
1919

@@ -43,21 +43,17 @@ module.exports = {
4343
}
4444
const tabIndex = getTabIndex(getProp(attributes, 'tabIndex'));
4545

46-
// If this is an interactive element, tabIndex must be either left
47-
// unspecified allowing the inherent tabIndex to obtain or it must be
48-
// zero (allowing for positive, even though that is not ideal). It cannot
49-
// be given a negative value.
46+
// If this is an interactive element and the tabindex attribute is not specified,
47+
// or the tabIndex property was not mutated, then the tabIndex
48+
// property will be undefined.
5049
if (
5150
isInteractiveElement(type, attributes)
52-
&& (
53-
tabIndex === undefined
54-
|| tabIndex >= 0
55-
)
51+
&& tabIndex === undefined
5652
) {
5753
return;
5854
}
5955

60-
if (tabIndex >= 0) {
56+
if (tabIndex >= -1) {
6157
return;
6258
}
6359

0 commit comments

Comments
 (0)
Please sign in to comment.