[webkit-dev] Enormous WebCore.lib on Windows (Release)

2009-01-21 Thread Chung-Yeh Wang
I have used update-webkit to get latest code from svn. After removing 'WholeProgramOptimization=1 ' in WebKit\WebCore\WebCore.vcproj\WebCore.vcproj, i got a 313MB WebCore.lib inWebKit\WebKitBuild\lib. ___ webkit-dev mailing list

[webkit-dev] Mouse move/drag events to plug-ins on OS X

2009-01-21 Thread leafmuncher
Hi, I'm wondering how (if?) WebKit passes mouse move events down to Plug-ins. WebNetscapePluginEventHandlerCarbon::mouseDragged and WebNetscapePluginEventHandlerCarbon::mouseMoved (Carbon seems to be the event handler that gets used) are No-ops, and I see references to GetMouse/GetGlobalMouse

Re: [webkit-dev] Handling Malformed URL

2009-01-21 Thread Nilesh Patil
Hi I dont think one needs to authenticate such things. If resource is not found an http code is returned. This is how most of browsers work. Thanks Regards Niilesh On Wed, Jan 21, 2009 at 4:38 PM, mwas webkit.meis...@gmail.com wrote: Hi, Does any one know How webkit handles

Re: [webkit-dev] Handling Malformed URL

2009-01-21 Thread mwas
Hi, Agreed, WebKit uses Curl to return those error codes, Curl is sending 503 http error code for the said URL but WebKit does not respond with didFail() Kindly Suggest! Thanks mwas On Wed, Jan 21, 2009 at 4:48 PM, Nilesh Patil vni...@gmail.com wrote: Hi I dont think one needs to

Re: [webkit-dev] memory leaks seen by leak bot

2009-01-21 Thread Alexey Proskuryakov
Jan 21, 2009, в 10:12 AM, Darin Adler написал(а): But there also seem to be a bunch related to worker threads: http://build.webkit.org/results/trunk-mac-intel-debug/5816/DumpRenderTree5-leaks.txt I couldn't quickly figure out how to fix those worker-thread related ones yet. Oliver

Re: [webkit-dev] Some Questions about Squirrel Fish

2009-01-21 Thread haithem rahmani
Hi all, thanks for these answers, but I'm still have two small questions. - Is there any validation test suite other than Sunspider that was used to validate the SquirrelFish JIT on x86 ? - is there any port on top of ARM based platforms? regards. On Wed, Jan 21, 2009 at 10:01 AM,

Re: [webkit-dev] Mouse move/drag events to plug-ins on OS X

2009-01-21 Thread leafmuncher
As far as I know, mouse moving is handled by sending continuous nullEvents to the plugin, through a timer running in the plugin host. The 'where' field of the event record should have the mouse position. Interesting, I'll give this a try. PS: Nice work on Plex ;) Thanks :-) I was trying

Re: [webkit-dev] Some Questions about Squirrel Fish

2009-01-21 Thread Zoltan Herczeg
Hi, - Is there any validation test suite other than Sunspider that was used to validate the SquirrelFish JIT on x86 ? SunSpider is performance benchmark not regression test. To run mozilla regression test use the following command: WebKit/WebKitTools/Scripts/run-javascriptcore-tests Two