| Index: third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp b/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| index 6f88d569750ec58d1995028f74b1dbc5177b4b73..b797e964cc0dddaad764f149978ce32417945b07 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFrameSet.cpp
|
| @@ -375,8 +375,8 @@ void LayoutFrameSet::layout()
|
| }
|
|
|
| LayoutUnit borderThickness(frameSet()->border());
|
| - layOutAxis(m_rows, frameSet()->rowLengths(), size().height() - (rows - 1) * borderThickness);
|
| - layOutAxis(m_cols, frameSet()->colLengths(), size().width() - (cols - 1) * borderThickness);
|
| + layOutAxis(m_rows, frameSet()->rowLengths(), (size().height() - (rows - 1) * borderThickness).toInt());
|
| + layOutAxis(m_cols, frameSet()->colLengths(), (size().width() - (cols - 1) * borderThickness).toInt());
|
|
|
| positionFrames();
|
|
|
|
|