[html5] r7063 - [giow] (0) Add new escapes to WebVTT for bidi authors Affected topics: Video Tex [...]

whatwg at whatwg.org whatwg at whatwg.org
Tue Apr 24 14:25:02 PDT 2012


Author: ianh
Date: 2012-04-24 14:25:02 -0700 (Tue, 24 Apr 2012)
New Revision: 7063

Modified:
   source
Log:
[giow] (0) Add new escapes to WebVTT for bidi authors
Affected topics: Video Text Tracks

Modified: source
===================================================================
--- source	2012-04-24 21:14:28 UTC (rev 7062)
+++ source	2012-04-24 21:25:02 UTC (rev 7063)
@@ -37431,6 +37431,8 @@
    <li>A <span>WebVTT cue amp escape</span>, representing a "&" character in the text of the cue.</li>
    <li>A <span>WebVTT cue lt escape</span>, representing a "<" character in the text of the cue.</li>
    <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>
   </ul>
 
 
@@ -37456,6 +37458,8 @@
    <li>A <span>WebVTT cue amp escape</span>, representing a "&" character in the text of the cue.</li>
    <li>A <span>WebVTT cue lt escape</span>, representing a "<" character in the text of the cue.</li>
    <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>
 
   </ul>
 
@@ -37575,6 +37579,8 @@
      <li>A <span>WebVTT cue amp escape</span>, representing a "&" character in the text of the annotation.</li>
      <li>A <span>WebVTT cue lt escape</span>, representing a "<" character in the text of the annotation.</li>
      <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>
     </ul>
 
    </li>
@@ -37624,8 +37630,14 @@
   <p>A <dfn>WebVTT cue gt escape</dfn> is the four character string
   "<code title="">&gt;</code>".</p>
 
+  <p>A <dfn>WebVTT cue lrm escape</dfn> is the five character string
+  "<code title="">&lrm;</code>".</p>
 
+  <p>A <dfn>WebVTT cue rlm escape</dfn> is the five character string
+  "<code title="">&rlm;</code>".</p>
 
+
+
   <div class="impl">
 
   <h3>Parsing</h3>
@@ -38831,6 +38843,14 @@
         title="">&gt</code>", then append a U+003E GREATER-THAN SIGN
         character (>) to <var title="">result</var>.</p>
 
+        <p>If <var title="">buffer</var> is the string "<code
+        title="">&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="">&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>




More information about the Commit-Watchers mailing list