- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 04 May 2010 04:27:24 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view In directory hutz:/tmp/cvs-serv21136 Modified Files: Overview.html spec.html video.html Log Message: remove old cuerange stuff (whatwg r5070) [updated by splitter] Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec-author-view/Overview.html,v retrieving revision 1.905 retrieving revision 1.906 diff -u -d -r1.905 -r1.906 --- Overview.html 4 May 2010 02:07:43 -0000 1.905 +++ Overview.html 4 May 2010 04:27:21 -0000 1.906 @@ -305,7 +305,7 @@ </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>. -This is revision 1.4071. +This is revision 1.4072. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Index: video.html =================================================================== RCS file: /sources/public/html5/spec-author-view/video.html,v retrieving revision 1.592 retrieving revision 1.593 diff -u -d -r1.592 -r1.593 --- video.html 4 May 2010 02:07:44 -0000 1.592 +++ video.html 4 May 2010 04:27:22 -0000 1.593 @@ -747,21 +747,12 @@ attribute boolean <a href="#dom-media-loop" title="dom-media-loop">loop</a>; void <a href="#dom-media-play" title="dom-media-play">play</a>(); void <a href="#dom-media-pause" title="dom-media-pause">pause</a>(); -<!--v2CUERANGE - // cue ranges - void <span title="dom-media-addCueRange">addCueRange</span>(in DOMString className, in DOMString id, in float start, in float end, in boolean pauseOnExit, in <span>CueRangeCallback</span> enterCallback, in <span>CueRangeCallback</span> exitCallback); - void <span title="dom-media-removeCueRanges">removeCueRanges</span>(in DOMString className); ---> + // controls attribute boolean <a href="#dom-media-controls" title="dom-media-controls">controls</a>; attribute float <a href="#dom-media-volume" title="dom-media-volume">volume</a>; attribute boolean <a href="#dom-media-muted" title="dom-media-muted">muted</a>; -};<!--v2CUERANGE - -[Callback=FunctionOnly, NoInterfaceObject] -interface <dfn>CueRangeCallback</dfn> { - void <span title="dom-CueRangeCallback-handleEvent">handleEvent</span>(in DOMString id); -};--></pre><p>The <dfn id="media-element-attributes">media element attributes</dfn>, <code title="attr-media-src"><a href="#attr-media-src">src</a></code>, <code title="attr-media-preload"><a href="#attr-media-preload">preload</a></code>, <code title="attr-media-autoplay"><a href="#attr-media-autoplay">autoplay</a></code>, <code title="attr-media-loop"><a href="#attr-media-loop">loop</a></code>, and <code title="attr-media-controls"><a href="#attr-media-controls">controls</a></code>, apply to all <a href="#media-element" title="media element">media elements</a>. They are defined in +};</pre><p>The <dfn id="media-element-attributes">media element attributes</dfn>, <code title="attr-media-src"><a href="#attr-media-src">src</a></code>, <code title="attr-media-preload"><a href="#attr-media-preload">preload</a></code>, <code title="attr-media-autoplay"><a href="#attr-media-autoplay">autoplay</a></code>, <code title="attr-media-loop"><a href="#attr-media-loop">loop</a></code>, and <code title="attr-media-controls"><a href="#attr-media-controls">controls</a></code>, apply to all <a href="#media-element" title="media element">media elements</a>. They are defined in this section.</p><!-- proposed v2 (actually v3!) features: * frame forward / backwards / step(n) while paused * hasAudio, hasVideo, hasCaptions, etc @@ -1145,102 +1136,7 @@ to override the automatic playback when it is not desired, e.g. when using a screen reader. Authors are also encouraged to consider not using the automatic playback behavior at all, and instead to let the - user agent wait for the user to start playback explicitly.</p><!--v2CUERANGE - <h5>Cue ranges</h5> - - <dl class="domintro"> - - <dt><var title="">media</var> . <code title="dom-media-addCueRange">addCueRange</code>(<var title="">className</var>, <var title="">id</var>, <var title="">start</var>, <var title="">end</var>, <var title="">pauseOnExit</var>, <var title="">enterCallback</var>, <var title="">exitCallback</var>)</dt> - - <dd> - - <p>Registers a range of time, given in seconds, and a pair of - callbacks, the first of which will be invoked when the - <span>current playback position</span> enters the range, and the - second of which will be invoked when it exits the range. The - callbacks are invoked with the given ID as their argument.</p> - - <p>In addition, if the <var title="">pauseOnExit</var> argument is - true, then playback will pause when it reaches the end of the - range.</p> - - </dd> - - <dt><var title="">media</var> . <code title="dom-media-removeCueRange">removeCueRange</code>(<var title="">className</var>)</dt> - - <dd> - - <p>Removes all the ranges that were registered with the given - class name.</p> - - </dd> - - </dl> - - <div class="impl"> - - <p><span title="media element">Media elements</span> have a set of - <dfn title="cue range">cue ranges</dfn>. Each cue range is made up - of the following information:</p> - - <dl> - - <dt>A class name</dt> - <dd>A group of related ranges can be given the same class name so - that they can all be removed at the same time.</dd> - - <dt>An identifier</dt> - <dd>A string can be assigned to each cue range for identification - by script. The string need not be unique and can contain any - value.</dd> - - <dt>A start time</dt> - <dt>An end time</dt> - <dd>The actual time range, using the same timeline as the - <span>media resource</span> itself.</dd> - - <dt>A "pause" boolean</dt> - <dd>A flag indicating whether to pause playback on exit.</dd> - - <dt>An "enter" callback</dt> - <dd>A callback that is called when the <span>current playback - position</span> enters the range.</dd> - - <dt>An "exit" callback</dt> - <dd>A callback that is called when the <span>current playback - position</span> exits the range.</dd> - - <dt>An "active" boolean</dt> - <dd>A flag indicating whether the range is active or not.</dd> - - </dl> - - <p>The <dfn title="dom-media-addCueRange"><code>addCueRange(<var - title="">className</var>, <var title="">id</var>, <var - title="">start</var>, <var title="">end</var>, <var - title="">pauseOnExit</var>, <var title="">enterCallback</var>, <var - title="">exitCallback</var>)</code></dfn> method must, when called, - add a <span>cue range</span> to the <span>media element</span>, that - cue range having the class name <var title="">className</var>, the - identifier <var title="">id</var>, the start time <var - title="">start</var> (in seconds), the end time <var - title="">end</var> (in seconds), the "pause" boolean with the same - value as <var title="">pauseOnExit</var>, the "enter" callback <var - title="">enterCallback</var>, the "exit" callback <var - title="">exitCallback</var>, and an "active" boolean that is true if - the <span>current playback position</span> is equal to or greater - than the start time and less than the end time, and false - otherwise.</p> - - <p>The <dfn - title="dom-media-removeCueRanges"><code>removeCueRanges(<var - title="">className</var>)</code></dfn> method must, when called, - remove all the <span title="cue range">cue ranges</span> of the - <span>media element</span> which have the class name <var - title="">className</var>.</p> - - </div> ---><h5 id="playing-the-media-resource"><span class="secno">4.8.10.8 </span>Playing the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code></dt> + user agent wait for the user to start playback explicitly.</p><h5 id="playing-the-media-resource"><span class="secno">4.8.10.8 </span>Playing the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code></dt> <dd> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec-author-view/spec.html,v retrieving revision 1.913 retrieving revision 1.914 diff -u -d -r1.913 -r1.914 --- spec.html 4 May 2010 02:07:44 -0000 1.913 +++ spec.html 4 May 2010 04:27:21 -0000 1.914 @@ -303,7 +303,7 @@ </dl><p>This specification is available in the following formats: <a href=spec.html>single page HTML</a>, <a href=Overview.html>multipage HTML</a>. -This is revision 1.4071. +This is revision 1.4072. </p> <p class=copyright><a href=http://www.w3.org/Consortium/Legal/ipr-notice#Copyright>Copyright</a> © 2010 <a href=http://www.w3.org/><abbr title="World Wide @@ -11551,21 +11551,12 @@ attribute boolean <a href=#dom-media-loop title=dom-media-loop>loop</a>; void <a href=#dom-media-play title=dom-media-play>play</a>(); void <a href=#dom-media-pause title=dom-media-pause>pause</a>(); -<!--v2CUERANGE - // cue ranges - void <span title="dom-media-addCueRange">addCueRange</span>(in DOMString className, in DOMString id, in float start, in float end, in boolean pauseOnExit, in <span>CueRangeCallback</span> enterCallback, in <span>CueRangeCallback</span> exitCallback); - void <span title="dom-media-removeCueRanges">removeCueRanges</span>(in DOMString className); ---> + // controls attribute boolean <a href=#dom-media-controls title=dom-media-controls>controls</a>; attribute float <a href=#dom-media-volume title=dom-media-volume>volume</a>; attribute boolean <a href=#dom-media-muted title=dom-media-muted>muted</a>; -};<!--v2CUERANGE - -[Callback=FunctionOnly, NoInterfaceObject] -interface <dfn>CueRangeCallback</dfn> { - void <span title="dom-CueRangeCallback-handleEvent">handleEvent</span>(in DOMString id); -};--></pre><p>The <dfn id=media-element-attributes>media element attributes</dfn>, <code title=attr-media-src><a href=#attr-media-src>src</a></code>, <code title=attr-media-preload><a href=#attr-media-preload>preload</a></code>, <code title=attr-media-autoplay><a href=#attr-media-autoplay>autoplay</a></code>, <code title=attr-media-loop><a href=#attr-media-loop>loop</a></code>, and <code title=attr-media-controls><a href=#attr-media-controls>controls</a></code>, apply to all <a href=#media-element title="media element">media elements</a>. They are defined in +};</pre><p>The <dfn id=media-element-attributes>media element attributes</dfn>, <code title=attr-media-src><a href=#attr-media-src>src</a></code>, <code title=attr-media-preload><a href=#attr-media-preload>preload</a></code>, <code title=attr-media-autoplay><a href=#attr-media-autoplay>autoplay</a></code>, <code title=attr-media-loop><a href=#attr-media-loop>loop</a></code>, and <code title=attr-media-controls><a href=#attr-media-controls>controls</a></code>, apply to all <a href=#media-element title="media element">media elements</a>. They are defined in this section.</p><!-- proposed v2 (actually v3!) features: * frame forward / backwards / step(n) while paused * hasAudio, hasVideo, hasCaptions, etc @@ -11949,102 +11940,7 @@ to override the automatic playback when it is not desired, e.g. when using a screen reader. Authors are also encouraged to consider not using the automatic playback behavior at all, and instead to let the - user agent wait for the user to start playback explicitly.</p><!--v2CUERANGE - <h5>Cue ranges</h5> - - <dl class="domintro"> - - <dt><var title="">media</var> . <code title="dom-media-addCueRange">addCueRange</code>(<var title="">className</var>, <var title="">id</var>, <var title="">start</var>, <var title="">end</var>, <var title="">pauseOnExit</var>, <var title="">enterCallback</var>, <var title="">exitCallback</var>)</dt> - - <dd> - - <p>Registers a range of time, given in seconds, and a pair of - callbacks, the first of which will be invoked when the - <span>current playback position</span> enters the range, and the - second of which will be invoked when it exits the range. The - callbacks are invoked with the given ID as their argument.</p> - - <p>In addition, if the <var title="">pauseOnExit</var> argument is - true, then playback will pause when it reaches the end of the - range.</p> - - </dd> - - <dt><var title="">media</var> . <code title="dom-media-removeCueRange">removeCueRange</code>(<var title="">className</var>)</dt> - - <dd> - - <p>Removes all the ranges that were registered with the given - class name.</p> - - </dd> - - </dl> - - <div class="impl"> - - <p><span title="media element">Media elements</span> have a set of - <dfn title="cue range">cue ranges</dfn>. Each cue range is made up - of the following information:</p> - - <dl> - - <dt>A class name</dt> - <dd>A group of related ranges can be given the same class name so - that they can all be removed at the same time.</dd> - - <dt>An identifier</dt> - <dd>A string can be assigned to each cue range for identification - by script. The string need not be unique and can contain any - value.</dd> - - <dt>A start time</dt> - <dt>An end time</dt> - <dd>The actual time range, using the same timeline as the - <span>media resource</span> itself.</dd> - - <dt>A "pause" boolean</dt> - <dd>A flag indicating whether to pause playback on exit.</dd> - - <dt>An "enter" callback</dt> - <dd>A callback that is called when the <span>current playback - position</span> enters the range.</dd> - - <dt>An "exit" callback</dt> - <dd>A callback that is called when the <span>current playback - position</span> exits the range.</dd> - - <dt>An "active" boolean</dt> - <dd>A flag indicating whether the range is active or not.</dd> - - </dl> - - <p>The <dfn title="dom-media-addCueRange"><code>addCueRange(<var - title="">className</var>, <var title="">id</var>, <var - title="">start</var>, <var title="">end</var>, <var - title="">pauseOnExit</var>, <var title="">enterCallback</var>, <var - title="">exitCallback</var>)</code></dfn> method must, when called, - add a <span>cue range</span> to the <span>media element</span>, that - cue range having the class name <var title="">className</var>, the - identifier <var title="">id</var>, the start time <var - title="">start</var> (in seconds), the end time <var - title="">end</var> (in seconds), the "pause" boolean with the same - value as <var title="">pauseOnExit</var>, the "enter" callback <var - title="">enterCallback</var>, the "exit" callback <var - title="">exitCallback</var>, and an "active" boolean that is true if - the <span>current playback position</span> is equal to or greater - than the start time and less than the end time, and false - otherwise.</p> - - <p>The <dfn - title="dom-media-removeCueRanges"><code>removeCueRanges(<var - title="">className</var>)</code></dfn> method must, when called, - remove all the <span title="cue range">cue ranges</span> of the - <span>media element</span> which have the class name <var - title="">className</var>.</p> - - </div> ---><h5 id=playing-the-media-resource><span class=secno>4.8.10.8 </span>Playing the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class=domintro><dt><var title="">media</var> . <code title=dom-media-paused><a href=#dom-media-paused>paused</a></code></dt> + user agent wait for the user to start playback explicitly.</p><h5 id=playing-the-media-resource><span class=secno>4.8.10.8 </span>Playing the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class=domintro><dt><var title="">media</var> . <code title=dom-media-paused><a href=#dom-media-paused>paused</a></code></dt> <dd>
Received on Tuesday, 4 May 2010 04:27:26 UTC