Index: Source/WebCore/rendering/RenderTableSection.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderTableSection.cpp (revision 125204) |
+++ Source/WebCore/rendering/RenderTableSection.cpp (working copy) |
@@ -957,8 +957,7 @@ |
for (size_t i = 0; i < firstRow.size(); ++i) { |
const CellStruct& cs = firstRow.at(i); |
const RenderTableCell* cell = cs.primaryCell(); |
- // Only cells with content have a baseline |
- if (cell && cell->contentLogicalHeight()) |
+ if (cell) |
firstLineBaseline = max(firstLineBaseline, cell->logicalTop() + cell->paddingBefore() + cell->borderBefore() + cell->contentLogicalHeight()); |
} |