Opened 12 years ago
Closed 12 years ago
#21471 closed task (blessed) (fixed)
Add "Skip to toolbar" accessibility shortcut
Reported by: | azaozz | Owned by: | azaozz |
---|---|---|---|
Milestone: | 3.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Accessibility | Keywords: | has-patch commit |
Focuses: | Cc: |
Description
The toolbar HTML is outputted in different places for different screens. It's at the bottom on the front-end and on some admin screens, or after the admin menu on other.
To improve accessibility it would need a "skip to" link similar to the "Skip to content" link. Some more info.
Attachments (3)
Change History (15)
#5
@
12 years ago
Worked great in FF. When I test the "Skip to toolbar" link in Chrome, I get:
Actual:
1) Tab to "Skip to toolbar"
2) Click enter on keyboard
3) Tabbing order resets, and next tab shows "Skip to main content"
Expected:
1) Tab to "Skip to toolbar"
2) Click enter on keyboard
3) Tabbing jumps to toolbar, and next tab focuses on WordPress logo.
#7
@
12 years ago
Yes @azaozz is correct - this is a bug in Chrome (and all webkit browsers I believe) and should have been fixed a long time ago. To ensure it works in Chrome it is necessary to force focus to move using javascript.
#8
@
12 years ago
- Type changed from enhancement to task (blessed)
Looks like there are two things left here:
- Fix bug in Chrome.
- Review the design here.
#9
@
12 years ago
Design looks good to me. Fixed Chrome and Safari bug (for 'Skip to toolbar' and 'Skip to main content') in 21471.2.diff.
Note: Looks like webkit browsers need tabindex='0' added to div's in order to focus on them. In addition, I found it necessary to add a slight delay before setting the focus.
In [21423]: