[html5] r5069 - [e] (0) minor tweaks for stage 2 of the caption work

whatwg at whatwg.org whatwg at whatwg.org
Mon May 3 19:00:45 PDT 2010


Author: ianh
Date: 2010-05-03 19:00:44 -0700 (Mon, 03 May 2010)
New Revision: 5069

Modified:
   complete.html
   index
   source
Log:
[e] (0) minor tweaks for stage 2 of the caption work

Modified: complete.html
===================================================================
--- complete.html	2010-05-04 01:54:37 UTC (rev 5068)
+++ complete.html	2010-05-04 02:00:44 UTC (rev 5069)
@@ -527,7 +527,11 @@
        <li><a href=#the-ready-states><span class=secno>4.8.10.7 </span>The ready states</a></li>
        <li><a href=#playing-the-media-resource><span class=secno>4.8.10.8 </span>Playing the media resource</a></li>
        <li><a href=#seeking><span class=secno>4.8.10.9 </span>Seeking</a></li>
-       <li><a href=#timed-tracks><span class=secno>4.8.10.10 </span>Timed tracks</a></li>
+       <li><a href=#timed-tracks><span class=secno>4.8.10.10 </span>Timed tracks</a>
+        <ol>
+         <li><a href=#timed-track-model><span class=secno>4.8.10.10.1 </span>Timed track model</a></li>
+         <li><a href=#in-band-timed-tracks><span class=secno>4.8.10.10.2 </span>In-band timed tracks</a></li>
+         <li><a href=#websrt><span class=secno>4.8.10.10.3 </span>WebSRT</a></ol></li>
        <li><a href=#user-interface><span class=secno>4.8.10.11 </span>User interface</a></li>
        <li><a href=#time-ranges><span class=secno>4.8.10.12 </span>Time ranges</a></li>
        <li><a href=#mediaevents><span class=secno>4.8.10.13 </span>Event summary</a></li>
@@ -23563,19 +23567,19 @@
   <table><thead><tr><th>State
      <th>Keywords
      <th>Brief description
