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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp

Issue 2434543004: Specified row height should be applied during initial section layout. (Closed)
Patch Set: Created 4 years, 2 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/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index 25fb70ab90f774205c1b74dae700f9f6112bb61c..9745fe13110a2c64c41e799df9c003e9a23f3ecc 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1966,6 +1966,7 @@ int LayoutTableSection::logicalHeightForRow(
const LayoutTableRow& rowObject) const {
unsigned rowIndex = rowObject.rowIndex();
int logicalHeight = 0;
+
eae 2016/10/19 21:57:42 Could you please add an ASSERT that rowIndex < siz
mstensho (USE GERRIT) 2016/10/20 08:59:08 Aye aye, captain! I have to learn to stop adding
const Row& row = m_grid[rowIndex].row;
unsigned cols = row.size();
for (unsigned colIndex = 0; colIndex < cols; colIndex++) {
@@ -1980,6 +1981,12 @@ int LayoutTableSection::logicalHeightForRow(
std::max(logicalHeight, cell->logicalHeightForRowSizing());
}
}
+
+ if (m_grid[rowIndex].logicalHeight.isSpecified()) {
+ LayoutUnit specifiedLogicalHeight =
+ minimumValueForLength(m_grid[rowIndex].logicalHeight, LayoutUnit());
+ logicalHeight = std::max(logicalHeight, specifiedLogicalHeight.toInt());
+ }
return logicalHeight;
}

Powered by Google App Engine
This is Rietveld 408576698