Skip to content

Commit

Permalink
[gow] (2) Allow <video> elements to show the poster frame instead of …
Browse files Browse the repository at this point in the history
…the first video frame.

git-svn-id: http://svn.whatwg.org/webapps@1619 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 15, 2008
1 parent c95f41a commit 276d450
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 9 deletions.
17 changes: 13 additions & 4 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -14923,11 +14923,20 @@ the time Marco had stuck his tongue out...&lt;/p></pre>
specified <a href="#muted" title=dom-media-muted>mute state</a>.

<p>When a <code><a href="#video1">video</a></code> element is <a
href="#paused" title=dom-media-paused>paused</a>, the element represents
href="#paused" title=dom-media-paused>paused</a> and the <a
href="#current0" title="current playback position">current playback
position</a> is the first frame of video, the element represents either
the frame of video corresponding to the <a href="#current0" title="current
playback position">current playback position</a>, or, if that is not
available yet (e.g. because the video is seeking or buffering), the last
rendered frame of video.
playback position">current playback position</a> or the image given by the
<code title=attr-video-poster><a href="#poster">poster</a></code>
attribute, at the discretion of the user agent.

<p>When a <code><a href="#video1">video</a></code> element is <a
href="#paused" title=dom-media-paused>paused</a> at any other position,
the element represents the frame of video corresponding to the <a
href="#current0" title="current playback position">current playback
position</a>, or, if that is not yet available (e.g. because the video is
seeking or buffering), the last frame of the video to have been rendered.

<p>When a <code><a href="#video1">video</a></code> element is neither <a
href="#actively">actively playing</a> nor <a href="#paused"
Expand Down
20 changes: 15 additions & 5 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -12913,11 +12913,21 @@ the time Marco had stuck his tongue out...&lt;/p></pre>
<span title="dom-media-muted">mute state</span>.</p>

<p>When a <code>video</code> element is <span
title="dom-media-paused">paused</span>, the element represents the
frame of video corresponding to the <span title="current playback
position">current playback position</span>, or, if that is not
available yet (e.g. because the video is seeking or buffering), the
last rendered frame of video.</p>
title="dom-media-paused">paused</span> and the <span title="current
playback position">current playback position</span> is the first
frame of video, the element represents either the frame of video
corresponding to the <span title="current playback position">current
playback position</span> or the image given by the <code
title="attr-video-poster">poster</code> attribute, at the discretion
of the user agent.</p>

<p>When a <code>video</code> element is <span
title="dom-media-paused">paused</span> at any other position, the
element represents the frame of video corresponding to the <span
title="current playback position">current playback position</span>,
or, if that is not yet available (e.g. because the video is seeking
or buffering), the last frame of the video to have been
rendered.</p>

<p>When a <code>video</code> element is neither <span>actively
playing</span> nor <span title="dom-media-paused">paused</span>
Expand Down

0 comments on commit 276d450

Please sign in to comment.