Image button has accessible name

Rule Type:
atomic
Rule ID:
59796f
Last modified:
March 5, 2020
Accessibility Requirements Mapping
1.1.1 Non-Text Content (Level A)
  • Required for conformance to WCAG 2.0 and above on level A and above
  • Outcome mapping:
    • Any failed outcomes: success criterion is not satisfied
    • All passed outcomes: success criterion needs further testing
    • An inapplicable outcome: success criterion needs further testing
4.1.2 Name, Role, Value (Level A)
  • Required for conformance to WCAG 2.0 and above on level A and above
  • Outcome mapping:
    • Any failed outcomes: success criterion is not satisfied
    • All passed outcomes: success criterion needs further testing
    • An inapplicable outcome: success criterion needs further testing
Input Aspects
DOM Tree
CSS Styling

Description

This rule checks that each image button element has an accessible name.

Applicability

The rule applies to any HTML input element with a type attribute in the Image Button state, that is included in the accessibility tree.

Note: The specification of the type attribute describes in detail how to map the value of the attribute to its corresponding state.

Expectation

Each target element has an accessible name that is not empty ("").

Note: Testing that the accessible name is descriptive is not part of this rule and must be tested separately.

Assumptions

Accessibility Support

There is a known combination of a popular browser and assistive technology that does not by default support title as an accessible name.

Background

Test Cases

Passed

Passed Example 1

The image button has an accessible name through the alt attribute.

<input type="image" src="/test-assets/shared/search-icon.svg" alt="Search" />

Passed Example 2

The image button has an accessible name through the aria-label attribute.

<input type="image" src="/test-assets/shared/search-icon.svg" aria-label="Search" />

Passed Example 3

The image button has an accessible name through the title attribute.

note: The title may not always be accessibility supported.

<input type="image" src="/test-assets/shared/search-icon.svg" title="Search" />

Passed Example 4

The image button has an accessible name through the aria-labelledby attribute.

<input type="image" src="/test-assets/shared/search-icon.svg" aria-labelledby="id1" />
<div id="id1">Search</div>

Failed

Failed Example 1

The image button element has an empty accessible name. The name attribute can not be used to provide an accessible name.

<input type="image" name="search" src="/test-assets/shared/search-icon.svg" />

Failed Example 2

The image button has an empty alt attribute, and no other attributes that can give it an accessible name.

<input type="image" src="/test-assets/shared/search-icon.svg" alt="" />

Failed Example 3

The image button has an aria-labelledby attribute, but the referenced element does not exist. This gives the button an empty accessible name.

<input type="image" src="/test-assets/shared/search-icon.svg" aria-labelledby="non-existing" />

Inapplicable

Inapplicable Example 1

The button element is not an image button. Success Criterion 1.1.1 Non-text Content can not fail text buttons. Only non-text content is applicable.

<button>My button</button>

Inapplicable Example 2

The input element with type with a type attribute in the Button state is not an image button. Success Criterion 1.1.1 Non-text Content can not fail text buttons. Only non-text content is applicable.

<input type="button" value="My button" />

Inapplicable Example 3

The button element is tested separately from the img element. Success Criterion 4.1.2 Name, Role, Value is applied to the button, whereas the image is tested under Success Criterion 1.1.1 Non-text Content

<button><img src="/test-assets/shared/search-icon.svg" alt="Search" /></button>

Inapplicable Example 4

The img element is not a user interface component, and so is not tested for Success Criterion 4.1.2 Name, Role, Value.

<img src="/test-assets/shared/w3c-logo.png" alt="W3C logo" />

Inapplicable Example 5

The image button is ignored by assistive technologies because it is not included in the accessibility tree. These are not required to have an accessible name. If at some future state of the page the element gets included in the accessibility tree, an accessible name will be necessary.

<input type="image" src="/test-assets/shared/search-icon.svg" style="display: none;" />

Glossary

Accessible Name

The programmatically determined name of a user interface element that is included in the accessibility tree.

The accessible name is calculated using the accessible name and description computation.

For native markup languages, such as HTML and SVG, additional information on how to calculate the accessible name can be found in HTML Accessibility API Mappings 1.0, Accessible Name and Description Computation (working draft) and SVG Accessibility API Mappings, Name and Description (working draft).

Note: As per the accessible name and description computation, each element always has an accessible name. When no accessible name is provided, the element will nonetheless be assigned an empty ("") one.

Note: As per the accessible name and description computation, accessible names are flat string trimmed of leading and trailing whitespace. Notably, it is not possible for a non-empty accessible name to be composed only of whitespace since these must be trimmed.

Accessibility Support

Examples

Note: The examples presented here are non-normative and not testable. They serve to illustrate some common pitfalls about the definition and to help implementers of ACT rules understand it.

