| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.h b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| index 549a25316c4d08c4521858a94c5c5a5a8e409621..edd70aa94dd431b05e4201e72e21ae17eb172a98 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| @@ -115,6 +115,8 @@ public:
|
| void layoutRows();
|
| void computeOverflowFromCells();
|
| bool recalcChildOverflowAfterStyleChange();
|
| + enum WhatToMarkAllCells { MarkDirtyOnly, MarkDirtyAndNeedsLayout };
|
| + void markAllCellsWidthsDirtyAndOrNeedsLayout(WhatToMarkAllCells);
|
|
|
| LayoutTable* table() const { return toLayoutTable(parent()); }
|
|
|
| @@ -226,6 +228,7 @@ public:
|
| }
|
| const LayoutTableCell* primaryCellAt(unsigned row, unsigned effectiveColumn) const { return const_cast<LayoutTableSection*>(this)->primaryCellAt(row, effectiveColumn); }
|
|
|
| + // Returns null for cells with a rowspan that exceed the last row. Possibly others.
|
| LayoutTableRow* rowLayoutObjectAt(unsigned row) { return m_grid[row].rowLayoutObject; }
|
| const LayoutTableRow* rowLayoutObjectAt(unsigned row) const { return m_grid[row].rowLayoutObject; }
|
|
|
|
|