| Index: Source/core/layout/LayoutTableCell.h
|
| diff --git a/Source/core/layout/LayoutTableCell.h b/Source/core/layout/LayoutTableCell.h
|
| index ab8c4471577ceaf4d56008ed8da47b2400074d17..4264d3cc4a7680d920f68ba01b6e4c045f982487 100644
|
| --- a/Source/core/layout/LayoutTableCell.h
|
| +++ b/Source/core/layout/LayoutTableCell.h
|
| @@ -103,7 +103,7 @@ public:
|
| int logicalHeightFromStyle() const
|
| {
|
| Length height = style()->logicalHeight();
|
| - int styleLogicalHeight = height.isIntrinsic() ? LayoutUnit() : valueForLength(height, LayoutUnit());
|
| + int styleLogicalHeight = height.isIntrinsicOrAuto() ? LayoutUnit() : valueForLength(height, LayoutUnit());
|
|
|
| // In strict mode, box-sizing: content-box do the right thing and actually add in the border and padding.
|
| // Call computedCSSPadding* directly to avoid including implicitPadding.
|
|
|