Skip to content

Commit

Permalink
fix: provide jsdom support for focus trap mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
jeripeierSBB committed Sep 24, 2024
1 parent 0e13ad2 commit 099b973
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/elements/core/a11y/focus.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ describe('focus', () => {
<slot></slot>
<button id="disabled-button" disabled>Disabled button</button>
<span id="disabled-interactive-button" disabled disabled-interactive tabindex="0">Disabled interactive button</span>
<span id="disabled-interactive-button" tabindex="0" inert>Disabled interactive button</span>
`;
}
},
Expand Down
3 changes: 2 additions & 1 deletion src/elements/core/a11y/focus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export const IS_FOCUSABLE_QUERY = [
'summary:not(:disabled)',
'[tabindex]',
]
.map((selector) => `${selector}:not([disabled]:not([disabled-interactive]),[tabindex="-1"])`)
.map((selector) => `${selector}:not([disabled],[tabindex="-1"],[inert])`)
.concat('[disabled][disabled-interactive]:not([inert],[tabindex="-1"])')
.join(',');

// Note: the use of this function for more complex scenarios (with many nested elements) may be expensive.
Expand Down

0 comments on commit 099b973

Please sign in to comment.