Open edX Accessibility Reference#

This reference guide showcases the many ways to make your Open edX features meet our accessibility guidelines. See Open edX Accessibility Concepts to learn more.

Use semantic markup#

The role, state, and associated properties of an element are exposed to users of assistive technologies either directly through the DOM (Document Object Model) or through the Accessibility API. If you use elements for purposes other than their intended purposes, you can “break” features that are designed to make web applications easier to use, resulting in confusion when expected behaviors are not available. For example, the role, state, or associated properties of an element might be incorrectly reported when you use an element in a way that it was not designed to be used, causing confusion for users who rely on assistive technologies.

If the semantics and behavior you need already exist in a native HTML5 element, you should use that element. Do not use an element because of its default style or because it provides a convenient styling hook. Here are some common examples.

Buttons#

If you want a button, use the <button> element. Do not use a <div> that looks and behaves like a button.

Checkboxes#

If you want a checkbox, use the <input type=checkbox> element. Do not try to recreate states and properties that are included with the native element, such as focus or state. If you attempt to do so, more than likely you will not fully replicate all of them. Native checkbox elements include a toggle for checked state upon space or enter key presses, exposing its label and “checkedness” to the Accessibility API.

Headings#

Use the appropriate levels of headings (<h1> - h6>) to denote a logical hierarchical order of content. Do not use headings as stylistic markup (for their physical size or appearance).

Generally there should be only one H1 on a page (though HTML5 allows restarting the heading hierarchy within Section and Article elements, it is best to avoid this).

Headings should not skip levels.

Visual hierarchy should match the semantic hierarchy.

Lists#

Use ordered lists (<ol>) only when you are marking up a collection of related items whose order in the list is important. Use unordered lists (<ul>) only when you are marking up a collection of related items. Screen readers provide extra feedback and functionality for lists and other elements with semantic importance. It can be confusing or cumbersome when this feedback is inaccurately reported.

Make images accessible#

You can make images accessible by using the alt attribute for each image, or by providing a text alternative for an image.

Text alternatives#

For users who are unable to view or use non-text content (such as images, charts, applets, audio files and so on), you can provide a text alternative . A text alternative is text that non-sighted users can access in place of the non-text content.

Text alternatives must be “programmatically determinable”. This means that the assistive technologies and accessibility features in browsers must be able to read and use the text.

Text alternatives must also be “programmatically associated” with the non-text content. This means that users must be able to use assistive technology to find the text alternative when they land on the non-text content.

All images require a text alternative. The only exceptions to this rule are purely decorative images or images that have text alternatives adjacent to them.

Alt attributes#

Regardless of whether or not an image requires a text alternative, you must define an alt attribute for all <img> elements, even if the value of that attribute is empty (alt=""). An empty alt attribute is also called a NULL alt attribute.

If your image is purely decorative, or has a text alternative immediately adjacent to it, use a NULL alt attribute.

If an <img> element does not have a NULL alt attribute, you should make sure that the value you use in its alt attribute provides useful information to users who rely on screen readers. If an alt attribute value does not exist, screen readers will expose the path to the image as a last resort.

Best practices for non-text elements#

Providing useful text alternatives or alt attribute values is more difficult than it sounds. Ask yourself questions about the purpose of your image to determine what would be most useful to the user.

  • Is your image the only content of a link or form control?

    Your alt attribute should describe the destination of the link, or the action that will be performed. For example, a “Play” icon should have a text alternative such as “Play the ‘Introduction to Linux’ course video”, rather than “Right-pointing triangle”.

  • Does your image contain text? The vast majority of images of text should include the verbatim text as the value of the alt attribute. Here are some examples of exceptions.

    • If yes, and if the same text appears adjacent to or near the image in the DOM, use a NULL value in the alt attribute, otherwise a screen reader is exposed to the same content twice.

    • If yes, and if the text within the image is there simply for visual effect (such as a skewed screenshot of computer code), use a NULL value in the alt attribute.

  • Does your image contribute meaning to the current page or context?

    • If yes, and if the image is a simple graphic or photograph, the alt attribute should briefly describe the image in a way that conveys the same meaning that a sighted person would obtain from viewing the image. Context is important. A detailed description of a photograph is rarely useful to the user, unless it is in the context of a photography or art class.

    • If yes, and if the image is a graph or complex piece of information, include the information contained in the image elsewhere on the page. The alt attribute value should give a general description of the complex image. You can programmatically link the image with the detailed information using aria-describedby.

