| 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 064ddc8644d82b649f6809ef418cd180185cd265..42157a4a8f46bea48c2329fc1f063333d81130c4 100644
|
| --- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
|
| @@ -108,13 +108,13 @@ int TableLayoutAlgorithmFixed::calcWidthArray() {
|
| if (currentEffectiveColumn >= nEffCols) {
|
| m_table->appendEffectiveColumn(span);
|
| nEffCols++;
|
| - m_width.append(Length());
|
| + m_width.push_back(Length());
|
| spanInCurrentEffectiveColumn = span;
|
| } else {
|
| if (span < m_table->spanOfEffectiveColumn(currentEffectiveColumn)) {
|
| m_table->splitEffectiveColumn(currentEffectiveColumn, span);
|
| nEffCols++;
|
| - m_width.append(Length());
|
| + m_width.push_back(Length());
|
| }
|
| spanInCurrentEffectiveColumn =
|
| m_table->spanOfEffectiveColumn(currentEffectiveColumn);
|
|
|