-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change descriptive text for SR on search * Add idpBanner as description for list * Adjust focusability search/reset button * Ensure no results are announced to SR * Ensure search results are announced to SR * Handle accessibility of previous selection section - add notification of which element was deleted - ensure focus remains ok * Ensure SR users hear no access title text * Handle focus of request access form steps * Ensure form validation & success is handled correctly * Ensure SR users hear no access title text * Fix bug where noacces isn't always hidden * Ensure delete idp button has descriptive text * Change title text for remaining section * Change title text for remaining section + remove form * Hide noaccess disabled button from SR * Ensure request form announcement is emptied on success * Remove debug toolbar before a11y tests * Fix weird missing variable * Revert "Remove debug toolbar before a11y tests" This reverts commit adf8df2
- Loading branch information
Koen Cornelis
authored
Apr 1, 2021
1 parent
5ed55c0
commit e7b253e
Showing
31 changed files
with
257 additions
and
60 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,12 @@ | ||
import {hideElement} from './hideElement'; | ||
|
||
/** | ||
* Hide an element both visually and from keyboard users (taborder). | ||
* | ||
* @param element HTML Element the element to hide. | ||
* @param visuallyOnly boolean whether to hide visually only or not | ||
*/ | ||
export const hideElementNoTab = (element, visuallyOnly = false) => { | ||
element.setAttribute('tabindex', '-1'); | ||
hideElement(element, visuallyOnly); | ||
}; |
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,12 @@ | ||
import {showElement} from './showElement'; | ||
|
||
/** | ||
* Show an element by removing the hidden class. | ||
* | ||
* @param element HTML Element the element to show. | ||
* @param visuallyOnly boolean whether to show visually only or not | ||
*/ | ||
export const showElementAlsoTab = (element, visuallyOnly = false) => { | ||
element.removeAttribute('tabindex'); | ||
showElement(element, visuallyOnly); | ||
}; |
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
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
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
Oops, something went wrong.