A pragmatic guide on providing useful text alternatives is included in the HTML5 specification (4.7.1.1). It provides a variety of example images and appropriate text alternatives.

A more comprehensive decision tree is available in the Web Accessibility Initiatives Images Tutorial.

Avoid using CSS to add content#

CSS-generated content can cause many accessibility problems. Since many screen readers interact with the DOM, they are not exposed to content generated by CSS, which does not live in the DOM. There is currently no mechanism for providing alternative content for images added using CSS (either background images or pseudo elements).

Many developers think that providing screen reader-only text can be used to solve this problem. However, images added using this technique are not rendered to users who have high contrast mode enabled on their operating systems. These users are likely not using screen readers, so they cannot access the visible icon or the screen reader text.

Content injected into the DOM using JavaScript is more accessible than content added using CSS.

When adding images that represent important navigational or information elements, use <img> elements with appropriate alt attributes. For more information about making images accessible, see Make images accessible.

Include a descriptive title attribute for all <iframe> elements#

Use the title attribute to provide a description of the embedded content to help users decide whether or not they would like to interact with this content. It is possible that <iframe> titles are presented out of context (such as in a list within a dialog box), so choose title text that will make sense when it is exposed out of context.

Make sure form elements have labels#

All form elements must have labels, either using the label element or the aria-label or aria- labelledby attributes.

Sighted users have the benefit of visual context. It is usually quite obvious to them what the purpose is of a given form field, based on physical proximity of descriptive text or other visual cues. However, to a user with a vision impairment, who does not have the benefit of visual context, these relationships are not obvious. Users who rely on speech to interact with their computers also need a label for addressing form elements. If you correctly use the <label> element, text is programmatically associated with a given form element, and can then be read to the user upon focus, or used to address the form element using speech input.

Note

Screen readers often enter “forms processing mode” when they encounter a form. This mode temporarily disables all keyboard shortcuts available to users so that key presses are passed through to the control. The exception is the TAB key, which moves focus from one form field to the next. This means that context-sensitive help provided for form fields (such as UI help text adjacent to the form field) is not likely to be encountered by screen reader users. To remedy this situation, add an aria-describedby attribute to the input that references the help text. Doing so programmatically links the help text to the form control so that users can access it while their screen readers are in forms processing mode.

Use WAI-ARIA to create accessible widgets or enhance native elements#

In some cases, native HTML5 elements will not provide the behavior or style options that you want. If you develop custom HTML or JavaScript widgets, make sure you add all necessary role, state, and property information for each widget, so that it can be used by users of assistive technology.

WAI-ARIA (Web Accessibility Initiative - Accessible Rich Internet Applications) is a technical specification published by the World Wide Web Consortium (W3C) that specifies how to increase the accessibility of web pages.

When you develop custom widgets, use WAI-ARIA to ensure that your custom controls are accessible, and consider the following points.

  • Is the role of the widget properly identified?

  • Can a user focus on and interact with your widget using the keyboard alone?

  • When the state or some other property of your widget changes, are those changes conveyed using ARIA attributes to users of assistive technology?

Note

Adding an ARIA role overrides the native role semantics reported to the user from the Accessibility API. ARIA indirectly affects what is reported to a screen reader or other assistive technology. Adding an ARIA role to an element does not add the behaviors or attributes to that element. You have to do that yourself.

