[webkit-dev] Table layout does not clear setNeedsLayout flag for rows?

2014-03-13 Thread Mayur K
Hi, I am checking the layout and rendering of the table element in webkit. In the process I figured out that the link of renderers is as follows: RenderTable has RenderTableSection has RenderTableRow has RenderTableCell The layout of the table rows is done in RenderTableSection::layoutRows. I did

[webkit-dev] Getting compilation errors even after INSPECTOR has been disabled!!

2012-09-27 Thread Mayur K
Hi, I am getting the following compilation errors while building WebCore c1xx : fatal error C1083: Cannot open source file: '..\..\..\..\output\Debug\obj\WebCore\DerivedSources\InspectorFrontend.cpp': No such file or directory I have disabled INSPECTOR flag in wtf/platform.h , but am still

Re: [webkit-dev] JSGlobalData GC collection thread lifetime if webview is recreated without application exit.

2012-05-25 Thread Mayur K
Hi All, Thanks for the reply Geoff. I am currently facing an issue where in after deleting the webview, but not exiting the application, after some time the javascript gc thread is seg faulting. The breakpoints that I have added are also not hitting. So I think that gc thread is still active even

[webkit-dev] JSGlobalData GC collection thread lifetime if webview is recreated without application exit.

2012-05-23 Thread Mayur K
Hi All, I have been studying the JS execution and noticed that the JSGlobalData is stored in a static variable and never deleted. I traced even the windows port and noticed one more thing, that the JSGlobalData and the Heap class destructor are never called. As it is static I assume that the

[webkit-dev] How to specify the window size in DumpRenderTree?

2012-02-24 Thread Mayur K
Hi, I want to specify the window size/view size in DumpRenderTree, so that rendertree, can reflect the structure according to the new window size. Is there an existing option/method to do so? Thanks in advance. --Mayur Kankanwadi. -- Symbiangeek,Codekata Webkitwiki all in one -

Re: [webkit-dev] How to specify the window size in DumpRenderTree?

2012-02-24 Thread Mayur K
to change the size of the window. On Fri, Feb 24, 2012 at 5:01 AM, Mayur K emineme...@gmail.com wrote: Hi, I want to specify the window size/view size in DumpRenderTree, so that rendertree, can reflect the structure according to the new window size. Is there an existing option/method to do so