| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| index fc6328921f0d096245b5cf5b09d47034ea2e6f98..5a3cadd70c7188aa39b932c5ae7589b843629138 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1141,7 +1141,7 @@ void LayoutTableSection::computeOverflowFromCells(unsigned totalRows, unsigned n
|
| unsigned totalCellsCount = nEffCols * totalRows;
|
| unsigned maxAllowedOverflowingCellsCount = totalCellsCount < gMinTableSizeToUseFastPaintPathWithOverflowingCell ? 0 : gMaxAllowedOverflowingCellRatioForFastPaintPath * totalCellsCount;
|
|
|
| - m_overflow.clear();
|
| + m_overflow.reset();
|
| m_overflowingCells.clear();
|
| m_forceSlowPaintPathWithOverflowingCell = false;
|
| #if ENABLE(ASSERT)
|
|
|