| Index: third_party/WebKit/Source/core/layout/line/LineWidth.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/LineWidth.h b/third_party/WebKit/Source/core/layout/line/LineWidth.h
|
| index 2c9ccb836c883eb9b62a276476c07a40a90fd984..6f18faae32b95f220bfc9be723da3f6ec77a9adb 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/LineWidth.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/LineWidth.h
|
| @@ -71,7 +71,7 @@ public:
|
| void applyOverhang(LineLayoutRubyRun, LineLayoutItem startLayoutItem, LineLayoutItem endLayoutItem);
|
| void fitBelowFloats(bool isFirstLine = false);
|
| void setTrailingWhitespaceWidth(float width) { m_trailingWhitespaceWidth = width; }
|
| - void snapUncommittedWidth() { m_uncommittedWidth = LayoutUnit(m_uncommittedWidth).toFloat(); }
|
| + void snapUncommittedWidth() { m_uncommittedWidth = LayoutUnit::fromFloatCeil(m_uncommittedWidth).toFloat(); }
|
|
|
| IndentTextOrNot indentText() const { return m_indentText; }
|
|
|
|
|