- From: poot <cvsmail@w3.org>
- Date: Thu, 26 Feb 2009 17:53:25 +0900 (JST)
- To: public-html-diffs@w3.org
Drop bufferingRate and bufferingThrottled for now. (whatwg r2872) media element attributes http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#media-element-attributes autobuffer http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#attr-media-autobuffer HTMLMediaElement http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#htmlmediaelement media data http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#media-data autobuffer http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#dom-media-autobuffer buffered http://people.w3.org/mike/diffs/html5/spec/Overview.1.2045.html#dom-media-buffered http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2044&r2=1.2045&f=h http://html5.org/tools/web-apps-tracker?from=2871&to=2872 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2044 retrieving revision 1.2045 diff -u -d -r1.2044 -r1.2045 --- Overview.html 26 Feb 2009 08:35:52 -0000 1.2044 +++ Overview.html 26 Feb 2009 08:50:23 -0000 1.2045 @@ -14759,8 +14759,8 @@ const unsigned short <a href=#dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE>NETWORK_NO_SOURCE</a> = 4; readonly attribute unsigned short <a href=#dom-media-networkstate title=dom-media-networkState>networkState</a>; attribute boolean <a href=#dom-media-autobuffer title=dom-media-autobuffer>autobuffer</a>; - readonly attribute float <a href=#dom-media-bufferingrate title=dom-media-bufferingRate>bufferingRate</a>; - readonly attribute boolean <a href=#dom-media-bufferingthrottled title=dom-media-bufferingThrottled>bufferingThrottled</a>; +<!--v3BUF readonly attribute float <span title="dom-media-bufferingRate">bufferingRate</span>; + readonly attribute boolean <span title="dom-media-bufferingThrottled">bufferingThrottled</span>;--> readonly attribute <a href=#timeranges>TimeRanges</a> <a href=#dom-media-buffered title=dom-media-buffered>buffered</a>; void <a href=#dom-media-load title=dom-media-load>load</a>(); DOMString <a href=#dom-navigator-canplaytype title=dom-navigator-canPlayType>canPlayType</a>(in DOMString type); @@ -14839,6 +14839,7 @@ - skipped frames per second? - an event that reports playback difficulties? - an arbitrary quality metric? + * bufferingRate/bufferingThrottled (see v3BUF) --><p><a href=#media-element title="media element">Media elements</a> are used to present audio data, or video and audio data, to the user. This is referred to as <dfn id=media-data>media data</dfn> in this section, since this @@ -15577,14 +15578,20 @@ ignored altogether. The attribute must be ignored if the <code title=attr-media-autoplay><a href=#attr-media-autoplay>autoplay</a></code> attribute is present.<p>The <dfn id=dom-media-autobuffer title=dom-media-autobuffer><code>autobuffer</code></dfn> DOM attribute must <a href=#reflect>reflect</a> the content attribute of the - same name.<p>The <dfn id=dom-media-bufferingrate title=dom-media-bufferingRate><code>bufferingRate</code></dfn> + same name.</p><!--v3BUF + <p>The <dfn + title="dom-media-bufferingRate"><code>bufferingRate</code></dfn> attribute must return the average number of bits received per second for the current download over the past few seconds. If there is no - download in progress, the attribute must return 0.<p>The <dfn id=dom-media-bufferingthrottled title=dom-media-bufferingThrottled><code>bufferingThrottled</code></dfn> + download in progress, the attribute must return 0.</p> + + <p>The <dfn + title="dom-media-bufferingThrottled"><code>bufferingThrottled</code></dfn> attribute must return true if the user agent is intentionally throttling the bandwidth used by the download (including when throttling to zero to pause the download altogether), and false - otherwise.<p>The <dfn id=dom-media-buffered title=dom-media-buffered><code>buffered</code></dfn> + otherwise.</p> +--><p>The <dfn id=dom-media-buffered title=dom-media-buffered><code>buffered</code></dfn> attribute must return a new static <a href=#normalized-timeranges-object>normalized <code>TimeRanges</code> object</a> that represents the ranges of the <a href=#media-resource>media resource</a>, if any, that the user agent has
Received on Thursday, 26 February 2009 08:54:02 UTC