- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 07 Jun 2009 23:07:57 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv14143/elements
Modified Files:
img.html object.html
Log Message:
h:tml; revised <img> attribute descriptions and fixed some more broken IDREFs
Index: object.html
===================================================================
RCS file: /sources/public/html5/markup/elements/object.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- object.html 7 Jun 2009 05:27:02 -0000 1.5
+++ object.html 7 Jun 2009 23:07:55 -0000 1.6
@@ -24,7 +24,8 @@
<dl>
<dt id="object.attrs.usemap">usemap</dt>
<dd>A <a href="#hash-name">hash-name reference</a> to a <a
- href="#map">map</a> element.</dd>
+ href="#map">map</a> element with which to associate the
+ image.</dd>
</dl>
<dl>
<dt id="object.attrs.width">width</dt>
Index: img.html
===================================================================
RCS file: /sources/public/html5/markup/elements/img.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- img.html 4 Mar 2009 08:13:58 -0000 1.4
+++ img.html 7 Jun 2009 23:07:54 -0000 1.5
@@ -2,66 +2,39 @@
<h4>The img element</h4>
<div id="shortdesc">image</div>
<div id="longdesc">
- <p>An <a href="#img" class="element">img</a> element
+ <p>The<a href="#img" class="element">img</a> element
represents an image.</p>
</div>
<div id="attributes">
<dl>
<dt id="img.attrs.src">src</dt>
- <dd>The image given by the <code>src</code> attribute is the embedded
- content, and the value of the <code>alt</code> attribute is the <code><a href="#img">img</a></code> element's <a href="#fallback">fallback
- content</a>.
- </dd>
+ <dd>A URL referencing a non-interactive, optionally
+ animated, image resource that is neither paged nor
+ scripted.</dd>
</dl>
<dl>
<dt id="img.attrs.alt">alt</dt>
- <dd>The image given by the <code>src</code> attribute is the embedded
- content, and the value of the <code>alt</code> attribute is the <code><a href="#img">img</a></code> element's <a href="#fallback">fallback
- content</a>.
- </dd>
+ <dd>The <a href="#fallback">fallback content</a> for the
+ image.</dd>
</dl>
<dl>
<dt id="img.attrs.ismap">ismap</dt>
- <dd>The <code>ismap</code>
- attribute, when used on an element that is a descendant of an <code><a href="#a">a</a></code> element with an <code title="attr-hyperlink-href"><a href="#href6">href</a></code> attribute, indicates by its presence that
- the element provides access to a server-side image map. This affects how
- events are handled on the corresponding <code><a href="#a">a</a></code>
- element.
- </dd>
+ <dd>Specifies that its <a href="#img">img</a> element
+ provides access to a server-side image map.</dd>
</dl>
<dl>
<dt id="img.attrs.usemap">usemap</dt>
- <dd>An image, in the form of an <code><a href="#img">img</a></code> element
- or an <code><a href="#object">object</a></code> element representing an
- image, may be associated with an image map (in the form of a
- <code><a href="#map">map</a></code> element) by specifying a
- <code>usemap</code> attribute on the
- <code><a href="#img">img</a></code> or <code><a href="#object">object</a></code> element. The <code title="attr-area-usemap">usemap</code> attribute, if specified, must be a <a href="#valid7">valid hash-name reference</a> to a <code><a href="#map">map</a></code> element.
- </dd>
+ <dd>A <a href="#hash-name">hash-name reference</a> to a <a
+ href="#map">map</a> element with which to associate the
+ image.</dd>
</dl>
<dl>
<dt id="img.attrs.width">width</dt>
- <dd>The <code>width</code> and
- <code>height</code> attributes
- on <code><a href="#img">img</a></code>, <code><a href="#embed">embed</a></code>, <code><a href="#object">object</a></code>,
- and <code><a href="#video1">video</a></code> elements may be specified to
- give the dimensions of the visual content of the element (the width and
- height respectively, relative to the nominal direction of the output
- medium), in CSS pixels. The attributes, if specified, must have values
- that are <a href="#valid3">valid positive non-zero integers</a>.
- </dd>
+ <dd>The width of the image, in CSS pixels.</dd>
</dl>
<dl>
<dt id="img.attrs.height">height</dt>
- <dd>The <code>width</code> and
- <code>height</code> attributes
- on <code><a href="#img">img</a></code>, <code><a href="#embed">embed</a></code>, <code><a href="#object">object</a></code>,
- and <code><a href="#video1">video</a></code> elements may be specified to
- give the dimensions of the visual content of the element (the width and
- height respectively, relative to the nominal direction of the output
- medium), in CSS pixels. The attributes, if specified, must have values
- that are <a href="#valid3">valid positive non-zero integers</a>.
- </dd>
+ <dd>The height of the image, in CSS pixels.</dd>
</dl>
</div>
</div>
Received on Sunday, 7 June 2009 23:08:02 UTC