| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| index 8feedca2da8c86cb3f24ffaab8b2566d9e60517d..0c7365c9c0ea444844b956457077b1c4fe71a5b7 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -81,10 +81,12 @@ void LayoutTableRow::styleDidChange(StyleDifference diff, const ComputedStyle* o
|
| // If the border width changes on a row, we need to make sure the cells in the row know to lay out again.
|
| // This only happens when borders are collapsed, since they end up affecting the border sides of the cell
|
| // itself.
|
| + table->setPreferredLogicalWidthsDirty(MarkOnlyThis);
|
| for (LayoutBox* childBox = firstChildBox(); childBox; childBox = childBox->nextSiblingBox()) {
|
| if (!childBox->isTableCell())
|
| continue;
|
| childBox->setChildNeedsLayout();
|
| + childBox->setPreferredLogicalWidthsDirty(MarkOnlyThis);
|
| }
|
| }
|
| }
|
|
|