[webkit-dev] Unprefixing CSS Animation, Transitions and Transform.

2012-12-12 Thread Alexis Menard
Hi all, I would like to announce that I will start the work to unprefix CSS Animations, Transitions and Transform. It may sounds quick to do but it's not, there are few things to do before we can unprefix and unleash them to the world (e.g. -webkit-perspective accept valueless number but

Re: [webkit-dev] Unprefixing CSS Animation, Transitions and Transform.

2012-12-12 Thread Kenneth Rohde Christiansen
I believe we also want to keep the unprefixed versions using the current behavior. Do you intent to keep these? Cheers Kenneth On Wed, Dec 12, 2012 at 2:49 PM, Alexis Menard ale...@webkit.org wrote: Hi all, I would like to announce that I will start the work to unprefix CSS Animations,

Re: [webkit-dev] Unprefixing CSS Animation, Transitions and Transform.

2012-12-12 Thread Alexis Menard
On Wed, Dec 12, 2012 at 10:52 AM, Kenneth Rohde Christiansen kenneth.christian...@gmail.com wrote: I believe we also want to keep the unprefixed versions using the current behavior. Do you intent to keep these? Yes as I said in the original mail : while keeping the behaviour as-is for the

Re: [webkit-dev] Behaviour of CapsLock in WebKit/Mac

2012-12-12 Thread Wez
Thanks Mark! If this is intentional behaviour of Mac OS X then ideally WebKit should work around it, but I wonder how much existing content that would break? On 11 December 2012 21:32, Mark Rowe mr...@apple.com wrote: On 2012-12-11, at 21:24, Wez w...@chromium.org wrote: Hi all,

Re: [webkit-dev] Unprefixing CSS Animation, Transitions and Transform.

2012-12-12 Thread Dean Jackson
On 13/12/2012, at 12:49 AM, Alexis Menard ale...@webkit.org wrote: I would like to announce that I will start the work to unprefix CSS Animations, Transitions and Transform. It may sounds quick to do but it's not, there are few things to do before we can unprefix and unleash them to the

[webkit-dev] Deep copy of the page with it's JS context

2012-12-12 Thread Николай Матюнин
Dear WebKit developers! I need your help (or just some advice). Currently I use WebKit (actually phantom.JS, which is based on the WebKit) as an instrument to research and develop the effective methods of ajax web-applications crawling (just for academic purposes). So, during the crawling, the

Re: [webkit-dev] Behaviour of CapsLock in WebKit/Mac

2012-12-12 Thread Elliott Sprehn
This same bug exists in Gecko https://bugzilla.mozilla.org/show_bug.cgi?id=712535 It appears Cocoa just doesn't notify of this: http://stackoverflow.com/questions/12536356/how-to-detect-key-up-or-key-release-for-the-capslock-key-in-os-x so we'd probably need to interact directly with the HID

Re: [webkit-dev] Deep copy of the page with it's JS context

2012-12-12 Thread Benjamin Poulain
On Wed, Dec 12, 2012 at 11:03 AM, Николай Матюнин matyuni...@gmail.comwrote: I need your help (or just some advice). Currently I use WebKit (actually phantom.JS, which is based on the WebKit) as an instrument to research and develop the effective methods of ajax web-applications crawling

Re: [webkit-dev] Behaviour of CapsLock in WebKit/Mac

2012-12-12 Thread Wez
Right; so the question is really whether consistency with other platforms (and with the DOM Events spec) is sufficiently desirable to risk breaking any content that already works around this behaviour on Mac. As regards interacting with the HID manager, I suspect that the issue is above that

[webkit-dev] CSSGroupingRule and a bit of refactoring?

2012-12-12 Thread Pablo Flouret
Hello webkit folk, I'm working on having @supports behave like a proper CSSSupportsRule [1]. In the css3-conditional spec, CSSSupportsRule inherits from a CSSGroupingRule (CSSMediaRule does as well): http://dev.w3.org/csswg/css3-conditional/#the-cssgroupingrule-interface. I'm wondering if it's