Re: [webkit-dev] mouseenter and mouseleave events

2013-04-22 Thread Allan Sandfeld Jensen
On Wednesday 17 April 2013, Maciej Stachowiak wrote: > > Seems like a reasonable feature to add. > Would you mind also reviewing the patch in question then or help me find a reviewer with the right knowledge? Most of the patch is boiler plate work. The central part is how and when the events ar

Re: [webkit-dev] Enabling Experimental Features

2013-04-22 Thread Eric Seidel
FWIW, Blink is going through this right now too. We're attempting to move completely away from prefixed development: http://www.chromium.org/blink#vendor-prefixes To do that, that requires making it possible enable/disable CSS properties at runtime: https://code.google.com/p/chromium/issues/detai

Re: [webkit-dev] FrameLoader::stopAllLoaders and sync XHR

2013-04-22 Thread Brady Eidson
On Apr 22, 2013, at 8:37 AM, Joe Mason wrote: > I'm trying to debug a deadlock on exit in a BlackBerry app that uses webkit > (which is pretty hard to reproduce, so I don't have a cut-down test case > yet). Right now my suspicions are on this behaviour: > > a synchronous XMLHttpRequest starts

Re: [webkit-dev] Enabling Experimental Features

2013-04-22 Thread Dirk Schulze
On Apr 22, 2013, at 9:32 AM, Simon Fraser wrote: > On Apr 20, 2013, at 10:03 AM, Maciej Stachowiak wrote: > >> On Apr 19, 2013, at 3:50 PM, Timothy Hatcher wrote: >> >>> On Apr 19, 2013, at 6:15 PM, Bear Travis wrote: >>> What do folks think about adding a mechanism for users to toggl

Re: [webkit-dev] Enabling Experimental Features

2013-04-22 Thread Simon Fraser
On Apr 20, 2013, at 10:03 AM, Maciej Stachowiak wrote: > On Apr 19, 2013, at 3:50 PM, Timothy Hatcher wrote: > >> On Apr 19, 2013, at 6:15 PM, Bear Travis wrote: >> >>> What do folks think about adding a mechanism for users to toggle features >>> like this on in WebKit nightlies? I don't hav

Re: [webkit-dev] FrameLoader::stopAllLoaders and sync XHR

2013-04-22 Thread Yong Li
Hi Joe, From what I remembered and understood, actions like FrameLoader::stopAllLoaders is not safe to be executed in a nested event loop. I would try to find a way to exit all nested event loops first and then close the page if it has to be done gracefully. In EventLoopBlackBerry.cpp, the

[webkit-dev] FrameLoader::stopAllLoaders and sync XHR

2013-04-22 Thread Joe Mason
I'm trying to debug a deadlock on exit in a BlackBerry app that uses webkit (which is pretty hard to reproduce, so I don't have a cut-down test case yet). Right now my suspicions are on this behaviour: a synchronous XMLHttpRequest starts loading (from a script running in the main frame) Resourc