embed
must not have empty Alt text.
embed
has null Alt text.
embed
element cannot have alt
attribute value of null ("") or whitespace.
alt
attribute that describes the embed
source.
embed
with valid alt
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #166 - Negative</title> </head> <body> <embed alt="description of the embed" src="demo.mov"> <noembed>Alternate content for the embed</noembed> </embed> </body> </html>
embed
with empty alt
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #166 - Positive</title> </head> <body> <embed alt="" src="demo.mov"> <noembed>Alternate content for the embed</noembed> </embed> </body> </html>