| 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 e7e3bd17630210d0f2069dd526b1e3c43168aa29..0f6f0eef11807d02d1cbaecdec045f25fa19eb1f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1285,7 +1285,7 @@ void LayoutTableSection::computeOverflowFromCells(unsigned totalRows,
|
| #endif
|
| if (cell->hasVisualOverflow() &&
|
| !m_forceSlowPaintPathWithOverflowingCell) {
|
| - m_overflowingCells.add(cell);
|
| + m_overflowingCells.insert(cell);
|
| if (m_overflowingCells.size() > maxAllowedOverflowingCellsCount) {
|
| // We need to set m_forcesSlowPaintPath only if there is a least one
|
| // overflowing cells as the hit testing code rely on this information.
|
|
|