Re: [webkit-dev] Media Server Development

2013-02-01 Thread Philippe Normand
You should write a new MediaPlayerPrivate backend instead of hacking the MediaPlayerPrivateGStreamer one. Philippe On Thu, 2013-01-31 at 23:04 +0530, Kiran K wrote: HI All, I am working on QtWebKit on Media Server development. Basic Idea is to run Gstreamer in seperate process which acts

Re: [webkit-dev] Media Server Development

2013-02-01 Thread Kiran K
Yes Phippe, you are right. I will start doing it , once I am done with hacking of MediaPlayerPrivateGstreamer. Regards, Kiran On Fri, Feb 1, 2013 at 4:26 PM, Philippe Normand ph...@igalia.com wrote: You should write a new MediaPlayerPrivate backend instead of hacking the

Re: [webkit-dev] Enabling unprefixed CSS Transitions by default.

2013-02-01 Thread Alexis Menard
Hi, It's now landed http://trac.webkit.org/changeset/141578 Please CC me on bugs that could occur and related to it. I will move on the CSS Animations now. Thanks. On Tue, Jan 29, 2013 at 11:22 PM, Eric Seidel e...@webkit.org wrote: Thank you for sharing! It appears that unless you're

Re: [webkit-dev] Enabling unprefixed CSS Transitions by default.

2013-02-01 Thread Kenneth Rohde Christiansen
Nice work Alexis! Kenneth On Fri, Feb 1, 2013 at 1:29 PM, Alexis Menard ale...@webkit.org wrote: Hi, It's now landed http://trac.webkit.org/changeset/141578 Please CC me on bugs that could occur and related to it. I will move on the CSS Animations now. Thanks. On Tue, Jan 29, 2013 at

[webkit-dev] Adding blending mode to background images

2013-02-01 Thread Rik Cabanier
Hi, I'd like to add support for blending of background images. The spec for this feature can be found here: * https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html#background-blend-mode * The implementation will be tracked by a meta bug: * https://bugs.webkit.org/show_bug.cgi?id=108546*

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Dirk Schulze
Hi Rik, Can you just add an example for the better understanding please? Greetings, Dirk On Feb 2, 2013, at 6:43 AM, Rik Cabanier caban...@gmail.com wrote: Hi, I'd like to add support for blending of background images. The spec for this feature can be found here:

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Rik Cabanier
Sure! For instance: !DOCTYPE HTML html head style .example { width: 500px; height: 500px; background-image: url(a.png), url(b.png); -webkit-background-blend-mode: screen, screen; } /style /head body style=background-color: green; div class=example/div /body /html The div in this document

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Benjamin Poulain
On Fri, Feb 1, 2013 at 12:44 PM, Rik Cabanier caban...@gmail.com wrote: background-image: url(a.png), url(b.png); -webkit-background-blend-mode: screen, screen; Out of curiosity: I am probably way too late for the party, but why not blend surface-to-surface? E.g. background-image:

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Dirk Schulze
On Feb 2, 2013, at 8:01 AM, Benjamin Poulain benja...@webkit.org wrote: On Fri, Feb 1, 2013 at 12:44 PM, Rik Cabanier caban...@gmail.com wrote: background-image: url(a.png), url(b.png); -webkit-background-blend-mode: screen, screen; Out of curiosity: I am probably way too late for the

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Rik Cabanier
you will be able to do this by using the fully featured 'mix-blend-mode' property [1]. for instance, if you want 2 images to blend with each other, but not with their background: div style=isolation: isolate - anything that creates a stacking context img src='foo.png'/ img src='bar.png'

Re: [webkit-dev] Adding blending mode to background images

2013-02-01 Thread Rik Cabanier
On Fri, Feb 1, 2013 at 1:08 PM, Dirk Schulze dschu...@adobe.com wrote: On Feb 2, 2013, at 8:01 AM, Benjamin Poulain benja...@webkit.org wrote: On Fri, Feb 1, 2013 at 12:44 PM, Rik Cabanier caban...@gmail.com wrote: background-image: url(a.png), url(b.png); -webkit-background-blend-mode: