-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Chip] Added :focus-visible test case
- Loading branch information
1 parent
367550a
commit 9ed548c
Showing
4 changed files
with
39 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { act, fireEvent } from './createClientRender'; | ||
|
||
/** | ||
* @param {HTMLElement} element | ||
*/ | ||
export function focusVisible(element) { | ||
act(() => { | ||
element.blur(); | ||
fireEvent.keyDown(document.body, { key: 'Tab' }); | ||
element.focus(); | ||
}); | ||
} | ||
|
||
export function simulatePointerDevice() { | ||
// first focus on a page triggers focus visible until a pointer event | ||
// has been dispatched | ||
fireEvent.pointerDown(document.body); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters