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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableCol.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/LayoutTableCol.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCol.h b/third_party/WebKit/Source/core/layout/LayoutTableCol.h
index a028b3b73ac374db8fd72ff02c5fd5b908f956bd..bb5db34eebbe2720ec32d9f25e549024949c0f89 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableCol.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCol.h
@@ -81,6 +81,7 @@ public:
bool isTableColumnGroup() const { return style()->display() == TABLE_COLUMN_GROUP; }
LayoutTableCol* enclosingColumnGroup() const;
+ LayoutTableCol* lastColumnInGroup() const;
// Returns the next column or column-group.
LayoutTableCol* nextColumn() const;
@@ -92,6 +93,12 @@ public:
const char* name() const override { return "LayoutTableCol"; }
+ LayoutRect positionByCellSpan() const;
+
+ Vector<LayoutTableCell*> getColumnCells() const;
Xianzhu 2016/02/23 22:58:27 Nit: omit 'get'.
atotic1 2016/03/15 16:50:47 Done.
+
+ Vector<unsigned> getColumnIndexes() const;
+
private:
LayoutObjectChildList* virtualChildren() override { return children(); }
const LayoutObjectChildList* virtualChildren() const override { return children(); }

Powered by Google App Engine
This is Rietveld 408576698