Re: [whatwg] Infinite loopcount for audio and video

2007-10-18 Thread Ian Hickson
On Mon, 23 Apr 2007, Elliotte Harold wrote: Is there a way to specify continuous looping for audio and video elements? Not currently, short of some simple JavaScript. e.g. something like audio src=spacemusic.mp3 autoplay=autoplay loopcount=Inf / If not, should there be? I don't

Re: [whatwg] video title or alt attribute

2007-10-18 Thread Ian Hickson
On Thu, 26 Apr 2007, Anne van Kesteren wrote: Currently alternative content for audio and video isn't dealt with very well, I think. It does address fallback content for older user agents but it does not address disabling support for video and not being able to support video (Lynx) at

[whatwg] Database storage and detecting success of COMMIT.

2007-10-18 Thread Scott Hess
If the statement to executeSql() is invalid, then an exception will be raised immediately, which can be caught by wrapping the call to executeSql() with an exception handler. If there is an error in the course of executing the statement, it will be exposed by the errorCode in the callback. If

Re: [whatwg] SQL API error handling

2007-10-18 Thread Scott Hess
On 10/17/07, Ian Hickson [EMAIL PROTECTED] wrote: On Mon, 15 Oct 2007, Brady Eidson wrote: In some embedded (and client-server) database implementations - including SQLite - continuing to operate on a database that is known to be corrupt can lead to the process crashing. Unlike the CPU

Re: [whatwg] Database storage and detecting success of COMMIT.

2007-10-18 Thread Aaron Boodman
On 10/18/07, Scott Hess [EMAIL PROTECTED] wrote: If the statement to executeSql() is invalid, then an exception will be raised immediately, which can be caught by wrapping the call to executeSql() with an exception handler. If there is an error in the course of executing the statement, it

Re: [whatwg] SQL API error handling

2007-10-18 Thread Křištof Želechovski
It is normal that the disk gets full; the probability of this event is 1 for a consumer disk. (Admittedly, the operating system can cry aloud and refuse to do anything when the startup volume is about to overflow but the database could be stored on another volume that is not protected that way).

[whatwg] looping APIs for video

2007-10-18 Thread Ian Hickson
Several people have proposed changing the names of the looping API members of media elements. Currently we have start loopstart loopcount loopend end currentloop The suggestions are: start repeatfrom repeatcount repeatto end currentloop start

Re: [whatwg] Audio(): loop() with 0 or negative value as argument

2007-10-18 Thread Ian Hickson
On Sat, 4 Aug 2007, Michael A. Puls II wrote: I see The loopcount content attribute gives the number of times to play the clip. The default value is 1. IMO: The name loopcount and the description for loopcount contradict each other. It seems that the description is what is intended

Re: [whatwg] several messages

2007-10-18 Thread Ian Hickson
On Fri, 8 Jun 2007, Dave Singer wrote: Proposal: user settings that correspond to a accessibility needs. For each need, the user can choose among the following three dispositions: * favor (want): I prefer media that is adapted for this kind of accessibility. * disfavor (don't want):

Re: [whatwg] Cue points in media elements

2007-10-18 Thread Ian Hickson
On Sun, 29 Apr 2007, Brian Campbell wrote: The problem is that the callbacks execute when the current playback position of a media element reaches the cue point. It seems unclear to me what reaching a particular time means. If video playback freezes for a second, and so misses a cue

Re: [whatwg] When to stop video elements from playing

2007-10-18 Thread Maciej Stachowiak
On Oct 18, 2007, at 3:55 PM, Geoffrey Garen wrote: Suppose a script creates a video element, adds it to the document, starts it playing, then removes the element from the document and drops all references to it. When should the element stop playing? -- when the element leaves the

Re: [whatwg] When to stop video elements from playing

2007-10-18 Thread Robert O'Callahan
On Oct 19, 2007 11:55 AM, Geoffrey Garen [EMAIL PROTECTED] wrote: Suppose a script creates a video element, adds it to the document, starts it playing, then removes the element from the document and drops all references to it. When should the element stop playing? -- when the element