Skip to content

Commit ea32fa7

Browse files
authored
feat(presentation-role-conflict): Test img elements with empty alt (#3717)
1 parent 6f7e4a9 commit ea32fa7

7 files changed

+40
-9
lines changed

doc/rule-descriptions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Rules that do not necessarily conform to WCAG success criterion but are industry
116116
| [landmark-unique](https://dequeuniversity.com/rules/axe/4.4/landmark-unique?application=RuleDescription) | Landmarks should have a unique role or role/label/title (i.e. accessible name) combination | Moderate | cat.semantics, best-practice | failure | |
117117
| [meta-viewport-large](https://dequeuniversity.com/rules/axe/4.4/meta-viewport-large?application=RuleDescription) | Ensures <meta name="viewport"> can scale a significant amount | Minor | cat.sensory-and-visual-cues, best-practice | failure | |
118118
| [page-has-heading-one](https://dequeuniversity.com/rules/axe/4.4/page-has-heading-one?application=RuleDescription) | Ensure that the page, or at least one of its frames contains a level-one heading | Moderate | cat.semantics, best-practice | failure | |
119-
| [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.4/presentation-role-conflict?application=RuleDescription) | Flags elements whose role is none or presentation and which cause the role conflict resolution to trigger. | Minor | cat.aria, best-practice, ACT | failure | [46ca7f](https://act-rules.github.io/rules/46ca7f) |
119+
| [presentation-role-conflict](https://dequeuniversity.com/rules/axe/4.4/presentation-role-conflict?application=RuleDescription) | Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them | Minor | cat.aria, best-practice, ACT | failure | [46ca7f](https://act-rules.github.io/rules/46ca7f) |
120120
| [region](https://dequeuniversity.com/rules/axe/4.4/region?application=RuleDescription) | Ensures all page content is contained by landmarks | Moderate | cat.keyboard, best-practice | failure | |
121121
| [scope-attr-valid](https://dequeuniversity.com/rules/axe/4.4/scope-attr-valid?application=RuleDescription) | Ensures the scope attribute is used correctly on tables | Moderate, Critical | cat.tables, best-practice | failure | |
122122
| [skip-link](https://dequeuniversity.com/rules/axe/4.4/skip-link?application=RuleDescription) | Ensure all skip links have a focusable target | Moderate | cat.keyboard, best-practice | failure, needs review | |

lib/rules/presentation-role-conflict.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"id": "presentation-role-conflict",
3+
"selector": "img[alt=''], [role=\"none\"], [role=\"presentation\"]",
34
"matches": "has-implicit-chromium-role-matches",
4-
"selector": "[role=\"none\"], [role=\"presentation\"]",
55
"tags": ["cat.aria", "best-practice", "ACT"],
66
"actIds": ["46ca7f"],
77
"metadata": {
8-
"description": "Flags elements whose role is none or presentation and which cause the role conflict resolution to trigger.",
9-
"help": "Elements of role none or presentation should be flagged"
8+
"description": "Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them",
9+
"help": "Ensure elements marked as presentational are consistently ignored"
1010
},
1111
"all": [],
1212
"any": [],

locales/_template.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@
326326
"help": "Page should contain a level-one heading"
327327
},
328328
"presentation-role-conflict": {
329-
"description": "Flags elements whose role is none or presentation and which cause the role conflict resolution to trigger.",
330-
"help": "Elements of role none or presentation should be flagged"
329+
"description": "Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them",
330+
"help": "Ensure elements marked as presentational are consistently ignored"
331331
},
332332
"region": {
333333
"description": "Ensures all page content is contained by landmarks",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require('./act-runner.js')({
2+
id: '46ca7f',
3+
title: 'Element marked as decorative is not exposed',
4+
axeRules: ['presentation-role-conflict']
5+
});
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
<li id="violation1" role="presentation" aria-label="My Heading">Hello</li>
2-
<h1 id="violation2" role="none" aria-label="My Heading">Hello</h1>
1+
<h1 id="pass1" role="none">Just some big text</h1>
2+
<h1 id="pass2" role="presentation">Just some big text</h1>
3+
<img id="pass3" alt="" src="img.png" />
4+
5+
<li id="fail1" role="presentation" aria-label="My Heading">Hello</li>
6+
<h1 id="fail2" role="none" aria-label="My Heading">Hello</h1>
7+
<img id="fail3" alt aria-label="foo" src="img.png" />
8+
<img id="fail4" alt="" tabindex="0" src="img.png" />
9+
<img id="fail5" alt="" aria-live="assertive" src="img.png" />
10+
311
<div id="inapplicable1" role="presentation">Test</div>
412
<div id="inapplicable2" role="presentation">Test Button</div>
13+
<img id="inapplicable3" alg="foo" src="img.png" />
14+
<img id="inapplicable4" aria-label="foo" src="img.png" />
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"rule": "presentation-role-conflict",
33
"description": "presentation-role-conflict tests",
4-
"violations": [["#violation1"], ["#violation2"]]
4+
"passes": [["#pass1"], ["#pass2"], ["#pass3"]],
5+
"violations": [["#fail1"], ["#fail2"], ["#fail3"], ["#fail4"], ["#fail5"]]
56
}

test/integration/virtual-rules/presentation-role-conflict.js

+15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
describe('presentation-role-conflict virtual-rule', function () {
2+
it('fails img[alt=""] with aria-label', function () {
3+
var node = new axe.SerialVirtualNode({
4+
nodeName: 'img',
5+
attributes: {
6+
alt: '',
7+
'aria-label': 'foobar'
8+
}
9+
});
10+
11+
var results = axe.runVirtualRule('presentation-role-conflict', node);
12+
assert.lengthOf(results.passes, 0);
13+
assert.lengthOf(results.violations, 1);
14+
assert.lengthOf(results.incomplete, 0);
15+
});
16+
217
it('should fail when role is presentation and aria-label is present', function () {
318
var node = new axe.SerialVirtualNode({
419
nodeName: 'li',

0 commit comments

Comments
 (0)