[webkit-dev] Adding CSS blending to WebKit

2012-07-20 Thread Rik Cabanier
All, I'm planning on adding CSS blending to WebKit: https://bugs.webkit.org/show_bug.cgi?id=91908 We already have a working prototype and I will bring it over as a couple of patches. We did a couple of write-ups on this feature: https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html http

Re: [webkit-dev] Question about embedding webkit

2012-07-20 Thread Brent Fulgham
Hi, On Fri, Jul 20, 2012 at 11:05 AM, wrote: > I tried to replace href="/foo" by href="./foo" and so on but it doesn't > solve anything, so my question is how can I run > those files inside an application that uses webkit ? Do I also need to > integrate inside my application a small http server

[webkit-dev] Question about embedding webkit

2012-07-20 Thread forumer
Hi, I am not sure this is the right place to ask but I suppose you may have an idea of the answer. I would like to embedd inside a native application some source files that are usually run inside a google chrome extension. My problem is that when I try to open those files locally using chrome

Re: [webkit-dev] Easing printf based debugging in WebKit with an helper.

2012-07-20 Thread Shezan Baig
On Fri, Jul 20, 2012 at 11:48 AM, Brady Eidson wrote: > On Jul 20, 2012, at 7:53 AM, Shezan Baig wrote: >> And because I'm in the middle of debugging a particular issue, I don't >> really want to create a new type that wraps up those (potentially >> unrelated) variables, just in order to create a

Re: [webkit-dev] Easing printf based debugging in WebKit with an helper.

2012-07-20 Thread Brady Eidson
On Jul 20, 2012, at 7:53 AM, Shezan Baig wrote: > On Fri, Jul 20, 2012 at 7:46 AM, Konstantin Tokarev wrote: >> >> 19.07.2012, 22:20, "Filip Pizlo" : >>> Now consider the stream form: >>> thingy << "foo " << a << " bar " << someWeirdNonsenseToEnableHex << b << " >>> baz " << c << endl; >>> Th

Re: [webkit-dev] Easing printf based debugging in WebKit with an helper.

2012-07-20 Thread Shezan Baig
On Fri, Jul 20, 2012 at 10:53 AM, Shezan Baig wrote: > On Fri, Jul 20, 2012 at 7:46 AM, Konstantin Tokarev wrote: >> >> 19.07.2012, 22:20, "Filip Pizlo" : >>> Now consider the stream form: >>> thingy << "foo " << a << " bar " << someWeirdNonsenseToEnableHex << b << " >>> baz " << c << endl; >>>

Re: [webkit-dev] Easing printf based debugging in WebKit with an helper.

2012-07-20 Thread Shezan Baig
On Fri, Jul 20, 2012 at 7:46 AM, Konstantin Tokarev wrote: > > 19.07.2012, 22:20, "Filip Pizlo" : >> Now consider the stream form: >> thingy << "foo " << a << " bar " << someWeirdNonsenseToEnableHex << b << " >> baz " << c << endl; >> This is 8 procedure calls and three string constants. This cod

Re: [webkit-dev] Easing printf based debugging in WebKit with an helper.

2012-07-20 Thread Konstantin Tokarev
19.07.2012, 22:20, "Filip Pizlo" : > Now consider the stream form: > thingy << "foo " << a << " bar " << someWeirdNonsenseToEnableHex << b << " > baz " << c << endl; > This is 8 procedure calls and three string constants. This code will be > somewhere around 8 times fatter. Hence, you will be le