-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
The VNU validator currently flags our SVG logo as being invalid because of the presence of @aria-label attributes on <g> elements. This is valid according to the SVG 2.0 draft:
https://svgwg.org/svg2-draft/struct.html#GElement
but our SVG claims to be 1.1, which doesn't appear to allow @aria* attributes, at least explicitly:
https://www.w3.org/TR/SVG11/struct.html#GElement
Solutions: either:
- Drop the
@aria-labelattribute from the logo, or - Switch the version to 2.0, and confirm that it still works well in all browsers, and that the validator no longer complains. (This is using the latest GitHub release of the validator as of today.)