Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(603)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.h

Issue 2545243002: Don't repeat thead if the first row exceeds the height of the page (Closed)
Patch Set: bug 669690 Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 5c0b9f709abc48d4a51a338860def83cb4f00e89..916aab9e2f2aa2e4802a97339ac1decc9460a440 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
@@ -318,13 +318,6 @@ class CORE_EXPORT LayoutTableSection final : public LayoutTableBoxComponent {
int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const;
- void setOffsetForRepeatingHeader(LayoutUnit offset) {
- m_offsetForRepeatingHeader = offset;
- }
- LayoutUnit offsetForRepeatingHeader() const {
- return m_offsetForRepeatingHeader;
- }
-
bool mapToVisualRectInAncestorSpace(
const LayoutBoxModelObject* ancestor,
LayoutRect&,
@@ -470,8 +463,6 @@ class CORE_EXPORT LayoutTableSection final : public LayoutTableBoxComponent {
// 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());
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTable.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableSection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698