| Index: Source/WebCore/rendering/RenderTableSection.cpp
 | 
| ===================================================================
 | 
| --- Source/WebCore/rendering/RenderTableSection.cpp	(revision 123241)
 | 
| +++ Source/WebCore/rendering/RenderTableSection.cpp	(working copy)
 | 
| @@ -945,8 +945,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());
 | 
|      }
 | 
|  
 | 
| 
 |