hixie: Change the text track cue order so that it reverse-sorts on end time, since that results in better rendering and fixes some chapter issues. Also, better define the order of events for multiple cues that started at the same time with different end times. (whatwg r6557)

hixie: Change the text track cue order so that it reverse-sorts on end
time, since that results in better rendering and fixes some chapter
issues. Also, better define the order of events for multiple cues that
started at the same time with different end times. (whatwg r6557)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5251&r2=1.5252&f=h
http://html5.org/tools/web-apps-tracker?from=6556&to=6557

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5251
retrieving revision 1.5252
diff -u -d -r1.5251 -r1.5252
--- Overview.html 14 Sep 2011 22:38:52 -0000 1.5251
+++ Overview.html 20 Sep 2011 00:13:59 -0000 1.5252
@@ -321,7 +321,7 @@
 
    <h1>HTML5</h1>
    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
-   <h2 class="no-num no-toc" id="editor-s-draft-14-september-2011">Editor's Draft 14 September 2011</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-20-september-2011">Editor's Draft 20 September 2011</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -467,7 +467,7 @@
   Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation
   track.
-  This specification is the 14 September 2011 Editor's Draft.
+  This specification is the 20 September 2011 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
   actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
   group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
@@ -24093,16 +24093,9 @@
     <p>Sort the <a href="#concept-task" title="concept-task">tasks</a> in <var title="">events</var> in ascending time order (<a href="#concept-task" title="concept-task">tasks</a> with earlier times
     first).</p>
 
-    <p>Further sort <a href="#concept-task" title="concept-task">tasks</a> in <var title="">events</var> that have the same time by the <a href="#text-track">text
-    track</a> associated with the <a href="#concept-task" title="concept-task">tasks</a>, in the same order as the <a href="#text-track" title="text track">text tracks</a> appear in the <a href="#media-element">media
-    element</a>'s <a href="#list-of-text-tracks">list of text tracks</a>.</p>
-
-    <p>Further sort <a href="#concept-task" title="concept-task">tasks</a> in <var title="">events</var> that have the same time and <a href="#text-track">text
-    track</a> by the <a href="#text-track-cue">text track cue</a> associated with
-    the <a href="#concept-task" title="concept-task">tasks</a>, in the same order as
-    the <a href="#text-track-cue" title="text track cue">cues</a> were created (so e.g.
-    for cues from a <span>WebVTT file</span>, that would be the order
-    in which the cues were listed in the file).</p>
+    <p>Further sort <a href="#concept-task" title="concept-task">tasks</a> in <var title="">events</var> that have the same time by the relative
+    <a href="#text-track-cue-order">text track cue order</a> of the <a href="#text-track-cue" title="text track
+    cue">text track cues</a> associated with these <a href="#concept-task" title="concept-task">tasks</a>.</p>
 
    </li>
 
@@ -25746,7 +25739,7 @@
   must be sorted by their <a href="#text-track-cue-start-time" title="text track cue start
   time">start time</a>, earliest first; then, any <a href="#text-track-cue" title="text track cue">cues</a> with the same <a href="#text-track-cue-start-time" title="text
   track cue start time">start time</a> must be sorted by their
-  <a href="#text-track-cue-end-time" title="text track cue end time">end time</a>, earliest
+  <a href="#text-track-cue-end-time" title="text track cue end time">end time</a>, latest
   first; and finally, any <a href="#text-track-cue" title="text track cue">cues</a>
   with identical <a href="#text-track-cue-end-time" title="text track cue end time">end
   times</a> must be sorted in the order they were created (so

Received on Tuesday, 20 September 2011 00:14:17 UTC