| 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 c0ef195e9314f522680d49cd3855ae0876514130..3d330f6d4739786b67101dd17b80f1bfdfa7c8cd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
|
| @@ -299,6 +299,9 @@ public:
|
|
|
| int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const;
|
|
|
| + void setOffsetForRepeatingHeader(LayoutUnit offset) { m_offsetForRepeatingHeader = offset; }
|
| + LayoutUnit offsetForRepeatingHeader() const { return m_offsetForRepeatingHeader; }
|
| +
|
| protected:
|
| void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
|
| bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
|
| @@ -390,6 +393,8 @@ private:
|
| // The use is to disable a painting optimization where we just paint the
|
| // invalidated cells.
|
| bool m_hasMultipleCellLevels;
|
| +
|
| + LayoutUnit m_offsetForRepeatingHeader;
|
| };
|
|
|
| DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableSection, isTableSection());
|
|
|