Re: [webkit-dev] Parallel CSS styling

2011-06-07 Thread Kulanthaivel Palanichamy
) • Google search (57%) • Yahoo sports (56%) • Apple (58%) • Wikipedia article (65%) -Kulanthaivel Do you have statistics on how much total time rendering flickr.com is in CSS/Style code at all? I believe it to be very low. -eric On Mon, Jun 6, 2011 at 1:16 PM

[webkit-dev] WebKit Layout test failures on Windows

2009-04-21 Thread Kulanthaivel
Hi, Recently I downloaded WebKit revision 42567 and built it on windows. When I tried to run run-webkit-tests script, many of the css tests are failed. css1/basic/class_as_selector.html - failed. css1/basic/comments.html - failed. css1/basic/containment.html - failed.

Re: [webkit-dev] How to handle error response on the browser when the HTTP request fails

2009-02-16 Thread Kulanthaivel
Hi, If you are using CURL then check the implementation of WebCore\platform\network\curl\ResourceHandleManager.cpp. You can check the callbacks headerCallback() writeCallback() which are used to pass the header and data information from CURL to WebCore. The

Re: [webkit-dev] Out-of-memory handling

2008-12-18 Thread Kulanthaivel
You can check the Nokia's S60WebKit MemoryManager implementation. They have developed a method to handle out of memory situations in WebKit On Tue, Dec 9, 2008 at 12:07 AM, Darin Adler da...@apple.com wrote: On Dec 8, 2008, at 8:21 AM, Kelemen Balázs wrote: A tempting approach would be using

Re: [webkit-dev] Out-of-memory handling

2008-12-18 Thread Kulanthaivel
the browser application about the out of memory situation. In WebKit they have added OOM (Out Of Memory) conditions in various places (javascript parsing/execution, html tokenizer, text encoding, image decoding etc..) and if there is not enough memory then it gracefully fails. Regards Kulanthaivel