- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Dec 2010 08:06:45 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv25824/elements
Modified Files:
bdo.html video.html
Added Files:
bdi.html
Log Message:
doc video/@audio + input button requires value att
--- NEW FILE: bdi.html ---
<div xmlns="http://www.w3.org/1999/xhtml">
<h4>The bdi element</h4>
<div id="shortdesc" class="new">BiDi isolate</div>
<div id="longdesc">
<p>The
<span class="element">bdi</span>
element represents a span of text that is isolated from its
surroundings for the purposes of bidirectional text formatting
<a href="#refsBIDI">[BIDI]</a>.</p>
</div>
<div id="prose-model">Phrasing content</div>
</div>
Index: video.html
===================================================================
RCS file: /sources/public/html5/markup/elements/video.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- video.html 12 Aug 2010 19:55:38 -0000 1.14
+++ video.html 13 Dec 2010 08:06:43 -0000 1.15
@@ -73,6 +73,21 @@
<dd>Instructs the UA to seek back to the start of the video
upon reaching the end.</dd>
</dl>
+ <dl>
+ <dt id="video.attrs.audio">audio</dt>
+ <dd>Represents the default state of audio channel of the video,
+ potentially overriding user preferences.</dd>
+ <dd>If any
+ values are given in the
+ <a href="#common.data.audio-states-list">list of audio states</a>,
+ they instruct the UA to set default audio states, as follows:
+ <ul>
+ <li><code>muted</code>: instructs the UA to override the
+ user’s preferences, if any, and always default the video
+ to muted</li>
+ </ul>
+ </dd>
+ </dl>
</div>
<div id="dom-interface">HTMLVideoElement</div>
</div>
Index: bdo.html
===================================================================
RCS file: /sources/public/html5/markup/elements/bdo.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- bdo.html 12 Aug 2010 19:55:34 -0000 1.7
+++ bdo.html 13 Dec 2010 08:06:43 -0000 1.8
@@ -4,7 +4,9 @@
<div id="longdesc">
<p>The
<span class="element">bdo</span>
- element provides a means to specify a direction override of
+ element
+ represents an explicit text directionality formatting control for its
+ children; it provides a means to specify a direction override of
the Unicode BiDi algorithm
<a href="#refsBIDI">[BIDI]</a>.</p>
</div>
Received on Monday, 13 December 2010 08:07:17 UTC