- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 15 Dec 2010 05:52:12 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv29151/elements
Modified Files:
meta.charset.html
Added Files:
track.html
Log Message:
document the track element
--- NEW FILE: track.html ---
<div xmlns="http://www.w3.org/1999/xhtml">
<h4>The track element</h4>
<div id="shortdesc" class="new">timed track</div>
<div id="longdesc">
<p>The
<span class="element">track</span>
element enables external timed tracks such as subtitles and captions to
be specified for
<a href="#audio" class="element">audio</a>
and
<a href="#video" class="element">video</a>
elements.</p>
</div>
<div id="attributes">
<dl>
<dt id="track.attrs.kind">kind</dt>
<dd>The kind of timed track.
<ul>
<li>"<span class="attr-values">subtitles</span>": Transcription
or translation of the dialogue in the soundtrack of the video or
audio stream; meant for users who have access to the soundtrack
but for whom it is not fully usable as intended (for example, for
users who do not understand the language of the soundtrack).</li>
<li>"<span class="attr-values">captions</span>": Transcription or
translation of the dialogue, sound effects, relevant musical
cues, and other relevant aural information in the video or audio
stream; intended for cases where users do not have any access
at all to the soundtrack (for example, for users who are deaf or
for the case when the soundtrack is currently muted).</li>
<li>"<span class="attr-values">descriptions</span>": Textual
descriptions of the visual component of a video; meant for use
with audio synthesis when the visual component is unavailable
(for example, for users who are blind, or for users who are
currently unable to view the screen on which the video is
displayed—for example, a user accessing the video while driving a
car).</li>
<li>"<span class="attr-values">chapters</span>": Chapter
titles.</li>
<li>"<span class="attr-values">metadata</span>": Metadata content
meant for use from script.</li>
</ul>
</dd>
</dl>
<dl>
<dt id="track.attrs.src">src</dt>
<dd>The address of the timed track.</dd>
</dl>
<dl>
<dt id="track.attrs.charset">charset</dt>
<dd>The character encoding of the timed track.</dd>
</dl>
<dl>
<dt id="track.attrs.srclang">srclang</dt>
<dd>The language of the timed track.</dd>
</dl>
<dl>
<dt id="track.attrs.label">label</dt>
<dd>A user-readable title for the timed track.</dd>
</dl>
</div>
<div id="dom-interface">HTMLTrackElement</div>
</div>
Index: meta.charset.html
===================================================================
RCS file: /sources/public/html5/markup/elements/meta.charset.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- meta.charset.html 12 Aug 2010 19:55:36 -0000 1.9
+++ meta.charset.html 15 Dec 2010 05:52:09 -0000 1.10
@@ -14,6 +14,12 @@
<dl>
<dt id="meta.charset.attrs.charset" class="new">charset</dt>
<dd>Specifies a character encoding name.</dd>
+ <dd class="note">For documents in the
+ <a href="#xml-syntax">XML syntax</a>,
+ the value of the <span class="attribute">charset</span> attribute
+ must be a
+ <a href="#case-insensitive">case-insensitive match</a>
+ for the string "<code>UTF-8</code>".</dd>
</dl>
</div>
<ul id="constraints">
Received on Wednesday, 15 December 2010 05:52:13 UTC