| Index: third_party/WebKit/WebCore/rendering/RenderTableSection.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (revision 5091)
|
| +++ third_party/WebKit/WebCore/rendering/RenderTableSection.cpp (working copy)
|
| @@ -170,7 +170,7 @@
|
| m_grid.grow(numRows);
|
| }
|
| m_gridRows = numRows;
|
| - int nCols = table()->numEffCols();
|
| + int nCols = max(1, table()->numEffCols());
|
| CellStruct emptyCellStruct;
|
| emptyCellStruct.cell = 0;
|
| emptyCellStruct.inColSpan = false;
|
|
|