Re: [webkit-dev] Purpose of script debug-safari?

2008-11-26 Thread Adam Roben
On Nov 26, 2008, at 5:10 AM, Jack Wootton wrote: Can anyone clarify the purpose of the script debug-safari? Sure: I loaded the webkit project into VS 2005, built it using cygwin, launched using the script run-safari and then attached the safari process to the project imported into VS 2005.

[webkit-dev] background transparency of webkitwebview on gtk port

2008-11-26 Thread zaheer ahmad
hi all, iam trying to make the webview container transparent to show through its parent's background. i set the webview to transparent and also do not have background color property set. i find that the background still gets drawn. i suspect this is the containers background? is there a way to pr

Re: [webkit-dev] how to destroy JSObjescts?

2008-11-26 Thread Iulian
Ok. That doesn't help me. I never call JSValueProtect() to prevent the object from being destroyed. Iulian Alexey Proskuryakov-4 wrote: > > > > Perhaps the address of myDynamicObject is on the stack when you call > JSGarbageCollect()? That would prevent it from being collected, of > cou

[webkit-dev] Purpose of script debug-safari?

2008-11-26 Thread Jack Wootton
Can anyone clarify the purpose of the script debug-safari? I loaded the webkit project into VS 2005, built it using cygwin, launched using the script run-safari and then attached the safari process to the project imported into VS 2005. I can then place breakpoints in the code and use the browser

Re: [webkit-dev] how to destroy JSObjescts?

2008-11-26 Thread Alexey Proskuryakov
Nov 26, 2008, в 12:23 PM, Iulian написал(а): With JSGarbageCollect() the finalize() function of myStaticObject gets called, but the finalize() function of myDynamicObject doesn't get called. Perhaps the address of myDynamicObject is on the stack when you call JSGarbageCollect()? That wou

Re: [webkit-dev] how to destroy JSObjescts?

2008-11-26 Thread Iulian
This is not what i want. I just want to avoid memory leaks. With JSGarbageCollect is a little better, but not perfect. I'll try to explain my scenario, maybe this will help. I extended GTKLauncher to provide aditional JavaScript objects. Actually i create two objects: One with JSObjectMake(), ca

Re: [webkit-dev] copy/paste/keychain support?

2008-11-26 Thread Alexey Proskuryakov
Nov 25, 2008, в 9:31 PM, Lev Lvovsky написал(а): I've recently started using the nightly builds, and I've found that cut/copy/paste don't work when I run the browser running off of the nightly webkit library - I wasn't able to find anything about this online (perhaps I didn't use the right

Re: [webkit-dev] how to destroy JSObjescts?

2008-11-26 Thread Alexey Proskuryakov
Nov 26, 2008, в 10:47 AM, Iulian написал(а): The class definition of my object has initialize() and finalize(). When i load the page that contains "MyObject obj= new MyObject();" the object is constructed and the initialize() is called. Unfortunatelly this object is never garbage collected (n