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

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

Issue 821203003: Handling of percent less than 1 while extra height distribution in spanning rows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments addressed Created 5 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: Source/core/layout/LayoutTableSection.h
diff --git a/Source/core/layout/LayoutTableSection.h b/Source/core/layout/LayoutTableSection.h
index 74034e185b53dfaee6a8381936e6835872b7f1bf..d7cb25c7fbe8e9803c5ba9e0a950ccb44446e563 100644
--- a/Source/core/layout/LayoutTableSection.h
+++ b/Source/core/layout/LayoutTableSection.h
@@ -260,8 +260,8 @@ private:
void updateRowsHeightHavingOnlySpanningCells(LayoutTableCell*, struct SpanningRowsHeight&, unsigned&, Vector<int>&);
void populateSpanningRowsHeightFromCell(LayoutTableCell*, struct SpanningRowsHeight&);
- void distributeExtraRowSpanHeightToPercentRows(LayoutTableCell*, int, int&, Vector<int>&);
- void distributeWholeExtraRowSpanHeightToPercentRows(LayoutTableCell*, int, int&, Vector<int>&);
+ void distributeExtraRowSpanHeightToPercentRows(LayoutTableCell*, LayoutUnit, int&, Vector<int>&);
+ void distributeWholeExtraRowSpanHeightToPercentRows(LayoutTableCell*, LayoutUnit, int&, Vector<int>&);
void distributeExtraRowSpanHeightToAutoRows(LayoutTableCell*, int, int&, Vector<int>&);
void distributeExtraRowSpanHeightToRemainingRows(LayoutTableCell*, int, int&, Vector<int>&);
void distributeRowSpanHeightToRows(SpanningLayoutTableCells& rowSpanCells);

Powered by Google App Engine
This is Rietveld 408576698