Re: [webkit-dev] freeing static variables

2009-07-30 Thread Zoltan Herczeg
Hi, any thoughts on this? I hope my qestion was clear :) I would like to pack the static declarations into wrapper classes, so we can add platform and/or compilation mode (debug/release) dependent functionality to all static variables (i.e: freeing them on exit). Zoltan Hi all, Valgrind

[webkit-dev] JavaScript code that access the DOM tree

2009-07-30 Thread Luka Napotnik
Hello. I'm searching for the JavaScriptCore code that can access the DOM tree. An example would be JavaScript code that changes the image source of an IMG dom element. Any good pointer on this subject? Greets, Luka ___ webkit-dev mailing list

Re: [webkit-dev] freeing static variables

2009-07-30 Thread tonikitoo (Antonio Gomes)
Zoltan, I think it would be a great add from a embedder-dev point of view. Particularly, such leaks have been faced here in a soon past, when we were loading a webkit browser as a plugin, and not as an application by itself. So, we the webkit plugin was unloaded, it used to left behind lots of

[webkit-dev] ajax problem when evaluating js

2009-07-30 Thread liseen
Hi, everyone I met a question about qtwebkit. if the javascript disabled, then I evaluate some js contains ajax request, I cann't get any return. why? if qtwebkit enbaled javascipt, I got the return of ajax request. can someone help me? ___

Re: [webkit-dev] freeing static variables

2009-07-30 Thread Adam Treat
On Thursday 30 July 2009 02:55:18 am Zoltan Herczeg wrote: Hi, any thoughts on this? I hope my qestion was clear :) I would like to pack the static declarations into wrapper classes, so we can add platform and/or compilation mode (debug/release) dependent functionality to all static

Re: [webkit-dev] JavaScript code that access the DOM tree

2009-07-30 Thread Adam Treat
On Thursday 30 July 2009 08:57:53 am Luka Napotnik wrote: Hello. I'm searching for the JavaScriptCore code that can access the DOM tree. An example would be JavaScript code that changes the image source of an IMG dom element. Any good pointer on this subject? Greets, Luka This is not an

Re: [webkit-dev] ajax problem when evaluating js

2009-07-30 Thread Zoltan Horvath
liseen wrote at: 2009. 07. 30. 16.09.: Hi, everyone I met a question about qtwebkit. if the javascript disabled, then I evaluate some js contains ajax request, I cann't get any return. why? if qtwebkit enbaled javascipt, I got the return of ajax request. can someone help me? Hi,

Re: [webkit-dev] error compiling webkit-git on 64-bit

2009-07-30 Thread Yusuke Sato
Hi, I had the same problem with Ubuntu Hardy 64bit. I guess the easiest way to work around the link error is to run the ./autogen.sh script with --disable-jit (if you're not debugging JIT stuff, of course :-). $ ./autogen.sh --disable-jit --enable-debug make $ ./Programs/GtkLauncher When the