diff --git a/content/practices/keyboard-interface/keyboard-interface-practice.html b/content/practices/keyboard-interface/keyboard-interface-practice.html index 67c2543fcb..e241bed366 100644 --- a/content/practices/keyboard-interface/keyboard-interface-practice.html +++ b/content/practices/keyboard-interface/keyboard-interface-practice.html @@ -391,9 +391,8 @@
- By default, disabled HTML input elements are removed from the tab sequence.
- In most contexts, the normal expectation is that disabled interactive elements are not focusable.
- However, there are some contexts where it is common for disabled elements to be focusable, especially inside of composite widgets.
+ By default, HTML input elements with the disabled attribute are removed from the tab sequence.
+ However, there are some contexts where it is useful for an element to convey a disabled state while remaining focusable, especially inside of composite widgets.
For example, as demonstrated in the
menu and menubar pattern,
disabled items are focusable when navigating through a menu with the arrow keys.
@@ -406,12 +405,12 @@
- Authors are encouraged to adopt a consistent set of conventions for the focusability of disabled elements. + Authors are encouraged to adopt a consistent set of pattern-specific conventions for the focusability of disabled elements. The examples in this guide adopt the following conventions, which both reflect common practice and attempt to balance competing concerns.