-
Notifications
You must be signed in to change notification settings - Fork 78
New rule: image accessible name descriptive #1354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d5e4c0c
New rule: image accessible name descriptive
WilcoFiers a6ea6c3
editorial improvements
WilcoFiers 47edf3e
Merge branch 'develop' into image-acc-name
WilcoFiers 3581848
Apply suggestions from code review
WilcoFiers 6ef0dd4
updated based on feedback
WilcoFiers de7e79a
Apply suggestions from code review
WilcoFiers 8ff4f0a
tweaked the description
WilcoFiers 5c8b021
Merge branch 'develop' into image-acc-name
WilcoFiers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,295 @@ | ||
--- | ||
id: qt1vmo | ||
name: Image accessible name is descriptive | ||
rule_type: atomic | ||
description: | | ||
This rule checks that the accessible names of images serves an equivalent purpose to the image. | ||
accessibility_requirements: | ||
wcag20:1.1.1: # Non-Text Content (A) | ||
forConformance: true | ||
failed: not satisfied | ||
passed: further testing needed | ||
inapplicable: further testing needed | ||
wcag-technique:G94: # Providing short text alternative for non-text content that serves the same purpose and presents the same information as the non-text content | ||
forConformance: false | ||
failed: not satisfied | ||
passed: further testing needed | ||
inapplicable: further testing needed | ||
wcag-technique:G95: # Providing short text alternatives that provide a brief description of the non-text content | ||
forConformance: false | ||
failed: not satisfied | ||
passed: further testing needed | ||
inapplicable: further testing needed | ||
input_aspects: | ||
- Accessibility Tree | ||
- DOM Tree | ||
- CSS Styling | ||
- Language | ||
acknowledgments: | ||
authors: | ||
- Wilco Fiers | ||
assets: | ||
- W3C; HTML and W3C logo | ||
- Wikimedia; Fireworks image | ||
- Adobe; PDF logo | ||
htmlHintIgnore: | ||
# https://www.npmjs.com/package/htmlhint | ||
# (used with `npm test` to ensure validity of code snippets) | ||
- 'alt-require' | ||
- 'attr-lowercase' | ||
--- | ||
|
||
## Applicability | ||
|
||
Any `img`, `canvas` or `svg` element that is [visible][] and has a non-empty [accessible name][], except if one of the following is true: | ||
|
||
- The element has an [ancestor][] in the [flat tree][] that is [named from author][]; or | ||
- The element is an `img` element where the [current request][]'s [state][image request state] is not [completely available][]. | ||
|
||
## Expectation | ||
|
||
Each test target has an [accessible name][] that serves an equivalent purpose to the [non-text content][] of that test target. | ||
|
||
## Assumptions | ||
|
||
This rule assumes that the language of the [accessible name][] of each test target can be correctly determined (either programmatically or by analyzing the content). | ||
|
||
## Accessibility Support | ||
|
||
_There are no major accessibility support issues known for this rule._ | ||
|
||
## Background | ||
|
||
- [Understanding Success Criterion 1.1.1: Non-text Content](https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html) | ||
- [G94: Providing short text alternative for non-text content that serves the same purpose and presents the same information as the non-text content](https://www.w3.org/WAI/WCAG21/Techniques/general/G94) | ||
- [G95: Providing short text alternatives that provide a brief description of the non-text content](https://www.w3.org/WAI/WCAG21/Techniques/general/G95) | ||
- [F30: Failure of Success Criterion 1.1.1 and 1.2.1 due to using text alternatives that are not alternatives (e.g., filenames or placeholder text)](https://www.w3.org/WAI/WCAG21/Techniques/failures/F30) | ||
|
||
## Test Cases | ||
|
||
### Passed | ||
|
||
#### Passed Example 1 | ||
|
||
This `img` element has an `alt` attribute that describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<img src="/test-assets/shared/w3c-logo.png" alt="W3C" /> | ||
WilcoFiers marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</html> | ||
``` | ||
|
||
#### Passed Example 2 | ||
|
||
This `svg` element has an `aria-label` attribute that describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<svg viewBox="0 0 512 512" aria-label="HTML 5"> | ||
<path | ||
d="M108.4 0h23v22.8h21.2V0h23v69h-23V46h-21v23h-23.2M206 23h-20.3V0h63.7v23H229v46h-23M259.5 0h24.1l14.8 24.3L313.2 0h24.1v69h-23V34.8l-16.1 24.8l-16.1-24.8v34.2h-22.6M348.7 0h23v46.2h32.6V69h-55.6" | ||
/> | ||
<path fill="#e44d26" d="M107.6 471l-33-370.4h362.8l-33 370.2L255.7 512" /> | ||
<path fill="#f16529" d="M256 480.5V131H404.3L376 447" /> | ||
<path | ||
fill="#ebebeb" | ||
d="M142 176.3h114v45.4h-64.2l4.2 46.5h60v45.3H154.4M156.4 336.3H202l3.2 36.3 50.8 13.6v47.4l-93.2-26" | ||
/> | ||
<path fill="#fff" d="M369.6 176.3H255.8v45.4h109.6M361.3 268.2H255.8v45.4h56l-5.3 59-50.7 13.6v47.2l93-25.8" /> | ||
</svg> | ||
</html> | ||
``` | ||
|
||
#### Passed Example 3 | ||
|
||
This `canvas` element has an `aria-label` attribute that describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<canvas id="act" width="200" height="60" aria-label="ACT Rules!"></canvas> | ||
<script> | ||
const ctx = document.querySelector('#act').getContext('2d') | ||
ctx.font = '30px Arial' | ||
ctx.fillText('ACT Rules!', 20, 40) | ||
</script> | ||
</html> | ||
``` | ||
|
||
### Failed | ||
|
||
#### Failed Example 1 | ||
|
||
This `img` element has an `alt` attribute that incorrectly describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<img src="/test-assets/shared/w3c-logo.png" alt="ERCIM" /> | ||
</html> | ||
``` | ||
|
||
#### Failed Example 2 | ||
|
||
This `svg` element has an `aria-label` attribute that incorrectly describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<svg viewBox="0 0 512 512" aria-label="W3C"> | ||
<path | ||
d="M108.4 0h23v22.8h21.2V0h23v69h-23V46h-21v23h-23.2M206 23h-20.3V0h63.7v23H229v46h-23M259.5 0h24.1l14.8 24.3L313.2 0h24.1v69h-23V34.8l-16.1 24.8l-16.1-24.8v34.2h-22.6M348.7 0h23v46.2h32.6V69h-55.6" | ||
/> | ||
<path fill="#e44d26" d="M107.6 471l-33-370.4h362.8l-33 370.2L255.7 512" /> | ||
<path fill="#f16529" d="M256 480.5V131H404.3L376 447" /> | ||
<path | ||
fill="#ebebeb" | ||
d="M142 176.3h114v45.4h-64.2l4.2 46.5h60v45.3H154.4M156.4 336.3H202l3.2 36.3 50.8 13.6v47.4l-93.2-26" | ||
/> | ||
<path fill="#fff" d="M369.6 176.3H255.8v45.4h109.6M361.3 268.2H255.8v45.4h56l-5.3 59-50.7 13.6v47.2l93-25.8" /> | ||
</svg> | ||
</html> | ||
``` | ||
|
||
#### Failed Example 3 | ||
|
||
This `canvas` element has an `aria-label` attribute that incorrectly describes the image. | ||
|
||
```html | ||
<html lang="en"> | ||
<canvas id="act" width="200" height="60" aria-label="HTML 5"></canvas> | ||
<script> | ||
const ctx = document.querySelector('#act').getContext('2d') | ||
ctx.font = '30px Arial' | ||
ctx.fillText('ACT Rules!', 20, 40) | ||
</script> | ||
</html> | ||
``` | ||
|
||
### Inapplicable | ||
|
||
#### Inapplicable Example 1 | ||
|
||
This `img` element has an empty (`""`) [accessible name][]. The image is described by the adjacent text. | ||
|
||
```html | ||
<img src="/test-assets/shared/pdf-icon.png" alt="" /> PDF document | ||
``` | ||
|
||
#### Inapplicable Example 2 | ||
|
||
This decorative `img` element has an empty (`""`) [accessible name][] because it has no attributes or content to provide an accessible name. | ||
|
||
```html | ||
<html lang="en"> | ||
<img src="/test-assets/shared/fireworks.jpg" role="presentation" /> | ||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 3 | ||
|
||
This `svg` element has an empty (`""`) [accessible name][] because it has no attributes or content to provide an accessible name. | ||
|
||
```html | ||
<html lang="en"> | ||
<p>Happy new year!</p> | ||
<svg height="200" xmlns="http://www.w3.org/2000/svg"> | ||
<polygon points="100,10 40,180 190,60 10,60 160,180" fill="yellow" /> | ||
</svg> | ||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 4 | ||
|
||
This `canvas` element has an empty (`""`) [accessible name][] because it has no attributes or content to provide an accessible name. | ||
|
||
```html | ||
<html lang="en"> | ||
<p>Happy new year!</p> | ||
<canvas id="newyear" width="200" height="200"></canvas> | ||
<script> | ||
const ctx = document.querySelector('#newyear').getContext('2d') | ||
ctx.fillStyle = 'yellow' | ||
ctx.beginPath() | ||
ctx.moveTo(100, 10) | ||
ctx.lineTo(40, 180) | ||
ctx.lineTo(190, 60) | ||
ctx.lineTo(10, 60) | ||
ctx.lineTo(160, 180) | ||
ctx.fill() | ||
</script> | ||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 5 | ||
|
||
This `img` element is not [visible][]. | ||
|
||
```html | ||
<html lang="en"> | ||
<img src="/test-assets/shared/w3c-logo.png" alt="W3C" style="display:none" /> | ||
WilcoFiers marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 6 | ||
|
||
This `canvas` element is not [visible][] because it is completely transparent. | ||
|
||
```html | ||
<html lang="en"> | ||
<canvas width="200" height="200"></canvas> | ||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 7 | ||
|
||
This `img` element has no [accessible name][] because it is not [included in the accessibility tree][]. | ||
|
||
```html | ||
<html lang="en"> | ||
<img aria-hidden="true" src="/test-assets/shared/fireworks.jpg" alt="fireworks" /> | ||
</html> | ||
``` | ||
|
||
#### Inapplicable Example 8 | ||
|
||
This `svg` element is ignored because it is a child of a link that provides its [accessible name][]. | ||
|
||
```html | ||
<a href="//w3.org" aria-label="W3C Website"> | ||
<svg height="200" xmlns="http://www.w3.org/2000/svg" aria-label="star"> | ||
<polygon points="100,10 40,180 190,60 10,60 160,180" fill="yellow" /> | ||
</svg> | ||
</a> | ||
WilcoFiers marked this conversation as resolved.
Show resolved
Hide resolved
|
||
``` | ||
|
||
#### Inapplicable Example 9 | ||
|
||
This `img` element has a `src` attribute which will cause the [image request state][] to be [Broken](https://html.spec.whatwg.org/#img-error). | ||
|
||
```html | ||
<img src="/test-assets/does-not-exist.png" alt="" /> | ||
``` | ||
|
||
#### Inapplicable Example 10 | ||
|
||
This is a `div` element with a background image. Background images must be tested separate from this rule. | ||
|
||
```html | ||
<p>Happy new year!</p> | ||
<div | ||
style=" | ||
width: 260px; | ||
height: 260px; | ||
background: url(/test-assets/shared/fireworks.jpg) no-repeat; | ||
" | ||
></div> | ||
``` | ||
|
||
[accessible name]: #accessible-name 'Definition of accessible name' | ||
[visible]: #visible 'Definition of visible' | ||
[included in the accessibility tree]: #included-in-the-accessibility-tree 'Definition of included in the accessibility tree' | ||
[non-text content]: https://www.w3.org/TR/WCAG21/#dfn-non-text-content 'WCAG 2.1 definition of non-text content' | ||
[completely available]: https://html.spec.whatwg.org/#img-all 'HTML definition of Completely available, 2020/03/06' | ||
[current request]: https://html.spec.whatwg.org/#current-request 'HTML definition of Current request, 2020/03/06' | ||
[image request state]: https://html.spec.whatwg.org/#img-req-state 'HTML definition of Image request state, 2020/03/06' | ||
[named from author]: https://www.w3.org/TR/wai-aria-1.1/#namecalculation 'WAI-ARIA definition of Named from author' | ||
[flat tree]: https://drafts.csswg.org/css-scoping/#flat-tree 'CSS Scoping definition of Flat tree, working draft' | ||
[ancestor]: https://dom.spec.whatwg.org/#concept-tree-ancestor 'DOM definition of ancestor, 2020/03/06' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.