[whatwg] HTML6 proposal for single-page apps without Javascript pt.3

2015-03-22 Thread Bobby Mozumder
People are freaking out about the proposal idea of using SQL statements directly to populate the browser’s internal model data store, when I mentioned using mailto:mozum...@futureclaw.com> +1-240-745-5287 www.futureclaw.com twitter.com/futureclaw

Re: [whatwg] HTML6 proposal for single-page apps without Javascript pt.2

2015-03-22 Thread Bobby Mozumder
Hi, the part 2 of this message is awaiting moderation due to message size, but it already went through at: https://lists.w3.org/Archives/Public/public-html/2015Mar/0075.html Moderator, please allow it to continue. I tried to cancel it for WHATWG but the lists.whatwg.org server is offline and

Re: [whatwg] Responsive image maps

2015-03-22 Thread Martin Janecke
I've done a few tests and provide links to them below the following discussion. Am .03.2015, 20:30 Uhr, schrieb Tab Atkins Jr. : SVG is highly accessible. Yes, SVG elements are followed just like HTML elements, and yes, screenreaders do read out elements when appropriate. Nice! Am .0

Re: [whatwg] Canvas image to blob/dataurl within Worker

2015-03-22 Thread Robert O'Callahan
I'm getting confused as to what the problem is. To restate the advantages of async toBlob: suppose I have code that does drawStuffTo(context); context.canvas.toBlob().then(callback); // no further drawing to the canvas This has a few advantages over using getImageData and then encoding to J

Re: [whatwg] Canvas image to blob/dataurl within Worker

2015-03-22 Thread Jake Archibald
On Sat, 21 Mar 2015 at 18:16 Rik Cabanier wrote: > Justin is worried that in order to make this asynchronous, Chrome has to > create a snapshot of the canvas bits which is slow if it resides on the GPU. > Of course, his workaround to use getImageData is just as slow since it has > to do the same

Re: [whatwg] Canvas image to blob/dataurl within Worker

2015-03-22 Thread Rik Cabanier
On Sat, Mar 21, 2015 at 11:02 PM, Robert O'Callahan wrote: > On Sun, Mar 22, 2015 at 6:45 PM, Rik Cabanier wrote: > >> On Sat, Mar 21, 2015 at 1:44 PM, Robert O'Callahan >> wrote: >> >> > On Sun, Mar 22, 2015 at 7:16 AM, Rik Cabanier >> wrote: >> > >> >> Justin is worried that in order to make