[html5] r8056 - [e] (0) sync with WebVTT Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=2 [...]
whatwg at whatwg.org
whatwg at whatwg.org
Mon Jul 15 11:37:00 PDT 2013
Author: ianh
Date: 2013-07-15 11:36:58 -0700 (Mon, 15 Jul 2013)
New Revision: 8056
Modified:
complete.html
index
source
Log:
[e] (0) sync with WebVTT
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=22660
Affected topics: Video Text Tracks
Modified: complete.html
===================================================================
--- complete.html 2013-07-12 20:40:52 UTC (rev 8055)
+++ complete.html 2013-07-15 18:36:58 UTC (rev 8056)
@@ -256,7 +256,7 @@
<header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 12 July 2013</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 15 July 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
@@ -31212,7 +31212,7 @@
<p>Each <a href=#text-track-cue>text track cue</a> has a corresponding <code><a href=#texttrackcue>TextTrackCue</a></code> object (or more
specifically, an object that inherits from <code><a href=#texttrackcue>TextTrackCue</a></code> — for example, WebVTT
- cues use the <code>WebVTTCue</code> interface). A <a href=#text-track-cue>text track cue</a>'s in-memory
+ cues use the <code>VTTCue</code> interface). A <a href=#text-track-cue>text track cue</a>'s in-memory
representation can be dynamically changed through this <code><a href=#texttrackcue>TextTrackCue</a></code> API. <a href=#refsWEBVTT>[WEBVTT]</a></p>
<p>A <a href=#text-track-cue>text track cue</a> is associated with <a href=#rules-for-updating-the-text-track-rendering>rules for updating the text track
@@ -32059,7 +32059,7 @@
// add sounds we care about
function addFX(start, end, name) {
- var cue = new WebVTTCue(start, end, '');
+ var cue = new VTTCue(start, end, '');
cue.id = name;
cue.pauseOnExit = true;
sounds.addCue(cue);
Modified: index
===================================================================
--- index 2013-07-12 20:40:52 UTC (rev 8055)
+++ index 2013-07-15 18:36:58 UTC (rev 8056)
@@ -256,7 +256,7 @@
<header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 12 July 2013</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 15 July 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
@@ -31212,7 +31212,7 @@
<p>Each <a href=#text-track-cue>text track cue</a> has a corresponding <code><a href=#texttrackcue>TextTrackCue</a></code> object (or more
specifically, an object that inherits from <code><a href=#texttrackcue>TextTrackCue</a></code> — for example, WebVTT
- cues use the <code>WebVTTCue</code> interface). A <a href=#text-track-cue>text track cue</a>'s in-memory
+ cues use the <code>VTTCue</code> interface). A <a href=#text-track-cue>text track cue</a>'s in-memory
representation can be dynamically changed through this <code><a href=#texttrackcue>TextTrackCue</a></code> API. <a href=#refsWEBVTT>[WEBVTT]</a></p>
<p>A <a href=#text-track-cue>text track cue</a> is associated with <a href=#rules-for-updating-the-text-track-rendering>rules for updating the text track
@@ -32059,7 +32059,7 @@
// add sounds we care about
function addFX(start, end, name) {
- var cue = new WebVTTCue(start, end, '');
+ var cue = new VTTCue(start, end, '');
cue.id = name;
cue.pauseOnExit = true;
sounds.addCue(cue);
Modified: source
===================================================================
--- source 2013-07-12 20:40:52 UTC (rev 8055)
+++ source 2013-07-15 18:36:58 UTC (rev 8056)
@@ -33476,7 +33476,7 @@
<p>Each <span>text track cue</span> has a corresponding <code>TextTrackCue</code> object (or more
specifically, an object that inherits from <code>TextTrackCue</code> — for example, WebVTT
- cues use the <code>WebVTTCue</code> interface). A <span>text track cue</span>'s in-memory
+ cues use the <code>VTTCue</code> interface). A <span>text track cue</span>'s in-memory
representation can be dynamically changed through this <code>TextTrackCue</code> API. <a
href="#refsWEBVTT">[WEBVTT]</a></p>
@@ -34485,7 +34485,7 @@
// add sounds we care about
function addFX(start, end, name) {
- var cue = new WebVTTCue(start, end, '');
+ var cue = new VTTCue(start, end, '');
cue.id = name;
cue.pauseOnExit = true;
sounds.addCue(cue);
More information about the Commit-Watchers
mailing list