| Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| index 42157a4a8f46bea48c2329fc1f063333d81130c4..f7d5a1f155f8e24c6cb36b6dc89bc1dc2575a737 100644
|
| --- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| @@ -333,7 +333,7 @@ void TableLayoutAlgorithmFixed::layout() {
|
| calcWidth[nEffCols - 1] += remainingWidth;
|
| }
|
|
|
| - ASSERT(m_table->effectiveColumnPositions().size() == nEffCols + 1);
|
| + DCHECK_EQ(m_table->effectiveColumnPositions().size(), nEffCols + 1);
|
| int pos = 0;
|
| for (unsigned i = 0; i < nEffCols; i++) {
|
| m_table->setEffectiveColumnPosition(i, pos);
|
|
|