Bug 273650
| Summary: | AX: meter element does not show focus outline | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | James Craig <jcraig> |
| Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW | ||
| Severity: | Normal | CC: | andresg_22, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | All | ||
| OS: | All | ||
James Craig
AX: meter element does not show focus outline
Using this test case:
https://bugs.webkit.org/attachment.cgi?id=471244
Tab through the elements... The first 6 of 9 meters are focusable with tabindex="0" but the outline is hidden by default.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/127459938>
James Craig
It doesn't appear to be specifically overridden in html.css, so I don't have a strong preference for which style rules are used to resolve this issue.
James Craig
I am able to get a rough indicator with the following:
meter:focus { outline: solid 2px -webkit-focus-ring-color; }
But FWIW, the `auto` outline style does not render an outline here.
outline: auto 3px -webkit-focus-ring-color;