Skip to content

Commit

Permalink
[e] (0) Fix some typos or copypasta.
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=15674
Affected topics: Video Text Tracks

git-svn-id: http://svn.whatwg.org/webapps@7061 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 19, 2012
1 parent e0e0941 commit 077f7c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion complete.html
Expand Up @@ -33221,7 +33221,7 @@ <h6 id=text-track-api><span class=secno>4.8.10.12.5 </span>Text track API</h6>
able to run the script at the exact time specified.</p>

<pre>var sfx = new Audio('sfx.wav');
var sounds = a.addTextTrack('metadata');
var sounds = sfx.addTextTrack('metadata');

// add sounds we care about
sounds.addCue(new TextTrackCue('dog bark', 12.783, 13.612, '', '', '', true));
Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -33221,7 +33221,7 @@ interface <dfn id=mediacontroller>MediaController</dfn> {
able to run the script at the exact time specified.</p>

<pre>var sfx = new Audio('sfx.wav');
var sounds = a.addTextTrack('metadata');
var sounds = sfx.addTextTrack('metadata');

// add sounds we care about
sounds.addCue(new TextTrackCue('dog bark', 12.783, 13.612, '', '', '', true));
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -36338,7 +36338,7 @@ interface <dfn>MediaController</dfn> {
able to run the script at the exact time specified.</p>

<pre>var sfx = new Audio('sfx.wav');
var sounds = a.addTextTrack('metadata');
var sounds = sfx.addTextTrack('metadata');

// add sounds we care about
sounds.addCue(new TextTrackCue('dog bark', 12.783, 13.612, '', '', '', true));
Expand Down

0 comments on commit 077f7c9

Please sign in to comment.