Skip to content

Commit

Permalink
[e] (0) sync with WebVTT
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=22660
Affected topics: Video Text Tracks

git-svn-id: http://svn.whatwg.org/webapps@8056 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 15, 2013
1 parent c64bd0b commit 25b52ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions complete.html
Expand Up @@ -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 &mdash; Last Updated 12 July 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>
Expand Down Expand Up @@ -31212,7 +31212,7 @@ <h6 id=text-track-model><span class=secno>4.8.10.12.1 </span>Text track model</h

<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> &mdash; 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
Expand Down Expand Up @@ -32059,7 +32059,7 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>

// 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);
Expand Down
6 changes: 3 additions & 3 deletions index
Expand Up @@ -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 &mdash; Last Updated 12 July 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>
Expand Down Expand Up @@ -31212,7 +31212,7 @@ interface <dfn id=mediacontroller>MediaController</dfn> : <a href=#eventtarget>E

<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> &mdash; 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
Expand Down Expand Up @@ -32059,7 +32059,7 @@ var sounds = sfx.addTextTrack('metadata');

// 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);
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -33476,7 +33476,7 @@ interface <dfn>MediaController</dfn> : <span>EventTarget</span> {

<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> &mdash; 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>

Expand Down Expand Up @@ -34485,7 +34485,7 @@ var sounds = sfx.addTextTrack('metadata');

// 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);
Expand Down

0 comments on commit 25b52ce

Please sign in to comment.