[whatwg] Fetch: crossorigin=anonymous and XMLHttpRequest

2013-02-26 Thread Anne van Kesteren
There's an unfortunate mismatch currently. new XMLHttpRequest({anon:true}) will generate a request where a) origin is a globally unique identifier b) referrer source is the URL about:blank, and c) credentials are omitted. From those crossorigin=anonymous only does c. Can we still change

Re: [whatwg] Enabling LCD Text and antialiasing in canvas

2013-02-26 Thread Rik Cabanier
FYI http://www.istartedsomething.com/20120303/cleartype-takes-a-back-seat-for-windows-8-metro/ IE 10 removed subpixel positioning and just use regular AA. On Thu, Feb 21, 2013 at 11:12 AM, Stephen White senorbla...@chromium.orgwrote: On Tue, Feb 19, 2013 at 11:31 PM, Rik Cabanier

Re: [whatwg] Enabling LCD Text and antialiasing in canvas

2013-02-26 Thread Bjoern Hoehrmann
* Rik Cabanier wrote: FYI http://www.istartedsomething.com/20120303/cleartype-takes-a-back-seat-for-windows-8-metro/ IE 10 removed subpixel positioning and just use regular AA. The article seems to be about Windows 8 and neither it nor the comments seem to discuss Internet Explorer 10 on Windows

Re: [whatwg] Enabling LCD Text and antialiasing in canvas

2013-02-26 Thread Rik Cabanier
I experimented a bit and t is still active on Windows 7. On Tue, Feb 26, 2013 at 10:11 AM, Bjoern Hoehrmann derhoe...@gmx.netwrote: * Rik Cabanier wrote: FYI http://www.istartedsomething.com/20120303/cleartype-takes-a-back-seat-for-windows-8-metro/ IE 10 removed subpixel positioning and

Re: [whatwg] Fetch: crossorigin=anonymous and XMLHttpRequest

2013-02-26 Thread Adam Barth
WebKit hasn't implemented either, so we don't have any implementation constraints in this area. Adam On Tue, Feb 26, 2013 at 3:35 AM, Anne van Kesteren ann...@annevk.nl wrote: There's an unfortunate mismatch currently. new XMLHttpRequest({anon:true}) will generate a request where a) origin is

Re: [whatwg] Fetch: crossorigin=anonymous and XMLHttpRequest

2013-02-26 Thread Kenneth Russell
Are you referring to the crossOrigin attribute on HTMLImageElement and HTMLMediaElement? Those are implemented in WebKit. It should be fine to change crossOrigin=anonymous requests to satisfy (a) and (b). Any server that satisfies these anonymous requests in a way compatible with UAs' caching will

Re: [whatwg] Fetch: crossorigin=anonymous and XMLHttpRequest

2013-02-26 Thread Adam Barth
Ah, my mistake. Kenneth is right. I didn't realize you were talking about the crossorigin attributes. Adam On Tue, Feb 26, 2013 at 4:02 PM, Kenneth Russell k...@google.com wrote: Are you referring to the crossOrigin attribute on HTMLImageElement and HTMLMediaElement? Those are implemented