| Index: Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/Source/core/layout/LayoutTableSection.cpp b/Source/core/layout/LayoutTableSection.cpp
|
| index d429db7252bc7090b4ffeff46ca27de4cfc9b792..66ae06d047bac22bc9d5e8b88d1bac58969c18f5 100644
|
| --- a/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1065,7 +1065,7 @@ void LayoutTableSection::layoutRows()
|
| if (oldLogicalHeight > rHeight)
|
| rowHeightIncreaseForPagination = std::max<int>(rowHeightIncreaseForPagination, oldLogicalHeight - rHeight);
|
| cell->setLogicalHeight(rHeight);
|
| - cell->computeOverflow(oldLogicalHeight, false);
|
| + cell->computeOverflow(oldLogicalHeight);
|
| }
|
|
|
| if (rowLayoutObject)
|
| @@ -1088,7 +1088,7 @@ void LayoutTableSection::layoutRows()
|
| for (size_t i = 0; i < cells.size(); ++i) {
|
| LayoutUnit oldLogicalHeight = cells[i]->logicalHeight();
|
| cells[i]->setLogicalHeight(oldLogicalHeight + rowHeightIncreaseForPagination);
|
| - cells[i]->computeOverflow(oldLogicalHeight, false);
|
| + cells[i]->computeOverflow(oldLogicalHeight);
|
| }
|
| }
|
| }
|
|
|