Re: [whatwg] Progress on video accessibility

2009-07-31 Thread Philip Jägenstedt
On Fri, 31 Jul 2009 05:36:40 +0200, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: I am curious about comments to this proposal and suggestions for improvement. I have not yet developed an improved specification, but instead have collected feedback at

Re: [whatwg] autobuffer on new Audio objects

2009-07-31 Thread Michael Kozakewich
From: Ian Hickson i...@hixie.ch Sent: Thursday, July 30, 2009 7:26 PM On Mon, 20 Jul 2009, David Wilson wrote: It's easy to see how some naively implemented JS audio widget could fetch 200mb over an expensive 3G connection, simply by navigating to some site in a background tab (say, by creating

Re: [whatwg] autobuffer on new Audio objects

2009-07-31 Thread David Wilson
2009/7/31 Ian Hickson i...@hixie.ch: On Mon, 20 Jul 2009, David Wilson wrote: 2009/7/19 Ian Hickson i...@hixie.ch: On Mon, 6 Jul 2009, Robert O'Callahan wrote: When script creates an audio element using the new Audio constructor, the 'autobuffer' attribute should be automatically set on

Re: [whatwg] Rel and META values

2009-07-31 Thread Bil Corry
Ian Hickson wrote on 7/30/2009 7:21 PM: On Tue, 21 Jul 2009, Bil Corry wrote: Ian Hickson wrote on 7/19/2009 5:39 AM: On Wed, 15 Jul 2009, Bil Corry wrote: I'm curious too, since the HTML5 draft itself says[1]: - This specification does not define how new values will get approved. It

[whatwg] [CHARMOD] broken link

2009-07-31 Thread Bil Corry
Under section 2.7 Character encodings[1], there are two [CHARMOD] links, both of which appear to be broken. - Bil [1] http://www.whatwg.org/specs/web-apps/current-work/multipage/infrastructure.html#misinterpreted-for-compatibility

Re: [whatwg] [CHARMOD] broken link

2009-07-31 Thread Anne van Kesteren
On Fri, 31 Jul 2009 18:14:12 +0200, Bil Corry b...@corry.biz wrote: Under section 2.7 Character encodings[], there are two [CHARMOD] links, both of which appear to be broken. The reference section is not written yet. (Just in case you were looking for the document:

[whatwg] Any thought on html5 video tag behind squid proxy !!

2009-07-31 Thread narendra sisodiya
Hi all, most of the traffic of university hostel's and home users goes for streaming media like YouTube. And most of the time we are connected behind proxy for example my institute use squid proxy. But as per my knowledge , squid is not successful to cache the flash based (ex YouTube) video.

[whatwg] Empty html manifest= attribute handling.

2009-07-31 Thread Michael Nordman
Hello, How empty html manifest= attribute values are handled in the section 9.2.5.5 may want some massaging. http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#parser-appcache If the Document is being loaded as part of navigation of a browsing context, then: if the newly

Re: [whatwg] autobuffer on new Audio objects

2009-07-31 Thread Robert O'Callahan
On Sat, Aug 1, 2009 at 12:20 AM, David Wilson d...@botanicus.net wrote: I still don't understand the 'why' of this, whereas the 'why not' seems clear. Because for the 99% use case of new Audio() --- scripts loading sounds, and then playing them in response to events --- it's what you want.

Re: [whatwg] autobuffer on new Audio objects

2009-07-31 Thread Gregg Tavares
On Fri, Jul 31, 2009 at 3:06 PM, Robert O'Callahan rob...@ocallahan.orgwrote: On Sat, Aug 1, 2009 at 12:20 AM, David Wilson d...@botanicus.net wrote: I still don't understand the 'why' of this, whereas the 'why not' seems clear. Because for the 99% use case of new Audio() --- scripts

Re: [whatwg] scripts, defer, document.write and DOMContentLoaded

2009-07-31 Thread Ian Hickson
On Tue, 21 Jul 2009, Maciej Stachowiak wrote: On Jul 20, 2009, at 7:30 PM, Boris Zbarsky wrote: Ian Hickson wrote: Actually what's going on is more subtle than that. When you set innerHTML, it's actually triggering the deferred scripts right there, if it has them loaded (e.g. inline

Re: [whatwg] Errormessages in forms

2009-07-31 Thread Ian Hickson
On Tue, 21 Jul 2009, Oldřich Vetešník wrote: Dne Fri, 26 Jun 2009 07:17:17 +0200 Ian Hickson i...@hixie.ch napsal/-a: On Tue, 2 Dec 2008, Oldřich Vetešník wrote: Dne Tue, 02 Dec 2008 11:31:07 +0100 Ian Hickson i...@hixie.ch napsal/-a: Well, in the snippet above, the following seems

Re: [whatwg] [html5] r3515 - [e] (0) Clarify 'font' serialisation.

2009-07-31 Thread Simon Pieters
On Sat, 01 Aug 2009 01:00:28 +0200, wha...@whatwg.org wrote: Author: ianh Date: 2009-07-31 16:00:26 -0700 (Fri, 31 Jul 2009) New Revision: 3515 Modified: index source Log: [e] (0) Clarify 'font' serialisation. Modified: index

Re: [whatwg] scripts, defer, document.write and DOMContentLoaded

2009-07-31 Thread Boris Zbarsky
Ian Hickson wrote: I've changed the spec to do external deferred src=ed scripts at the end of document load (blowing away the document as before), and inline deferred scripts as soon as innerHTML is set, if it is set, or else along with other deferred scripts at the end of document load.