Re: [webcomponents]: First draft of the Shadow DOM Specification

2011-12-23 Thread Brian Kardell
In your example, you lost me on this part: // Insert Bob's shadow tree under the election story box. root.appendChild(document.createElement('shadow')); Is that wrong? If not, can you explain it? also... How does this patter give browsers timely enough information to avoid fouc? It feels like

[XHR] upload progress events (successfully uploaded)

2011-12-23 Thread Anne van Kesteren
I plan on making these two changes: * Instead of saying If the request entity body has been successfully uploaded I will say If the request entity body has been fully transmitted to make it clear we do not need to wait for the response. I think that was the original intent, I just did not

[cors] what's an example a simple request with credentials?

2011-12-23 Thread Benson Margulies
I am failing to come up with a sequence of calls to XMLHttpRequest that will trigger credential processing while remaining a simple request. Explicit credentials passed to open() are prohibited for all cross-origin requests, and url-embedded credentials seem to trigger the same prohibition. An

Re: [cors] what's an example a simple request with credentials?

2011-12-23 Thread Jarred Nicholls
On Fri, Dec 23, 2011 at 11:03 AM, Benson Margulies bimargul...@gmail.comwrote: I am failing to come up with a sequence of calls to XMLHttpRequest that will trigger credential processing while remaining a simple request. Explicit credentials passed to open() are prohibited for all cross-origin

Re: [cors] what's an example a simple request with credentials?

2011-12-23 Thread Benson Margulies
On Fri, Dec 23, 2011 at 11:13 AM, Jarred Nicholls jar...@sencha.com wrote: On Fri, Dec 23, 2011 at 11:03 AM, Benson Margulies bimargul...@gmail.com wrote: I am failing to come up with a sequence of calls to XMLHttpRequest that will trigger credential processing while remaining a simple

Priorities and expectations for 2012

2011-12-23 Thread Arthur Barstow
Hi All, I've been thinking a bit about realistic expectations for 2012 for those specs that are already in scope in the WG's current charter (complete spec list is at [PubStatus]). Below is a list (in alphabetical order) of what I consider the WG's higher priority specs including my

Re: [webcomponents]: First draft of the Shadow DOM Specification

2011-12-23 Thread Dimitri Glazkov
On Fri, Dec 23, 2011 at 5:23 AM, Brian Kardell bkard...@gmail.com wrote: In your example, you lost me on this part: // Insert Bob's shadow tree under the election story box. root.appendChild(document.createElement('shadow')); Is that wrong?  If not, can you explain it? Sure. Since Alice's

Re: [webcomponents]: First draft of the Shadow DOM Specification

2011-12-23 Thread Brian Kardell
On Dec 23, 2011 1:00 PM, Dimitri Glazkov dglaz...@chromium.org wrote: On Fri, Dec 23, 2011 at 5:23 AM, Brian Kardell bkard...@gmail.com wrote: In your example, you lost me on this part: // Insert Bob's shadow tree under the election story box.

Re: [webcomponents]: First draft of the Shadow DOM Specification

2011-12-23 Thread Dimitri Glazkov
On Fri, Dec 23, 2011 at 10:37 AM, Brian Kardell bkard...@gmail.com wrote: On Dec 23, 2011 1:00 PM, Dimitri Glazkov dglaz...@chromium.org wrote: On Fri, Dec 23, 2011 at 5:23 AM, Brian Kardell bkard...@gmail.com wrote: In your example, you lost me on this part: // Insert Bob's shadow tree

Re: [XHR] upload progress events (successfully uploaded)

2011-12-23 Thread Bjoern Hoehrmann
* Anne van Kesteren wrote: I plan on making these two changes: * Instead of saying If the request entity body has been successfully uploaded I will say If the request entity body has been fully transmitted to make it clear we do not need to wait for the response. I think that was the