I have been trying to determine what the default role of an SVG tag should be if the role
attribute is not present and the document contains visible graphics.
Using Chrome's accessibility tools it tells me that the role is SVGRoot
:
However this is not a valid ARIA role, it's one of Chrome's own roles it uses internally.
I have been able to find a lot more information through this document: WAI-ARIA Graphics Module, it indicates which roles are allowed to be used on an SVG tag, but I can't seem to narrow down which should be the default role.
What role should user agents assume SVGs to be by default if there is no valid role
attribute provided?
graphic
,diagram
,chart
, etc, coupled w/ title/desc, you should be covered. – Napoli