You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed aria-label and aria-hidden from wrapping span
SVG element got aria-hidden applied, also:
SVG element got focusable="false" and role="presentation"
Please note: This only applies for presentational SVGs. For SVGs that convey meaning the abstract code is as follows:
<svg role="img" focusable="false" aria-labelledby="someId">
<title id="someId">Accessible Name of the SVG</title>
<use xlink:href="#svg-id-to-reference" aria-hidden="true" />
<!-- if not using <use> then the child elements
of the inline SVG would go here -->
</svg>
The text was updated successfully, but these errors were encountered:
Connected to Audit 1, see #4300
1.2 General Overview when logged in, URL: https://ocis-a11y.owncloud.works/#/files/list
Issue
The Markup for purely presentational SVG images can be improved. Currently it is:
This could be considered a violation of BITV 1.1.1b and 4.1.2a.
Remediation
What happened:
aria-label
andaria-hidden
from wrapping spanaria-hidden
applied, also:focusable="false"
androle="presentation"
Please note: This only applies for presentational SVGs. For SVGs that convey meaning the abstract code is as follows:
The text was updated successfully, but these errors were encountered: