Skip to content

Commit

Permalink
[giow] (0) Don't seek to the start before playing if you're already a…
Browse files Browse the repository at this point in the history
…t the start.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9085

git-svn-id: http://svn.whatwg.org/webapps@4801 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 23, 2010
1 parent 9d17f61 commit 68f555f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions complete.html
Expand Up @@ -23971,9 +23971,9 @@ <h5 id=playing-the-media-resource><span class=secno>4.8.9.8 </span>Playing the m

<li>

<p>If the <a href=#ended-playback title="ended playback">playback has ended</a>,
<a href=#dom-media-seek title=dom-media-seek>seek</a> to the <a href=#earliest-possible-position>earliest
possible position</a> of the <a href=#media-resource>media resource</a>.</p>
<p>If the <a href=#ended-playback title="ended playback">playback has ended</a>
and the <a href=#direction-of-playback>direction of playback</a> is forwards, <a href=#dom-media-seek title=dom-media-seek>seek</a> to the <a href=#earliest-possible-position>earliest possible
position</a> of the <a href=#media-resource>media resource</a>.</p>

<p class=note>This <a href=#seekUpdate>will cause</a> the user
agent to <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
Expand Down
6 changes: 3 additions & 3 deletions index
Expand Up @@ -23878,9 +23878,9 @@ interface <dfn>CueRangeCallback</dfn> {

<li>

<p>If the <a href=#ended-playback title="ended playback">playback has ended</a>,
<a href=#dom-media-seek title=dom-media-seek>seek</a> to the <a href=#earliest-possible-position>earliest
possible position</a> of the <a href=#media-resource>media resource</a>.</p>
<p>If the <a href=#ended-playback title="ended playback">playback has ended</a>
and the <a href=#direction-of-playback>direction of playback</a> is forwards, <a href=#dom-media-seek title=dom-media-seek>seek</a> to the <a href=#earliest-possible-position>earliest possible
position</a> of the <a href=#media-resource>media resource</a>.</p>

<p class=note>This <a href=#seekUpdate>will cause</a> the user
agent to <a href=#queue-a-task>queue a task</a> to <a href=#fire-a-simple-event>fire a simple
Expand Down
7 changes: 4 additions & 3 deletions source
Expand Up @@ -25826,9 +25826,10 @@ interface <dfn>CueRangeCallback</dfn> {

<li>

<p>If the <span title="ended playback">playback has ended</span>,
<span title="dom-media-seek">seek</span> to the <span>earliest
possible position</span> of the <span>media resource</span>.</p>
<p>If the <span title="ended playback">playback has ended</span>
and the <span>direction of playback</span> is forwards, <span
title="dom-media-seek">seek</span> to the <span>earliest possible
position</span> of the <span>media resource</span>.</p>

<p class="note">This <a href="#seekUpdate">will cause</a> the user
agent to <span>queue a task</span> to <span>fire a simple
Expand Down

0 comments on commit 68f555f

Please sign in to comment.