Element

area

Error Type

Likely

Guidelines

  • BITV 1.0 (Level 2)
    Guideline GroupLevel 1
    Guideline Subgroup1.1 Provide a text equivalent for every non-text element.
  • WCAG 1.0 (Level A)
    Guideline GroupPriority 1
    Guideline Subgroup1.1 Provide a text equivalent for every non-text element.
  • WCAG 1.0 (Level AA)
    Guideline GroupPriority 1
    Guideline Subgroup1.1 Provide a text equivalent for every non-text element.
  • WCAG 1.0 (Level AAA)
    Guideline GroupPriority 1
    Guideline Subgroup1.1 Provide a text equivalent for every non-text element.
  • WCAG 2.0 (Level A)
    Guideline Group1.1 Text Altrernatives: Provide text alternatives for any non-text content
    Guideline SubgroupSuccess Criteria 1.1.1 Non-text Content (A)
  • WCAG 2.0 (Level AA)
    Guideline Group1.1 Text Alternatives: Provide text alternatives for any non-text content
    Guideline SubgroupSuccess Criteria 1.1.1 Non-text Content (A)

Requirement

area link to sound file must have text transcript.

Error

area link to sound file may be missing text transcript.

Short Description

area elements must not contain href attribute values that end with (all case insensitive) .wav, .snd, .mp3, .iff, .svx, .sam, .smp, .vce, .vox, .pcm, .aif

How To Determine

Question Is there a text transcript associated with this link to a sound file?
PASS Link to sound file has an associated text transcript.
FAIL Link to sound file does not have an associated text transcript.

Steps To Check

Procedure

1. Check the alt attribute value of each area element.
2. Check if the alt attribute value ends with a sound file suffix.
3. Following is a sample list of sound file suffixes. This is not an exhaustive list and the author should test the actual file to determine if it is a sound file: .wav, .snd, .mp3, .iff, .svx, .sam, .smp, .vce, .vox, .pcm, and .aif.
4. If the alt attribute value ends with a sound file suffix then check the content for a link to a sound file transcript.

Expected Result

1. If the area's alt attribute links to a sound file then the content is expected to contain a link to a text transcript for the sound file.

Failed Result

1. Create a text transcript of the sound file and add a link to it.

Examples

Pass Examples

area has link to sound file (.mp3) and has a text equivalent link.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
<title>OAC Testfile - Check #66 - Negative</title>
</head>
<body>
<p><img src="welcome.gif" usemap="#map1"  alt="Image map of areas in the library" /></p>
<p><map id="map1" name="map1">
<area shape="rect" coords="0,0,80,30" href="reference.html" alt="Reference" />
<area shape="rect" coords="0,35,110,100" href="avlab.mp3" alt="Audio Visual Lab" />
</map></p>
<p><a href="avlab.txt">Audio Visual Lab Text Transcript</a></p>
</body>
</html>

Fail Examples

area has link to sound file (.mp3) but no text equivalent link.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" />
<title>OAC Testfile - Check #66 - Positive</title>
</head>
<body>
<p><img src="welcome.gif" usemap="#map1"  alt="Image map of areas in the library" /></p>
<p><map id="map1" name="map1">
<area shape="rect" coords="0,0,80,30" href="reference.html" alt="Reference" />
<area shape="rect" coords="0,35,110,100" href="avlab.mp3" alt="Audio Visual Lab" />
</map></p>
</body>
</html>
Web site engine's code is copyright © 2023
Inclusive Design Institute