Short URL: http://html5.org/r/7076
| SVN | Bug | Comment | Time (UTC) |
|---|---|---|---|
| 7076 | 2012-04-25 22:53 |
Index: source
===================================================================
--- source (revision 7075)
+++ source (revision 7076)
@@ -37498,6 +37498,7 @@
<li>A <span>WebVTT cue gt escape</span>, representing a ">" character in the text of the cue.</li>
<li>A <span>WebVTT cue lrm escape</span>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li>
<li>A <span>WebVTT cue rlm escape</span>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li>
+ <li>A <span>WebVTT cue nbsp escape</span>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li>
</ul>
@@ -37525,6 +37526,7 @@
<li>A <span>WebVTT cue gt escape</span>, representing a ">" character in the text of the cue.</li>
<li>A <span>WebVTT cue lrm escape</span>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li>
<li>A <span>WebVTT cue rlm escape</span>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li>
+ <li>A <span>WebVTT cue nbsp escape</span>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li>
</ul>
@@ -37646,6 +37648,7 @@
<li>A <span>WebVTT cue gt escape</span>, representing a ">" character in the text of the annotation.</li>
<li>A <span>WebVTT cue lrm escape</span>, representing a U+200E LEFT-TO-RIGHT MARK Unicode bidirectional formatting character in the text of the cue.</li>
<li>A <span>WebVTT cue rlm escape</span>, representing a U+200F RIGHT-TO-LEFT MARK Unicode bidirectional formatting character in the text of the cue.</li>
+ <li>A <span>WebVTT cue nbsp escape</span>, representing a U+00A0 NO-BREAK SPACE character in the text of the cue.</li>
</ul>
</li>
@@ -37701,8 +37704,11 @@
<p>A <dfn>WebVTT cue rlm escape</dfn> is the five character string
"<code title="">&rlm;</code>".</p>
+ <p>A <dfn>WebVTT cue nbsp escape</dfn> is the six character string
+ "<code title="">&nbsp;</code>".</p>
+
<div class="impl">
<h3>Parsing</h3>
@@ -38916,6 +38922,10 @@
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>