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

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

Issue 1676933004: Table cell background painting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: colgroup paint bug125336 fix Created 4 years, 10 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 7ea48f21d1b43938ab302742ae1409da56e399cc..b622311d5446f1c53b9017706ac0bcab240f7306 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
@@ -224,6 +224,7 @@ public:
// This function returns 0 if the table has no non-empty sections.
LayoutTableSection* topNonEmptySection() const;
+ LayoutTableSection* bottomNonEmptySection() const;
unsigned lastColumnIndex() const { return numEffCols() - 1; }
@@ -309,6 +310,8 @@ public:
return slowColElement(col);
}
+ unsigned colElementToCol(const LayoutTableCol *) const;
+
bool needsSectionRecalc() const { return m_needsSectionRecalc; }
void setNeedsSectionRecalc()
{

Powered by Google App Engine
This is Rietveld 408576698