-   <tbody><tr><td><span title=attr-track-kind-subtitle>Subtitles</span>
+   <tbody><tr><td><dfn id=attr-track-kind-subtitle title=attr-track-kind-subtitle>Subtitles</dfn>
      <td><dfn id=attr-track-kind-keyword-subtitles title=attr-track-kind-keyword-subtitles><code>subtitles</code></dfn>
      <td>Translation of the dialogue, suitable for when the sound is available but not understood (e.g. because the user does not understand the language of the <a href=#media-resource>media resource</a>'s soundtrack).
-    <tr><td><span title=attr-track-kind-caption>Captions</span>
+    <tr><td><dfn id=attr-track-kind-caption title=attr-track-kind-caption>Captions</dfn>
      <td><dfn id=attr-track-kind-keyword-captions title=attr-track-kind-keyword-captions><code>captions</code></dfn>
      <td>Transcription of the dialogue, suitable for when the soundtrack is unavailable (e.g. because it is muted or because the user is deaf). 
-    <tr><td><span title=attr-track-kind-descriptions>Descriptions</span>
+    <tr><td><dfn id=attr-track-kind-descriptions title=attr-track-kind-descriptions>Descriptions</dfn>
      <td><dfn id=attr-track-kind-keyword-descriptions title=attr-track-kind-keyword-descriptions><code>descriptions</code></dfn>
      <td>Textual descriptions of the video component of the <a href=#media-resource>media resource</a>, intended for audio synthesis when the visual component is unavailable (e.g. because the user is interacting with the application without a screen while driving, or because the user is blind).
-    <tr><td><span title=attr-track-kind-chapters>Chapters</span>
+    <tr><td><dfn id=attr-track-kind-chapters title=attr-track-kind-chapters>Chapters</dfn>
      <td><dfn id=attr-track-kind-keyword-chapters title=attr-track-kind-keyword-chapters><code>chapters</code></dfn>
      <td>Chapter titles, intended to be used for navigating the <a href=#media-resource>media resource</a>.
-    <tr><td><span title=attr-track-kind-metadata>Metadata</span>
+    <tr><td><dfn id=attr-track-kind-metadata title=attr-track-kind-metadata>Metadata</dfn>
      <td><dfn id=attr-track-kind-keyword-metadata title=attr-track-kind-keyword-metadata><code>metadata</code></dfn>
      <td>Tracks intended for use from script.
   </table><p>The attribute may be omitted. The <i>missing value default</i> is
@@ -25834,7 +25838,19 @@
 
   <p class=XXX>processing model for timed tracks</p>
 
+  <h6 id=timed-track-model><span class=secno>4.8.10.10.1 </span>Timed track model</h6>
 
+  <p class=XXX>...
+
+  <h6 id=in-band-timed-tracks><span class=secno>4.8.10.10.2 </span>In-band timed tracks</h6>
+
+  <p class=XXX>...
+
+  <h6 id=websrt><span class=secno>4.8.10.10.3 </span>WebSRT</h6>
+
+  <p class=XXX>...
+
+
   <h5 id=user-interface><span class=secno>4.8.10.11 </span>User interface</h5>
 
   <p>The <dfn id=attr-media-controls title=attr-media-controls><code>controls</code></dfn>
@@ -88372,9 +88388,9 @@
      <td> The type of timed track
      <td> "<code title=attr-track-kind-subtitles>subtitles</code>";
           "<code title=attr-track-kind-captions>captions</code>";
-          "<code title=attr-track-kind-descriptions>descriptions</code>";
-          "<code title=attr-track-kind-chapters>chapters</code>";
-          "<code title=attr-track-kind-metadata>metadata</code>"
+          "<code title=attr-track-kind-descriptions><a href=#attr-track-kind-descriptions>descriptions</a></code>";
+          "<code title=attr-track-kind-chapters><a href=#attr-track-kind-chapters>chapters</a></code>";
+          "<code title=attr-track-kind-metadata><a href=#attr-track-kind-metadata>metadata</a></code>"
     <tr><th> <code title="">label</code>
      <td> <code title=attr-command-label><a href=#attr-command-label>command</a></code>;
           <code title=attr-menu-label><a href=#attr-menu-label>menu</a></code>;

Modified: index
===================================================================
--- index	2010-05-04 01:54:37 UTC (rev 5068)
+++ index	2010-05-04 02:00:44 UTC (rev 5069)
@@ -536,7 +536,11 @@
        <li><a href=#the-ready-states><span class=secno>4.8.10.7 </span>The ready states</a></li>
        <li><a href=#playing-the-media-resource><span class=secno>4.8.10.8 </span>Playing the media resource</a></li>
        <li><a href=#seeking><span class=secno>4.8.10.9 </span>Seeking</a></li>
-       <li><a href=#timed-tracks><span class=secno>4.8.10.10 </span>Timed tracks</a></li>
+       <li><a href=#timed-tracks><span class=secno>4.8.10.10 </span>Timed tracks</a>
+        <ol>
+         <li><a href=#timed-track-model><span class=secno>4.8.10.10.1 </span>Timed track model</a></li>
+         <li><a href=#in-band-timed-tracks><span class=secno>4.8.10.10.2 </span>In-band timed tracks</a></li>
+         <li><a href=#websrt><span class=secno>4.8.10.10.3 </span>WebSRT</a></ol></li>
        <li><a href=#user-interface><span class=secno>4.8.10.11 </span>User interface</a></li>
        <li><a href=#time-ranges><span class=secno>4.8.10.12 </span>Time ranges</a></li>
        <li><a href=#mediaevents><span class=secno>4.8.10.13 </span>Event summary</a></li>
@@ -23464,19 +23468,19 @@
   <table><thead><tr><th>State
      <th>Keywords
      <th>Brief description
-   <tbody><tr><td><span title=attr-track-kind-subtitle>Subtitles</span>
+   <tbody><tr><td><dfn id=attr-track-kind-subtitle title=attr-track-kind-subtitle>Subtitles</dfn>
      <td><dfn id=attr-track-kind-keyword-subtitles title=attr-track-kind-keyword-subtitles><code>subtitles</code></dfn>
      <td>Translation of the dialogue, suitable for when the sound is available but not understood (e.g. because the user does not understand the language of the <a href=#media-resource>media resource</a>'s soundtrack).
-    <tr><td><span title=attr-track-kind-caption>Captions</span>
+    <tr><td><dfn id=attr-track-kind-caption title=attr-track-kind-caption>Captions</dfn>
      <td><dfn id=attr-track-kind-keyword-captions title=attr-track-kind-keyword-captions><code>captions</code></dfn>
      <td>Transcription of the dialogue, suitable for when the soundtrack is unavailable (e.g. because it is muted or because the user is deaf). 
-    <tr><td><span title=attr-track-kind-descriptions>Descriptions</span>
+    <tr><td><dfn id=attr-track-kind-descriptions title=attr-track-kind-descriptions>Descriptions</dfn>
      <td><dfn id=attr-track-kind-keyword-descriptions title=attr-track-kind-keyword-descriptions><code>descriptions</code></dfn>
      <td>Textual descriptions of the video component of the <a href=#media-resource>media resource</a>, intended for audio synthesis when the visual component is unavailable (e.g. because the user is interacting with the application without a screen while driving, or because the user is blind).
-    <tr><td><span title=attr-track-kind-chapters>Chapters</span>
+    <tr><td><dfn id=attr-track-kind-chapters title=attr-track-kind-chapters>Chapters</dfn>
      <td><dfn id=attr-track-kind-keyword-chapters title=attr-track-kind-keyword-chapters><code>chapters</code></dfn>
      <td>Chapter titles, intended to be used for navigating the <a href=#media-resource>media resource</a>.
-    <tr><td><span title=attr-track-kind-metadata>Metadata</span>
+    <tr><td><dfn id=attr-track-kind-metadata title=attr-track-kind-metadata>Metadata</dfn>
      <td><dfn id=attr-track-kind-keyword-metadata title=attr-track-kind-keyword-metadata><code>metadata</code></dfn>
      <td>Tracks intended for use from script.
   </table><p>The attribute may be omitted. The <i>missing value default</i> is
@@ -25735,7 +25739,19 @@
 
   <p class=XXX>processing model for timed tracks</p>
 
+  <h6 id=timed-track-model><span class=secno>4.8.10.10.1 </span>Timed track model</h6>
 
+  <p class=XXX>...
+
+  <h6 id=in-band-timed-tracks><span class=secno>4.8.10.10.2 </span>In-band timed tracks</h6>
+
+  <p class=XXX>...
+
+  <h6 id=websrt><span class=secno>4.8.10.10.3 </span>WebSRT</h6>
+
+  <p class=XXX>...
+
+
   <h5 id=user-interface><span class=secno>4.8.10.11 </span>User interface</h5>
 
   <p>The <dfn id=attr-media-controls title=attr-media-controls><code>controls</code></dfn>
@@ -81615,9 +81631,9 @@
      <td> The type of timed track
      <td> "<code title=attr-track-kind-subtitles>subtitles</code>";
           "<code title=attr-track-kind-captions>captions</code>";
-          "<code title=attr-track-kind-descriptions>descriptions</code>";
-          "<code title=attr-track-kind-chapters>chapters</code>";
-          "<code title=attr-track-kind-metadata>metadata</code>"
+          "<code title=attr-track-kind-descriptions><a href=#attr-track-kind-descriptions>descriptions</a></code>";
+          "<code title=attr-track-kind-chapters><a href=#attr-track-kind-chapters>chapters</a></code>";
+          "<code title=attr-track-kind-metadata><a href=#attr-track-kind-metadata>metadata</a></code>"
     <tr><th> <code title="">label</code>
      <td> <code title=attr-command-label><a href=#attr-command-label>command</a></code>;
           <code title=attr-menu-label><a href=#attr-menu-label>menu</a></code>;

Modified: source
===================================================================
--- source	2010-05-04 01:54:37 UTC (rev 5068)
+++ source	2010-05-04 02:00:44 UTC (rev 5069)
@@ -25210,23 +25210,23 @@
      <th>Brief description
    <tbody>
     <tr>
-     <td><span title="attr-track-kind-subtitle">Subtitles</span>
+     <td><dfn title="attr-track-kind-subtitle">Subtitles</dfn>
      <td><dfn title="attr-track-kind-keyword-subtitles"><code>subtitles</code></dfn>
      <td>Translation of the dialogue, suitable for when the sound is available but not understood (e.g. because the user does not understand the language of the <span>media resource</span>'s soundtrack).
     <tr>
-     <td><span title="attr-track-kind-caption">Captions</span>
+     <td><dfn title="attr-track-kind-caption">Captions</dfn>
      <td><dfn title="attr-track-kind-keyword-captions"><code>captions</code></dfn>
      <td>Transcription of the dialogue, suitable for when the soundtrack is unavailable (e.g. because it is muted or because the user is deaf). 
     <tr>
-     <td><span title="attr-track-kind-descriptions">Descriptions</span>
+     <td><dfn title="attr-track-kind-descriptions">Descriptions</dfn>
      <td><dfn title="attr-track-kind-keyword-descriptions"><code>descriptions</code></dfn>
      <td>Textual descriptions of the video component of the <span>media resource</span>, intended for audio synthesis when the visual component is unavailable (e.g. because the user is interacting with the application without a screen while driving, or because the user is blind).
     <tr>
-     <td><span title="attr-track-kind-chapters">Chapters</span>
+     <td><dfn title="attr-track-kind-chapters">Chapters</dfn>
      <td><dfn title="attr-track-kind-keyword-chapters"><code>chapters</code></dfn>
      <td>Chapter titles, intended to be used for navigating the <span>media resource</span>.
     <tr>
-     <td><span title="attr-track-kind-metadata">Metadata</span>
+     <td><dfn title="attr-track-kind-metadata">Metadata</dfn>
      <td><dfn title="attr-track-kind-keyword-metadata"><code>metadata</code></dfn>
      <td>Tracks intended for use from script.
   </table>
@@ -27909,7 +27909,19 @@
 
   <p class="XXX">processing model for timed tracks</p>
 
+  <h6>Timed track model</h6>
 
+  <p class="XXX">...
+
+  <h6>In-band timed tracks</h6>
+
+  <p class="XXX">...
+
+  <h6>WebSRT</h6>
+
+  <p class="XXX">...
+
+
   <h5>User interface</h5>
 
   <p>The <dfn title="attr-media-controls"><code>controls</code></dfn>




More information about the Commit-Watchers mailing list