Description
Product
axe-core
Product Version
4.9.0
Latest Version
- I have tested the issue with the latest version of the product
Issue Description
Expectation
A decision should be made about how axe-core handles images with empty alt attributes (not unset
ones) with regards to implicit VS implied roles as the spec specifies when using non-Global aria attributes like aria-level
.
// test/checks/navigation/region.js
it('should return false when img content outside of the region has a non-global aria attribute with an empty alt attribute string', function () {
const checkArgs = checkSetup(`
<img id="target" src="#" aria-level="2" alt="" />
<div role="main">Content</div>
`);
assert.isFalse(checkEvaluate.apply(checkContext, checkArgs));
});
Actual
axe.commons.standards.getGlobalAriaAttrs
is leveraged for the region rule and possibly others, when the spec may mean we need to be more broad in cases that use getRole
for images with empty alt attributes.
How to Reproduce
The following code behaves inconsistently according to the accessibility tree. In Firefox it is removed from the tree, in Chrome it is in the tree with an empty alt.
<img alt="" aria-level="2" />
Additional context
Presentational Roles Conflict Resolution is very specific about the behavior between elements with inherited VS implicit roles. An image with an empty alt attribute has an implicit img
role I'd suspect the following would be the case:
However, if an element has only non-global, role-specific WAI-ARIA states or properties, the element MUST NOT be exposed unless the presentational role is inherited and an explicit non-presentational role is applied.