diff --git a/_rules/focusable-no-keyboard-trap-non-standard-nav-ebe86a.md b/_rules/focusable-no-keyboard-trap-non-standard-nav-ebe86a.md index af0037814a..e03dd63300 100755 --- a/_rules/focusable-no-keyboard-trap-non-standard-nav-ebe86a.md +++ b/_rules/focusable-no-keyboard-trap-non-standard-nav-ebe86a.md @@ -51,7 +51,7 @@ For each target element focus can cycle to the browser UI by using the method ad ### Accessibility Support -There are no accessibility support issues known. +Some browsers have settings that will immediately cycle focus back to the web document. This fulfills the expectation because focus can cycle to the browser UI and the browser UI cycles focus back to the web document. ### Bibliography diff --git a/_rules/focusable-no-keyboard-trap-standard-nav-a1b64e.md b/_rules/focusable-no-keyboard-trap-standard-nav-a1b64e.md index 63dbb1ea99..9eee0be6ca 100755 --- a/_rules/focusable-no-keyboard-trap-standard-nav-a1b64e.md +++ b/_rules/focusable-no-keyboard-trap-standard-nav-a1b64e.md @@ -18,6 +18,7 @@ acknowledgments: - Malin Øvrebø - Shadi Abou-Zahra - Stein Erik Skotkjerra + - Tom Brunet funding: - WAI-Tools --- @@ -43,7 +44,7 @@ This rule only requires navigation in one direction (either forward or backward) ### Accessibility Support -There are no accessibility support issues known. +Some browsers have settings that will immediately cycle focus back to the web document. This fulfills the expectation because focus can cycle to the browser UI and the browser UI cycles focus back to the web document. ### Bibliography @@ -68,7 +69,7 @@ These [focusable][] elements do not create a trap for keyboard navigation. This element is made [focusable][] by the `tabindex` attribute. It does not create a trap for keyboard navigation. ```html -
Text
+
Text
``` #### Passed Example 3 @@ -79,6 +80,54 @@ This element is made [focusable][] by the `tabindex` attribute, even if it is no
Text
``` +#### Passed Example 4 + +While the elements with id "sentinelBefore" and "sentinelAfter" contain focus to the contents of the div with name "Sample Modal", focus is not trapped since the user can +use [standard keyboard navigation](#standard-keyboard-navigation) using the Escape key or by activating the "Close button" to dismiss the modal + +```html +
Main page content with some link
+ + + + +``` + ### Failed #### Failed Example 1