| Index: third_party/WebKit/Source/core/layout/LayoutTable.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.h b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| index 2604921a1a2519edcc43a8b2c170855f32281ce7..4b473a6659344351d919ad17e9e31f44c3731d02 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| @@ -233,6 +233,13 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| return row_offset_from_repeating_header_;
|
| }
|
|
|
| + void SetRowOffsetFromRepeatingFooter(LayoutUnit offset) {
|
| + row_offset_from_repeating_footer_ = offset;
|
| + }
|
| + LayoutUnit RowOffsetFromRepeatingFooter() const {
|
| + return row_offset_from_repeating_footer_;
|
| + }
|
| +
|
| // These functions return nullptr if the table has no sections.
|
| LayoutTableSection* TopSection() const;
|
| LayoutTableSection* BottomSection() const;
|
| @@ -588,6 +595,7 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
|
|
| LayoutUnit block_offset_to_first_repeatable_header_;
|
| LayoutUnit row_offset_from_repeating_header_;
|
| + LayoutUnit row_offset_from_repeating_footer_;
|
| LayoutUnit old_available_logical_height_;
|
| };
|
|
|
|
|