[webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread Antti Koivisto
We current have an incomplete, unmaintained implementation of the HTML5 dialog element in our code base. No one is building it as far as I can see and it has bit-rotted to the point it probably wouldn't work anyway. I think we should remove the code for now. It should be possible to come up with

Re: [webkit-dev] XML Serialization Issues

2013-08-29 Thread Rob Buis
Fixed. More seriously, all bugs mentioned below are fixed/closed, please open new ones for any regressions/improvements. Cheers, Rob. On 19 June 2013 14:44, Alex Milowski a...@milowski.com wrote: I was working on using MathJax [1] to turn MathML into SVG and ran into some serious

Re: [webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread Ryosuke Niwa
While I'd like to see us eventually supporting it, it seems sensible to remove it from the code base if no port is planning to enable it by default in the near future. - R. Niwa ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread James Craig
I'd like to see support for @inert subtrees prioritized if dialog is going to be postponed. So many web authors are faking this behavior now, which is problematic for full keyboard access and accessibility. On Aug 29, 2013, at 10:50 AM, Ryosuke Niwa rn...@webkit.org wrote: While I'd like to

Re: [webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread Darin Adler
On Aug 29, 2013, at 12:44 PM, James Craig jcr...@apple.com wrote: I'd like to see support for @inert subtrees prioritized if dialog is going to be postponed. I don’t think dialog is being postponed; just that no one has immediate plans to use the implementation in the tree that is not being

Re: [webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread James Craig
On Aug 29, 2013, at 12:56 PM, Darin Adler da...@apple.com wrote: On Aug 29, 2013, at 12:44 PM, James Craig jcr...@apple.com wrote: I'd like to see support for @inert subtrees prioritized if dialog is going to be postponed. I don’t think dialog is being postponed; just that no one has

Re: [webkit-dev] Removing DIALOG_ELEMENT for now

2013-08-29 Thread Darin Adler
On Aug 29, 2013, at 1:11 PM, James Craig jcr...@apple.com wrote: @inert represents a subset of the implementation of dialog OK. Sounds like we can do that first, then. -- Darin ___ webkit-dev mailing list webkit-dev@lists.webkit.org

[webkit-dev] Proposed feature: Network Service Discovery

2013-08-29 Thread Brendan Long
We would like to implement the Network Service Discovery spec http://www.w3.org/TR/discovery-api/ in WebKIt. There's an existing bug https://bugs.webkit.org/show_bug.cgi?id=101162 (with a basic patch to show the API) in the bug tracker. This is useful to allow media applications to discover

Re: [webkit-dev] XML Serialization Issues

2013-08-29 Thread Dean Jackson
I believe the tests you added are not reliable across runs. In particular, the unique id you generate isn’t necessarily always the same, but your -expected.txt is just a dump of the DOM. I filed: http://webkit.org/b/120490, but I only mentioned one test. Since then I’ve seen more fail. Dean

Re: [webkit-dev] XML Serialization Issues

2013-08-29 Thread Ryosuke Niwa
It's supposed to be deterministic so there is a bug somewhere. - R. Niwa On Thu, Aug 29, 2013 at 4:27 PM, Dean Jackson d...@apple.com wrote: I believe the tests you added are not reliable across runs. In particular, the unique id you generate isn’t necessarily always the same, but your

Re: [webkit-dev] Proposed feature: Network Service Discovery

2013-08-29 Thread Benjamin Poulain
On 8/29/13 4:19 PM, Brendan Long wrote: We would like to implement the Network Service Discovery spec http://www.w3.org/TR/discovery-api/ in WebKIt. There's an existing bug https://bugs.webkit.org/show_bug.cgi?id=101162 (with a basic patch to show the API) in the bug tracker. This is useful

Re: [webkit-dev] Proposed feature: Network Service Discovery

2013-08-29 Thread Sam Weinig
I don’t think this belongs in WebKit, as this doesn’t seem like it would ever be appropriate to expose to the Web at large. I recommend trying to find a way to layer this on top of WebKit if it is something you need to support. -Sam On Aug 29, 2013, at 4:19 PM, Brendan Long