This technique relates to the following sections of the guidelines:
Provide a text alternative inside the object
element.
If object
is used, provide a text
alternative in the content of the element:
When to use this technique
Use this technique when
your content uses the object tag to access an additional program or
technology that is not natively supported by current user agents.
When the object element is used in web content, the author assumes that
the majority of the audience has access to the additional technology
and are using a graphical browser.
This example shows a text alternative for a Java applet using the object
element.
<object classid="java:Press.class" width="500" height="500">
As temperature increases, the molecules in the balloon...
</object>
This example takes advantage of the fact the object
elements may be nested to provide for alternative representations of
information.
<object classid="java:Press.class" width="500" height="500">
<object data="Pressure.mpeg" type="video/mpeg">
<object data="Pressure.gif" type="image/gif">
As temperature increases, the molecules in the balloon...
</object>
</object>
</object>