Chromium Code Reviews| Index: Source/core/rendering/RenderTableCol.cpp |
| diff --git a/Source/core/rendering/RenderTableCol.cpp b/Source/core/rendering/RenderTableCol.cpp |
| index ea17126a73baff085f968bc15ccbfa1264e6e43f..679b8e89da85c2be1c59c96dbf35b41972943a61 100644 |
| --- a/Source/core/rendering/RenderTableCol.cpp |
| +++ b/Source/core/rendering/RenderTableCol.cpp |
| @@ -57,8 +57,22 @@ void RenderTableCol::styleDidChange(StyleDifference diff, const RenderStyle* old |
| // If border was changed, notify table. |
| if (parent()) { |
| RenderTable* table = this->table(); |
| - if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border()) |
| + if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout() && oldStyle && oldStyle->border() != style()->border()) { |
| table->invalidateCollapsedBorders(); |
| + } else if (oldStyle && oldStyle->logicalWidth() != style()->logicalWidth()) { |
| + // FIXME : setPreferredLogicalWidthsDirty is done for all cells as of now. |
| + // Need to find a better way so that only the cells which are changed by |
| + // the col width should have preferred logical widths recomputed. |
| + for (RenderObject* child = table->children()->firstChild(); child; child = child->nextSibling()) { |
| + if (child->isTableCaption() || !child->isTableSection()) |
|
mstensho (USE GERRIT)
2015/01/13 08:34:47
A caption isn't a section, so why bother checking?
|
| + continue; |
| + RenderTableSection* section = toRenderTableSection(child); |
| + for (RenderTableRow* row = section->firstRow(); row; row = row->nextRow()) { |
| + for (RenderTableCell* cell = row->firstCell(); cell; cell = cell->nextCell()) |
| + cell->setPreferredLogicalWidthsDirty(); |
| + } |
| + } |
| + } |
| } |
| } |