Skip to content

Commit

Permalink
[giow] (0) Add new escapes to WebVTT for bidi authors
Browse files Browse the repository at this point in the history
Affected topics: Video Text Tracks

git-svn-id: http://svn.whatwg.org/webapps@7063 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 24, 2012
1 parent 09a7187 commit 0bbab64
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions source
Expand Up @@ -37431,6 +37431,8 @@ The General Relativistic Field Equations</pre>
<li>A <span>WebVTT cue amp escape</span>, representing a "&amp;" character in the text of the cue.</li>
<li>A <span>WebVTT cue lt escape</span>, representing a "&lt;" character in the text of the cue.</li>
<li>A <span>WebVTT cue gt escape</span>, representing a "&gt;" 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>
</ul>


Expand All @@ -37456,6 +37458,8 @@ The General Relativistic Field Equations</pre>
<li>A <span>WebVTT cue amp escape</span>, representing a "&amp;" character in the text of the cue.</li>
<li>A <span>WebVTT cue lt escape</span>, representing a "&lt;" character in the text of the cue.</li>
<li>A <span>WebVTT cue gt escape</span>, representing a "&gt;" 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>

</ul>

Expand Down Expand Up @@ -37575,6 +37579,8 @@ The General Relativistic Field Equations</pre>
<li>A <span>WebVTT cue amp escape</span>, representing a "&amp;" character in the text of the annotation.</li>
<li>A <span>WebVTT cue lt escape</span>, representing a "&lt;" character in the text of the annotation.</li>
<li>A <span>WebVTT cue gt escape</span>, representing a "&gt;" 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>
</ul>

</li>
Expand Down Expand Up @@ -37624,6 +37630,12 @@ The General Relativistic Field Equations</pre>
<p>A <dfn>WebVTT cue gt escape</dfn> is the four character string
"<code title="">&amp;gt;</code>".</p>

<p>A <dfn>WebVTT cue lrm escape</dfn> is the five character string
"<code title="">&amp;lrm;</code>".</p>

<p>A <dfn>WebVTT cue rlm escape</dfn> is the five character string
"<code title="">&amp;rlm;</code>".</p>



<div class="impl">
Expand Down Expand Up @@ -38831,6 +38843,14 @@ The General Relativistic Field Equations</pre>
title="">&amp;gt</code>", then append a U+003E GREATER-THAN SIGN
character (&gt;) to <var title="">result</var>.</p>

<p>If <var title="">buffer</var> is the string "<code
title="">&amp;lrm</code>", then append a U+200E LEFT-TO-RIGHT
MARK character to <var title="">result</var>.</p>

<p>If <var title="">buffer</var> is the string "<code
title="">&amp;rlm</code>", then append a U+200F RIGHT-TO-LEFT
MARK 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>
Expand Down

0 comments on commit 0bbab64

Please sign in to comment.