| Index: third_party/WebKit/Source/core/layout/LayoutInline.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.h b/third_party/WebKit/Source/core/layout/LayoutInline.h
|
| index fd0d42a4b94aba5bd4638013ebd04df8d452e88a..2af191cc33569469879bfcc1d6f53ef851e8e0ef 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutInline.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutInline.h
|
| @@ -232,8 +232,8 @@ private:
|
|
|
| LayoutUnit offsetLeft() const final;
|
| LayoutUnit offsetTop() const final;
|
| - LayoutUnit offsetWidth() const final { return linesBoundingBox().width(); }
|
| - LayoutUnit offsetHeight() const final { return linesBoundingBox().height(); }
|
| + LayoutUnit offsetWidth() const final { return LayoutUnit(linesBoundingBox().width()); }
|
| + LayoutUnit offsetHeight() const final { return LayoutUnit(linesBoundingBox().height()); }
|
|
|
| LayoutRect absoluteClippedOverflowRect() const override;
|
| LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = nullptr) const override;
|
|
|