| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.h b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| index 0eccd0c95a10cff3ff69aad9254d2105d9120933..b3e19d786f2eb43479b3d3488a8644035bc46268 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| @@ -146,7 +146,7 @@ public:
|
| int logicalHeightFromStyle() const
|
| {
|
| Length height = style()->logicalHeight();
|
| - int styleLogicalHeight = height.isIntrinsicOrAuto() ? LayoutUnit() : valueForLength(height, LayoutUnit());
|
| + int styleLogicalHeight = height.isIntrinsicOrAuto() ? 0 : valueForLength(height, LayoutUnit()).toInt();
|
|
|
| // 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.
|
|
|