Re: [whatwg] Request: window.postMessage should be async

2008-04-05 Thread Peter Kasting
(Apologies if the threading on this gets messed up. I was not subscribed to the list when the original message was sent.) I want to paint Eric's scenario more strongly, because it seems like people think if it would rarely blow up then it doesn't matter. If you want to handle _any_ request sent

Re: [whatwg] Request: window.postMessage should be async

2008-04-05 Thread Adam Barth
Peter, On Sat, Apr 5, 2008 at 12:38 AM, Peter Kasting [EMAIL PROTECTED] wrote: Or, if you like, take the position that the argument should stay optional, and if someone for some reason doesn't have to care about security (?!), they can avoid passing it. Although I'm not sure this is a

[whatwg] Hyperlinks with |title| attribute

2008-04-05 Thread Christoph Päper
Should (or may) user agents display the content of the |title| attribute of an |a| element in the GUI window caption (if the window manager used supports such), when the user followed the link and the retrieved resource is in a format that does not support specifying a title by itself

[whatwg] Listing element

2008-04-05 Thread Christoph Päper
The |listing| element is currently not defined in HTML5, but its parsing is said to be the same as for |pre|. Will |listing| be included some day or will it be left out, because |code| nested in | pre| provides the same semantics already?

Re: [whatwg] Listing element

2008-04-05 Thread Anne van Kesteren
On Sat, 05 Apr 2008 16:37:42 +0200, Christoph Päper [EMAIL PROTECTED] wrote: The |listing| element is currently not defined in HTML5, but its parsing is said to be the same as for |pre|. Will |listing| be included some day or will it be left out, because |code| nested in |pre| provides the

Re: [whatwg] Request: window.postMessage should be async

2008-04-05 Thread Jeff Walden
Peter Kasting wrote: It doesn't matter if the stack will not _commonly_ be too deep, or if it isn't too deep for the callers that you know about right now -- it might be too deep at some point (after someone else changes the caller code, for example), and your sync handler will blow up. So

Re: [whatwg] Hyperlinks with |title| attribute

2008-04-05 Thread Ian Hickson
On Sat, 5 Apr 2008, Christoph P�per wrote: Should (or may) user agents display the content of the |title| attribute of an |a| element in the GUI window caption (if the window manager used supports such), when the user followed the link and the retrieved resource is in a format that does

Re: [whatwg] Listing element

2008-04-05 Thread Ian Hickson
On Sat, 5 Apr 2008, Christoph P�per wrote: The |listing| element is currently not defined in HTML5, but its parsing is said to be the same as for |pre|. Will |listing| be included some day or will it be left out, because |code| nested in |pre| provides the same semantics already? I have

Re: [whatwg] Request: window.postMessage should be async

2008-04-05 Thread Peter Kasting
On Sat, Apr 5, 2008 at 2:19 PM, Jeff Walden [EMAIL PROTECTED][EMAIL PROTECTED] wrote: Peter Kasting wrote: It doesn't matter if the stack will not _commonly_ be too deep, or if it isn't too deep for the callers that you know about right now -- it might be too deep at some point (after