I’m running an accessibility audit on a Pro site. One of the issues that is being flagged (using ScreamingFrog, which uses axe) is “ARIA Attributes Require Valid Values” pointing to “.x-anchor-toggle” (the navigation dropdown element).
I think the issue is that this element is using:
aria-haspopup=“true”
but aria-haspopup has a possible value of “menu,” which some versions of axe-core prefer as a more explicit value.
Is there a way to remove the “true” value and replace it with “menu” and/or should this be the default on that element?
