- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 25 Apr 2012 22:53:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webvtt In directory hutz:/tmp/cvs-serv26533 Modified Files: Overview.html Log Message: Add to WebVTT. (whatwg r7076) Index: Overview.html =================================================================== RCS file: /sources/public/html5/webvtt/Overview.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- Overview.html 25 Apr 2012 22:35:12 -0000 1.22 +++ Overview.html 25 Apr 2012 22:53:27 -0000 1.23 @@ -621,6 +621,7 @@ <li>A <a href=#webvtt-cue-gt-escape>WebVTT cue gt escape</a>, representing a ">" character in the text of the cue.</li> <li>A <a href=#webvtt-cue-lrm-escape>WebVTT cue lrm escape</a>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li> <li>A <a href=#webvtt-cue-rlm-escape>WebVTT cue rlm escape</a>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li> + <li>A <a href=#webvtt-cue-nbsp-escape>WebVTT cue nbsp escape</a>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li> </ul><p><dfn id=webvtt-cue-text>WebVTT cue text</dfn> consists of zero or more <a href=#webvtt-cue-components>WebVTT cue components</a>, in any order, each optionally separated from the next by a <a href=#webvtt-line-terminator>WebVTT line terminator</a>.</p> @@ -643,6 +644,7 @@ <li>A <a href=#webvtt-cue-gt-escape>WebVTT cue gt escape</a>, representing a ">" character in the text of the cue.</li> <li>A <a href=#webvtt-cue-lrm-escape>WebVTT cue lrm escape</a>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li> <li>A <a href=#webvtt-cue-rlm-escape>WebVTT cue rlm escape</a>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li> + <li>A <a href=#webvtt-cue-nbsp-escape>WebVTT cue nbsp escape</a>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li> </ul><p><dfn id=webvtt-cue-internal-text>WebVTT cue internal text</dfn> consists of an optional <a href=#webvtt-line-terminator>WebVTT line terminator</a>, followed by zero or more @@ -744,6 +746,7 @@ <li>A <a href=#webvtt-cue-gt-escape>WebVTT cue gt escape</a>, representing a ">" character in the text of the annotation.</li> <li>A <a href=#webvtt-cue-lrm-escape>WebVTT cue lrm escape</a>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li> <li>A <a href=#webvtt-cue-rlm-escape>WebVTT cue rlm escape</a>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li> + <li>A <a href=#webvtt-cue-nbsp-escape>WebVTT cue nbsp escape</a>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li> </ul></li> <li>A U+003E GREATER-THAN SIGN character (>).</li> @@ -790,6 +793,9 @@ <p>A <dfn id=webvtt-cue-rlm-escape>WebVTT cue rlm escape</dfn> is the five character string "<code title="">&rlm;</code>".</p> + <p>A <dfn id=webvtt-cue-nbsp-escape>WebVTT cue nbsp escape</dfn> is the six character string + "<code title="">&nbsp;</code>".</p> + <div class=impl> @@ -1792,6 +1798,9 @@ <p>If <var title="">buffer</var> is the string "<code title="">&rlm</code>", then append a U+200F RIGHT-TO-LEFT MARK character to <var title="">result</var>.</p> + <p>If <var title="">buffer</var> is the string "<code title="">&nbsp</code>", then append a U+00A0 NO-BREAK + SPACE character to <var title="">result</var>.</p> + <p>Otherwise, append <var title="">buffer</var> followed by a U+003B SEMICOLON character (;) to <var title="">result</var>.</p>
Received on Wednesday, 25 April 2012 22:53:32 UTC