ARIA attributes can also be used to enhance native elements by adding helpful information specifically for users of assistive technology. Certain sectioning elements (such as <nav> and <header>) as well as generic ones (such as <div> with “search”, “main” or “region” roles defined), receive special behaviors when encountered by assistive technology. Most screen readers announce when a user enters or leaves one of these regions, allow direct navigation to the region, and present the regions to a user in a list that they can use to browse the page out of context. Because your pages are likely to have multiple <nav> elements or <div> elements with “region” roles defined, it is important to use the aria-label attribute with a clear and distinct value to differentiate between them.

Example: Adding descriptive labels to HTML5 structural elements#

<!-- the word "Navigation" is implied and should not be included in the label -->
<nav aria-label="Main">
...
</nav>

<nav aria-label="Unit">
...
</nav>

<div role="search" aria-label="Site">
...
</div>

<div role="search" aria-label="Course">
...
</div>

Some cautions for using WAI-ARIA#

The following list outlines specific cases in which you have to be careful using WAI-ARIA.

  • Setting role="presentation" strips away all of the semantics from a native element.

  • Setting role="application" on an element passes all keystrokes to the browser for handling by scripts. In this case, all keyboard shortcuts provided by screen readers are disabled. You should only use role="application" if you can provide support for all of the application’s functions via the keyboard as well as the roles, states, and properties for all of its child elements.

  • Setting aria-hidden="true" removes an element from the Accessibility API, making it invisible to a user of assistive technology. For elements that you intend to hide from all users, setting the CSS property display:none; is sufficient. It is unnecessary to also set aria-hidden="true". Once the content is revealed by changing the display property, it is too easy to forget to toggle the value of aria-hidden.

    There are legitimate use cases for aria-hidden, for example when you use an icon font that has accessible text immediately adjacent to it. Icon fonts can remain silent when focused on by certain screen readers, which can lead users of screen readers to suspect that they are missing important content. Icon fonts can also be rendered as nondescript glyphs by some screen readers that display what is being spoken on the screen. In these cases, it is useful to remove icon fonts using aria- hidden, so that screen reader users are not provided with the same information in both accessible and less-accessible formats.

Additional considerations for developing custom widgets are covered in General steps for building an accessible widget.

Specific considerations for common widgets are covered in WAI-ARIA 1.2 Authoring Practices and examples.

A quick reference list of Required and Supported ARIA attributes by role is available in the Using ARIA

Manage the focus for pop-ups#

Do not forget to manage focus on pop-ups. Whenever a control inserts interactive content into the DOM or reveals previously hidden content (for example, pop-up menus or modal dialog boxes), you must move focus to the container. While the focus is within the menu or dialog box, keyboard focus should remain trapped within its bounds. Clicking the Esc key or the Save or Cancel button should close and exit the region and return focus to the element that triggered it.

Note that <div> and other container elements are not natively focusable. If you want to move focus to a container you must set a tabindex="-1" attribute for that container. You should also define a role and an aria-label or aria- labelledby attribute that identifies the purpose of the container.

Inform users when content changes dynamically#

If a user action or script updates the content of a page dynamically, you should add the aria-live="polite" attribute to the parent element of the region that changes. Doing so ensures that the contents of the element are read to a screen reader user, even though the element does not currently have focus. This method is not intended to be used when the region contains interactive elements.

Hide or expose content to targeted audiences#

Content that enhances the experience for one audience might be confusing or encumber a different audience. For instance, a Close button that looks like X will be read by a screen reader as the letter X, unless you hide it from the Accessibility API.

To visibly hide content that should be read by screen readers, edX makes a CSS class="sr" available to expose content only to non-visual users. This is achieved by displaying the content beyond the bounds of the viewport, or clipping the content to a single pixel. These techniques remove any visible trace of the element from the page, while still leaving it accessible to screen reader users. This is often referred to as displaying content “offscreen”. In the following example, a visual user sees only the X, while a screen reader user hears only “Close”.

