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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutState.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/LayoutState.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutState.h b/third_party/WebKit/Source/core/layout/LayoutState.h
index b666ec43515371615e0b34550eeff7a91864ec09..aab4c7e33b82a4562874a951b9f42f4212c30739 100644
--- a/third_party/WebKit/Source/core/layout/LayoutState.h
+++ b/third_party/WebKit/Source/core/layout/LayoutState.h
@@ -84,13 +84,6 @@ class LayoutState {
LayoutUnit pageLogicalOffset(const LayoutBox&,
const LayoutUnit& childLogicalOffset) const;
- LayoutUnit heightOffsetForTableHeaders() const {
- return m_heightOffsetForTableHeaders;
- };
- void setHeightOffsetForTableHeaders(LayoutUnit offset) {
- m_heightOffsetForTableHeaders = offset;
- };
-
const LayoutSize& paginationOffset() const { return m_paginationOffset; }
bool containingBlockLogicalWidthChanged() const {
return m_containingBlockLogicalWidthChanged;
@@ -121,10 +114,6 @@ class LayoutState {
// relative positioning or scroll offsets.
LayoutSize m_paginationOffset;
- // The height we need to make available for repeating table headers in
- // paginated layout.
- LayoutUnit m_heightOffsetForTableHeaders;
-
LayoutObject& m_layoutObject;
};

Powered by Google App Engine
This is Rietveld 408576698