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

2014-03-13 Thread Yuki Sekiguchi
Since I don't understand table layout well, I'm sorry if I said wrong. RenderTable::layout() calls RenderTableSection::layout() at [1]. RenderTableSection::layout() calls RenderTableRow::layout() at [2]. RenderTableRow::layout() clears its setNeedsLayout flag at [3]. Therefore, I think the flag is

[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 RenderTableSection RenderTableRow RenderTableCell The layout of the table rows is done in RenderTableSection::layoutRows. I did not see a