<a href="#">
  <span aria-hidden="true">X</span>   <!-- hidden from screen reader users -->
  <span class="sr">Close</span>       <!-- exposed only to screen reader users -->
</a>

The choice to show or hide content for a specific audience should not be taken lightly. Extensive use of offscreen content can reduce accessibility, and is often an indicator of a user experience that relies too heavily on visual context. The following questions should help you decide whether it is appropriate to hide content from screen readers or display it offscreen.

  • Would all users benefit from the content displayed offscreen?

    • If the content you are considering displaying offscreen might be useful not only for non-visual users but other users too, find a way to make the content work visually, and expose it for all users.

  • Are you using only visual cues to provide important context?

    • In standard sidebar navigation, it is common practice to indicate the user’s current page or section by differentiating it visually from other pages or sections in the sidebar. To visual users, it is clear that the item in the list that looks different than all the others is the page that they are currently viewing. You can make this visual context available to non-visual users with offscreen text, as demonstrated in the following example.

<a href="/" class="inactive">Home</a>
<a href="about/" class="active">About Us<span class="sr">&nbsp;Current page</span></a>

Note

In the code example above, the non-breaking space prevents a screen reader from reading the text as “About UsCurrent Page”.

  • Does the content displayed offscreen contain any interactive elements?

    • Never include interactive elements such as links, buttons, or form inputs, in offscreen content. Doing so negatively impacts sighted keyboard-only users, who require visual focus indicators to understand what element has focus and will be the target of keyboard events.

  • Are you including interactive elements in offscreen content?

    • It can be tempting to use offscreen text to improve the usability of an interactive element for non-visual users. Offscreen text is included in the Accessibility API which is used by screen readers. However, screen readers are not the only assistive technology that use the Accessibility API. Speech input software also uses the Accessibility API to identify interactive controls. In the following example, screen reader users will hear “Type your First Name”, but sighted users will see only “First Name.” Users who rely on speech input to interact with their computer will move focus to this element by saying “Focus on First Name” (the visual label). However, the accessible label for this element is “Type your First Name.”

<label><span class="sr">Type your&nbsp;</span>First Name
  <input type="text" />
</label>

Choose colors that meet WCAG 2.1’s minimum contrast ratios#

A minimum contrast ratio between foreground and background colors is critical for users with impaired vision. You can check color contrast ratios using any number of tools available free online.

Test your code for accessibility#

The only way to determine if your feature is fully accessible is to manually test it using assistive technology; however, there are a number of automated tools you can use to perform an assessment yourself. Automated tools might report false positives and might not catch every possible error, but they are a quick and easy way to detect the most common mistakes.

These are some automated tools for accessibility testing.

Note

By default, the Mac OSX operating system is configured to move keyboard focus to Text boxes and lists only. This setting also applies to browsing web pages using Safari or Firefox with a keyboard. To effectively test keyboard accessibility using a Mac, you should configure your computer to focus on All controls. Open System Preferences, and then select Keyboard. On the Shortcuts tab, check Use keyboard navigation to move focus between controls.

If you are a Chrome user, this behavior is controlled in a browser setting and is enabled by default. However, if you find that you cannot move focus to links while using Chrome you might need to change your browser configuration. Open Settings, then click Show advanced settings. Under Web content, confirm that the Pressing Tab on a web page highlights links, as well as form fields checkbox is selected.

To test your feature using a screen reader, you can use the following options.

  • VoiceOver is a free, built-in screen reader for Mac and iOS.

  • ChromeVox is a free screen reader (browser extension) for Chrome.

  • NVDA is a free screen reader for Windows.

  • JAWS is a screen reader for Windows. It is a commercial product but free to use in a limited-time demo mode.

  • Narrator is a free, built-in screen reader for Windows.

Note

VoiceOver, NVDA, and Narrator can be configured to speak any text on screen on mouse hover.