Re: [webkit-dev] Proposal: Remove ENABLE(SVG)

2014-02-03 Thread Xabier Rodríguez Calvar
Sorry for the late answer, but I was in Brussels at FOSDEM. O Ven, 31-01-2014 ás 14:01 +0100, Alberto Garcia escribiu: > Not in the GTK+ port at least, I've been able to do builds without > SVG perfectly fine, so there's probably something else wrong in your > environment or the port you're using

Re: [webkit-dev] webkitbot missing from #webkit

2014-02-03 Thread Ryosuke Niwa
Looks like it's up now. Can you still not see it? - R. Niwa On Mon, Feb 3, 2014 at 9:27 AM, Jessie Berlin wrote: > Could it be trying to connect to irc.freenode.net instead of > chat.freenode.net? > > ___ > webkit-dev mailing list > webkit-dev@lists

Re: [webkit-dev] Nesting a new CSS_SHAPES flag

2014-02-03 Thread Zoltan Horvath
Hi Dean, I'd love to help with introducing the new flag. Let me know if there is anything I can help with. Please also CC me on the bugs. Thanks, On Fri, Jan 31, 2014 at 11:51 AM, Dean Jackson wrote: > Hi Floks! > > We currently have flags for both CSS_SHAPES and CSS_EXCLUSIONS. In the > form

[webkit-dev] webkitbot missing from #webkit

2014-02-03 Thread Jessie Berlin
Could it be trying to connect to irc.freenode.net instead of chat.freenode.net? ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] call function from c++ to js using JSObject

2014-02-03 Thread Filip Pizlo
On Feb 3, 2014, at 9:04 AM, Honey wrote: > I have exposed a function setObject() through webkit idl. Suppose i have a > javascript class like > > function Player () { var speed = 5; var x = 50; var y = 50;} I presume you meant: function Player() { this.speed = 5; this.x = 50; this.y = 50; }

[webkit-dev] call function from c++ to js using JSObject

2014-02-03 Thread Honey
I have exposed a function setObject() through webkit idl. Suppose i have a javascript class like function Player () { var speed = 5; var x = 50; var y = 50;} var p = new Player(); setObject(p); In webkit, i am getting the p as JSValue object. I want to retrieve the value of x through this JSVal