The input elements have an accessible name of, respectively, “Billing Name” and “Billing Address”. These accessible names are given by the aria-labelledby attributes and associated elements.

<div id="myBillingId">Billing</div>

<div>
	<div id="myNameId">Name</div>
	<input type="text" aria-labelledby="myBillingId myNameId" />
</div>
<div>
	<div id="myAddressId">Address</div>
	<input type="text" aria-labelledby="myBillingId myAddressId" />
</div>

This button element has an accessible name of “Share ACT rules” given by its aria-label attribute.

<button aria-label="Share ACT rules">Share</button>

This img element has an accessible name of “ACT rules” given by its alt attribute.

<img src="#" alt="ACT rules" />

The button element has an accessible name of “Share ACT rules” given by the enclosing label element (implicit label)

<label>Share ACT rules<button>Share</button></label>

The button element has an accessible name of “Share ACT rules” given by the associated label element (explicit label)

<label for="act-rules">Share ACT rules</label><button id="act-rules"></button>

This a element has an accessible name of “ACT rules” given from its content. Note that not all semantic roles allow name from content.

<a href="https://act-rules.github.io/">ACT rules</a>

This span element has an empty accessible name ("") because span does not allow name from content.

<span>ACT rules</span>

This span element has an empty accessible name ("") because span is not a labelable element.

<label>ACT rules<span></span></label>

Note: When the same element can have an accessible name from several sources, the order of precedence is: aria-labelledby, aria-label, own attributes, label element, name from content. The examples here are listed in the same order.

Note: For more examples of accessible name computation, including many tricky cases, check the Accessible Name Testable Statements.

Included In The Accessibility Tree

Elements included in the accessibility tree of platform specific accessibility APIs. Elements in the accessibility tree are exposed to assistive technologies, allowing users to interact with the elements in a way that meet the requirements of the individual user.

The general rules for when elements are included in the accessibility tree are defined in the core accessibility API mappings. For native markup languages, such as HTML and SVG, additional rules for when elements are included in the accessibility tree can be found in the HTML accessibility API mappings (working draft) and the SVG accessibility API mappings (working draft).

Note: Users of assistive technologies might still be able to interact with elements that are not included in the accessibility tree. An example of this is a focusable element with an aria-hidden attribute with a value of true. Such an element could still be interacted with using sequential keyboard navigation regardless of the assistive technologies used, even though the element would not be included in the accessibility tree.

Examples

Note: The examples presented here are non-normative and not testable. They serve to illustrate some common pitfalls about the definition and to help implementers of ACT rules understand it.

This span element is included in the accessibility tree (by default, elements are included in the accessibility tree).

<span>ACT rules</span>

This span element is not included in the accessibility tree because it is hidden to everybody by the CSS property.

<span style="display:none">ACT rules</span>

This span element is not included in the accessibility tree because it is explicitly removed by the aria-hidden attribute.

<span aria-hidden="true">ACT rules</span>

This span element is positioned off screen, hence is not visible, but is nonetheless included in the accessibility tree.

<span style="position: absolute; top:-9999em">ACT rules</span>

Although the span element with an id of “label” is not itself included in the accessibility tree, it still provides an accessible name to the other span, via the aria-labelledby attribute. Thus, it is still indirectly exposed to users of assistive technologies. Removing an element from the accessibility tree is not enough to remove all accessibility concerns from it since it can still be indirectly exposed.

<span id="label" style="display:none">ACT rules</span>
<span aria-labelledby="label">Accessibility Conformance Testing rules</span>

Although this input element is not included in the accessibility tree, it is still focusable, hence users of assistive technologies can still interact with it by sequential keyboard navigation. This may result in confusing situations for such users (and is in direct violation of the fourth rule of ARIA (working draft)).

<input type="text" aria-hidden="true" name="fname" />

Outcome

A conclusion that comes from evaluating an ACT Rule on a test subject or one of its constituent test target. An outcome can be one of the three following types:

Note: A rule has one passed or failed outcome for every test target. When there are no test targets the rule has one inapplicable outcome. This means that each test subject will have one or more outcomes.

Note: Implementers using the EARL10-Schema can express the outcome with the outcome property. In addition to passed, failed and inapplicable, EARL 1.0 also defined an incomplete outcome. While this cannot be the outcome of an ACT Rule when applied in its entirety, it often happens that rules are only partially evaluated. For example, when applicability was automated, but the expectations have to be evaluated manually. Such “interim” results can be expressed with the incomplete outcome.

Whitespace

Characters that have the Unicode “White_Space” property in the Unicode properties list.

This includes:

Acknowledgements

Authors

Back to Top