| Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| index 3b1dae42b532996d1f2dc01f55645f557ba150d5..c5f3d9cf2ce3427addd68f0cbb681d62461d9706 100644
|
| --- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| @@ -57,10 +57,10 @@ void TableLayoutAlgorithmAuto::RecalcColumn(unsigned eff_col) {
|
| for (unsigned i = 0; i < num_rows; i++) {
|
| if (eff_col >= section->NumCols(i))
|
| continue;
|
| - LayoutTableSection::CellStruct current = section->CellAt(i, eff_col);
|
| - LayoutTableCell* cell = current.PrimaryCell();
|
| + auto& grid_cell = section->GridCellAt(i, eff_col);
|
| + LayoutTableCell* cell = grid_cell.PrimaryCell();
|
|
|
| - if (current.in_col_span || !cell)
|
| + if (grid_cell.InColSpan() || !cell)
|
| continue;
|
| column_layout.column_has_no_cells = false;
|
|
|
|
|