Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Silvia Pfeiffer
On Wed, Apr 14, 2010 at 1:28 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Mon, Apr 12, 2010 at 12:47 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: Understood. But what is actually the cost of implementing all of TTML? The features in TTML all map onto existing Web technology,

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Silvia Pfeiffer
On Wed, Apr 14, 2010 at 4:37 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Mon, Apr 12, 2010 at 12:14 AM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Sun, Apr 11, 2010 at 4:18 PM, Robert O'Callahan rob...@ocallahan.org wrote: It would be helpful if the role values were

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Tab Atkins Jr.
On Tue, Apr 13, 2010 at 11:33 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Wed, Apr 14, 2010 at 1:28 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Mon, Apr 12, 2010 at 12:47 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: Understood. But what is actually the cost of

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Jonas Sicking
On Wed, Apr 14, 2010 at 10:19 AM, Tab Atkins Jr. jackalm...@gmail.com wrote: On Tue, Apr 13, 2010 at 11:33 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Wed, Apr 14, 2010 at 1:28 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Mon, Apr 12, 2010 at 12:47 PM, Silvia Pfeiffer

[whatwg] confusion between article and summary; editorial change suggestion

2010-04-14 Thread Bruce Lawson
The definition for article says The article element represents a self-contained composition in a document, page, application, or site and that is intended to be independently distributable or reusable, e.g. in syndication. This suggests that if you have a self-contained composition that

[whatwg] WebSocket.bufferedAmount

2010-04-14 Thread Ian Hickson
The changes discussed below are summarised in this diff: http://html5.org/tools/web-apps-tracker?from=5048to=5049 On Thu, 25 Mar 2010, Olli Pettay wrote: IMO scripts should be able to check whether the data they have posted is actually sent over the network. That requirement is handled

Re: [whatwg] Proposal for secure key-value data stores

2010-04-14 Thread Nicholas Zakas
I tried to articulate some of my thoughts as to why a generate purpose crypto isn't enough to be useful and why trying to tack onto local storage could get messy: http://www.nczonline.net/blog/2010/04/13/towards-more-secure-client-side -data-storage/ -Nicholas

Re: [whatwg] Proposal for secure key-value data stores

2010-04-14 Thread Jeremy Orlow
Yes, |localStorage.setItem(AES.encrypt(username, key), AES.encrypt(Nicholas, key));| is a bit ugly, but many things in the web platform are. And honestly, it's not _that_ ugly or _that_ many extra characters. And this is the type of problem JS libraries often solve. I'd suggest you talk to

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Silvia Pfeiffer
On Thu, Apr 15, 2010 at 3:19 AM, Tab Atkins Jr. jackalm...@gmail.com wrote: On Tue, Apr 13, 2010 at 11:33 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Wed, Apr 14, 2010 at 1:28 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Mon, Apr 12, 2010 at 12:47 PM, Silvia Pfeiffer

[whatwg] Simon's WebSocket feedback

2010-04-14 Thread Ian Hickson
On Thu, 1 Apr 2010, Simon Pieters wrote: The establish a WebSocket connection algorithm says: [[ 35. ... ↪If the byte is 0x20 (ASCII space) Ignore the byte and move on to the next step. Otherwise Treat the byte as described by the list in the next step, then move on to that next

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Philip Jägenstedt
On Thu, 15 Apr 2010 10:24:27 +0800, Tab Atkins Jr. jackalm...@gmail.com wrote: On Wed, Apr 14, 2010 at 5:59 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: If TTML creates specs that cannot be mapped, then those are ignored. All we are basically committing to would be that a best effort

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Jonas Sicking
On Wed, Apr 14, 2010 at 5:59 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Thu, Apr 15, 2010 at 3:19 AM, Tab Atkins Jr. jackalm...@gmail.com wrote: On Tue, Apr 13, 2010 at 11:33 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Wed, Apr 14, 2010 at 1:28 PM, Robert O'Callahan

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Silvia Pfeiffer
On Thu, Apr 15, 2010 at 1:08 PM, Jonas Sicking jo...@sicking.cc wrote: On Wed, Apr 14, 2010 at 5:59 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Thu, Apr 15, 2010 at 3:19 AM, Tab Atkins Jr. jackalm...@gmail.com wrote: If TTML creates specs that cannot be mapped, then those are

Re: [whatwg] Proposal for secure key-value data stores

2010-04-14 Thread Scott Hess
On Wed, Apr 14, 2010 at 5:23 PM, Nicholas Zakas nza...@yahoo-inc.com wrote: I tried to articulate some of my thoughts as to why a generate purpose crypto isn’t enough to be useful and why trying to tack onto local storage could get messy:

Re: [whatwg] Introduction of media accessibility features

2010-04-14 Thread Jonas Sicking
On Wed, Apr 14, 2010 at 9:00 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Thu, Apr 15, 2010 at 1:08 PM, Jonas Sicking jo...@sicking.cc wrote: On Wed, Apr 14, 2010 at 5:59 PM, Silvia Pfeiffer silviapfeiff...@gmail.com wrote: On Thu, Apr 15, 2010 at 3:19 AM, Tab Atkins Jr.

Re: [whatwg] Simon's WebSocket feedback

2010-04-14 Thread Simon Pieters
On Thu, 15 Apr 2010 03:08:12 +0200, Ian Hickson i...@hixie.ch wrote: On Mon, 12 Apr 2010, Simon Pieters wrote: WebSocket establish a WebSocket connection: [[ 21. Insert spaces1 U+0020 SPACE characters into key1 at random positions. Insert spaces2 U+0020 SPACE characters into key2 at