Re: [whatwg] Quality Values for Media Source Elements

2009-12-14 Thread Silvia Pfeiffer
On Mon, Dec 14, 2009 at 6:59 PM, Hugh Guiney hugh.gui...@gmail.com wrote: On Mon, Dec 14, 2009 at 12:12 AM, Eric Carlson eric.carl...@apple.com wrote:  Certainly! WebKit evaluates the query in the 'media' attribute if it believes it can handle the MIME type. If the query evaluates to true, it

Re: [whatwg] Quality Values for Media Source Elements

2009-12-14 Thread Aryeh Gregor
On Mon, Dec 14, 2009 at 2:59 AM, Hugh Guiney hugh.gui...@gmail.com wrote: JavaScript is a crutch that far too many applications are relying on for major functionality lately. JavaScript should enhance a Web experience, not supplant it. It depends on the application. But in any event, HTML can

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Ian Hickson
On Mon, 14 Dec 2009, John J Barton wrote: (I made a comment on the doc along these lines but I am uncertain about whether these comments work). They work. :-) The HTML5 spec uses the heavily overloaded word Window for an interface:

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread John J Barton
Ian Hickson wrote: ... As far as I can tell that would be wrong. The Window object is a DOM object, it's not the same as the browsing context, which is a UA construct. Can you help me understand this a bit more? I guess by The Window object is a DOM object you mean Window() is a global

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Ian Hickson
On Mon, 14 Dec 2009, John J Barton wrote: Ian Hickson wrote: ... As far as I can tell that would be wrong. The Window object is a DOM object, it's not the same as the browsing context, which is a UA construct. Can you help me understand this a bit more? I guess by The Window object is

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Davidlee
Don't mean to jump in here but could it be that what you are referring to is what we have been calling Hyv (short for hypervideo...i.e. anything that is a layer of interface system directions/links etc)? dl On Mon, Dec 14, 2009 at 2:20 PM, Ian Hickson i...@hixie.ch wrote: On Mon, 14 Dec 2009,

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Ian Hickson
On Mon, 14 Dec 2009, Davidlee wrote: Don't mean to jump in here but could it be that what you are referring to is what we have been calling Hyv (short for hypervideo...i.e. anything that is a layer of interface system directions/links etc)? I believe we are referring to:

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Davidlee
we(my production teams) have been using it in transmedia interface systems and story structures when referring to the layering of data into video in other formats such as flash... seems from the untrained ear (me) it is essentially what you are discussing.. I apologize if I misunderstand. dl

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread John J Barton
Ian Hickson wrote: On Mon, 14 Dec 2009, John J Barton wrote: Ian Hickson wrote: ... As far as I can tell that would be wrong. The Window object is a DOM object, it's not the same as the browsing context, which is a UA construct. Can you help me

Re: [whatwg] Removing multiple attribute from input type=file multiple with selected files

2009-12-14 Thread Jonas Sicking
On Mon, Dec 14, 2009 at 10:33 AM, Ojan Vafai o...@chromium.org wrote: On Sun, Dec 13, 2009 at 7:47 AM, Jonas Sicking jo...@sicking.cc wrote: On Sun, Dec 13, 2009 at 5:36 AM, TAMURA, Kent tk...@chromium.org wrote: What should happen to selected files in a case that a user selects multiple

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Ian Hickson
On Mon, 14 Dec 2009, John J Barton wrote: I mean that it is a Web IDL interface exposed in Web browsers as the interface object that the global object has in its prototype chain. By the global object, do you mean window in the Javascript sense? window is a property of the global object

Re: [whatwg] Removing multiple attribute from input type=file multiple with selected files

2009-12-14 Thread Ojan Vafai
On Mon, Dec 14, 2009 at 11:39 AM, Jonas Sicking jo...@sicking.cc wrote: On Mon, Dec 14, 2009 at 10:33 AM, Ojan Vafai o...@chromium.org wrote: On Sun, Dec 13, 2009 at 7:47 AM, Jonas Sicking jo...@sicking.cc wrote: On Sun, Dec 13, 2009 at 5:36 AM, TAMURA, Kent tk...@chromium.org wrote:

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread John J Barton
Ian Hickson wrote: On Mon, 14 Dec 2009, John J Barton wrote: I mean that it is a Web IDL interface exposed in Web browsers as the interface object that the global object has in its prototype chain. By "the global object", do you mean "window" in the

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Boris Zbarsky
On 12/14/09 12:04 PM, John J Barton wrote: Thanks, I understand that the global object in Javascript has a property 'window' which references the global object It does not, in fact. It references a different object, which has a pretty intimate relationship with the global object. But you

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Jonas Sicking
Which brings me back to my original point. Web browsers have defined 'window'. The HTML5 spec cannot change that. But the interface called Window in the current specification is not part of web browsers javascript:alert(window instanceof Window) seems to be implemented the same way in a

Re: [whatwg] Renaming Interface Window

2009-12-14 Thread Michael A. Puls II
javascript:alert(window instanceof Window) seems to be implemented the same way in a number of browsers, no? As of right now, Window is only exposed in Firefox and IE. Safari and Opera don't expose it. In Safari, alert(window) shows that window is an instance of DOMWindow though, but Webkit

Re: [whatwg] Removing multiple attribute from input type=file multiple with selected files

2009-12-14 Thread TAMURA, Kent
I would prefer not to throw an exception. Making removeAttribute throw an exception seems wrong since the attribute *is* in fact removed, and making foo.multiple=false throw would mean that it would behave differently from all other mapped IDL attributes. I'd really prefer to keep things