embed element
(Referring UWEM Test: 1.1_HTML_06)Test info
Failure cause
Found embed element.
You used the embed element to embed non-text content.
Why this may be a barrier
The embed element is not part of the HTML/XHTML standard and as such inherently inaccessible. Although it is widely supported in user agents you can not expect its context to be rendered correctly. If you can not avoid using embed make sure to provide an alternative with noembed.
Good Example
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 //EN">
<html>
<head><title>Sample: Page without EMBED-element</title></head>
<body><img src="../eGovMon_Logo.gif" alt="eGovMon – eGovernmant Monitor"></body>
</html>
Solution
Try using an other element like object or img, or to present your content in a different format.
References
Related WCAG 1.0 Checkpoint
1.1"Provide a text equivalent for every non-text element (e.g., via "alt", "longdesc", or in element content). This includes: images, graphical representations of text (including symbols), image map regions, animations (e.g., animated GIFs), applets and programmatic objects, ascii art, frames, scripts, images used as list bullets, spacers, graphical buttons, sounds (played with or without user interaction), stand-alone audio files, audio tracks of video, and video." [Priority 1]
WCAG 1.0 Checkpoint 1.1Referring UWEM Test
1.1_HTML_06This test is targeted to non-text content embedded with the non-standard embed element.