| 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 09ac5911a0a9a7e58e472106b7f2094866f6b5e8..1a98e17758a218c9751510dc30fab2e06ffe7391 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| @@ -256,6 +256,13 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| LayoutTableSection* footer() const { return m_foot; }
|
| LayoutTableSection* firstBody() const { return m_firstBody; }
|
|
|
| + void setRowOffsetFromRepeatingHeader(LayoutUnit offset) {
|
| + m_rowOffsetFromRepeatingHeader = offset;
|
| + }
|
| + LayoutUnit rowOffsetFromRepeatingHeader() const {
|
| + return m_rowOffsetFromRepeatingHeader;
|
| + }
|
| +
|
| // This function returns 0 if the table has no section.
|
| LayoutTableSection* topSection() const;
|
| LayoutTableSection* bottomSection() const;
|
| @@ -575,6 +582,7 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| int m_borderEnd;
|
|
|
| LayoutUnit m_blockOffsetToFirstRepeatableHeader;
|
| + LayoutUnit m_rowOffsetFromRepeatingHeader;
|
| };
|
|
|
| inline LayoutTableSection* LayoutTable::topSection() const {
|
|
|