- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 15 Jun 2009 20:27:04 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv28605/elements
Modified Files:
audio.html video.html
Log Message:
h:tml; fixed handling of attribute descriptions for audio and video elements
Index: video.html
===================================================================
RCS file: /sources/public/html5/markup/elements/video.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- video.html 19 Feb 2009 03:00:12 -0000 1.4
+++ video.html 15 Jun 2009 20:27:02 -0000 1.5
@@ -20,24 +20,29 @@
<dd>The height of the video, in CSS pixels.</dd>
</dl>
<dl>
- <dt id="video.media.attrs.src">src</dt>
- <dd>The URL for the video stream.</dd>
+ <dt id="video.attrs.src">src</dt>
+ <dd>The URL for the video.</dd>
</dl>
<dl>
- <dt id="video.media.attrs.autoplay">autoplay</dt>
- <dd>Instructs the UA to automatically begin playback of
- the video stream as soon as it can do so without
- stopping.</dd>
+ <dt id="video.attrs.autobuffer">autobuffer</dt>
+ <dd>Instructs the UA that the author believes that
+ downloading the entire video optimistically will be
+ worthwhile.</dd>
</dl>
<dl>
- <dt id="video.media.attrs.controls">controls</dt>
+ <dt id="video.attrs.autoplay">autoplay</dt>
+ <dd>Instructs the UA to automatically begin playback of the
+ video as soon as it can do so without stopping.</dd>
+ </dl>
+ <dl>
+ <dt id="video.attrs.controls">controls</dt>
<dd>Instructs the UA to expose a user interface for
- controlling playback of the video stream.</dd>
+ controlling playback of the video.</dd>
</dl>
<dl>
- <dt id="video.media.attrs.loop">loop</dt>
- <dd>Instructs the UA to seek back to the start of the
- video stream upon reaching the end.</dd>
+ <dt id="video.attrs.loop">loop</dt>
+ <dd>Instructs the UA to seek back to the start of the video
+ upon reaching the end.</dd>
</dl>
</div>
</div>
Index: audio.html
===================================================================
RCS file: /sources/public/html5/markup/elements/audio.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- audio.html 8 Jan 2009 10:19:31 -0000 1.3
+++ audio.html 15 Jun 2009 20:27:02 -0000 1.4
@@ -7,22 +7,28 @@
</div>
<div id="attributes">
<dl>
- <dt id="audio.media.attrs.src">src</dt>
+ <dt id="audio.attrs.src">src</dt>
<dd>The URL for the audio stream.</dd>
</dl>
<dl>
- <dt id="audio.media.attrs.autoplay">autoplay</dt>
+ <dt id="audio.attrs.autobuffer">autobuffer</dt>
+ <dd>Instructs the UA that the author believes that
+ downloading the entire audio stream optimistically will be
+ worthwhile.</dd>
+ </dl>
+ <dl>
+ <dt id="audio.attrs.autoplay">autoplay</dt>
<dd>Instructs the UA to automatically begin playback of
the audio stream as soon as it can do so without
stopping.</dd>
</dl>
<dl>
- <dt id="audio.media.attrs.controls">controls</dt>
+ <dt id="audio.attrs.controls">controls</dt>
<dd>Instructs the UA to expose a user interface for
controlling playback of the audio stream.</dd>
</dl>
<dl>
- <dt id="audio.media.attrs.loop">loop</dt>
+ <dt id="audio.attrs.loop">loop</dt>
<dd>Instructs the UA to seek back to the start of the
audio stream upon reaching the end.</dd>
</dl>
Received on Monday, 15 June 2009 20:27:11 UTC