[whatwg] HTMLMediaElement: static TimeRanges/ByteRanges, "potentially playing" definition

More random issues related to HTMLMediaElement

http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#dom-media-buffered

"The buffered attribute must return a static normalized TimeRanges object"

The phrasing for the other ranges attributes is similar, but what does
"static" mean in this context. I'm guessing that it means static in the
sense that the same object is returned each time. As a consequence you
can't keep a copy of an old ranges object to compare it with a new one
later. This is all very fine, I just want to verify that it's correct.

http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#potentially-playing

"A media element is said to be potentially playing when its paused
attribute is false, the readyState attribute is either HAVE_FUTURE_DATA
or HAVE_FUTURE_DATA, the element has not ended playback, playback has
not stopped due to errors, and the element has not paused for user
interaction."

There's a typo here with two HAVE_FUTURE_DATA. I'm not sure what the
intention was, but it seems to me that readyState shouldn't be involved
here. Consider:

new Audio("foo.wav").play();

"Media elements that are potentially playing while not in a Document
must not play any video, but should play any audio component. Media
elements must not stop playing just because all references to them have
been removed..."

Immediately after the above call has returned, the readyState of the
media element is HAVE_NOTHING unless the resource happened to be
cached. The definition of "potentially playing" must be such that this
object isn't immediately garbage collected. Suggested definition:

"A media element is said to be potentially playing when its paused
attribute is false, the element has not ended playback, playback has
not stopped due to errors."

In other words, remove the readyState and "paused for user interaction"
stuff (surely a media element could potentially keep playing after such
user interaction, otherwise there would be no need to ask).

(Also, I'm still wondering about the issues in my previous mail.)

-- 
Philip J?genstedt
Opera Software

Received on Thursday, 6 November 2008 07:08:45 UTC