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

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

Issue 1819073004: Fix table cell background painting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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/LayoutTable.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.h b/third_party/WebKit/Source/core/layout/LayoutTable.h
index f34d1286c0e8f7ed02481e5df702d6b0a89314a6..38ec45908088f0f8f8dd4b21fdf464d0a1a57d19 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
@@ -251,6 +251,7 @@ public:
// This function returns 0 if the table has no non-empty sections.
LayoutTableSection* topNonEmptySection() const;
+ LayoutTableSection* bottomNonEmptySection() const;
unsigned lastEffectiveColumnIndex() const { return numEffectiveColumns() - 1; }
@@ -336,6 +337,8 @@ public:
return slowColElementAtAbsoluteColumn(absoluteColumnIndex);
}
+ unsigned colElementToAbsoluteColumn(const LayoutTableCol *) const;
Xianzhu 2016/03/28 00:44:42 Nit: Remove the extra space before '*'.
atotic1 2016/03/29 17:05:16 Done.
+
bool needsSectionRecalc() const { return m_needsSectionRecalc; }
void setNeedsSectionRecalc()
{

Powered by Google App Engine
This is Rietveld 408576698