| Index: Source/core/rendering/RenderTextControl.cpp
|
| diff --git a/Source/core/rendering/RenderTextControl.cpp b/Source/core/rendering/RenderTextControl.cpp
|
| index b1c845b46cd23f8bdd021f6c6cc777e4f22239ff..795c9677ea5b9dc14fc86781f42c214711cab0c8 100644
|
| --- a/Source/core/rendering/RenderTextControl.cpp
|
| +++ b/Source/core/rendering/RenderTextControl.cpp
|
| @@ -283,10 +283,10 @@ void RenderTextControl::computePreferredLogicalWidths()
|
| clearPreferredLogicalWidthsDirty();
|
| }
|
|
|
| -void RenderTextControl::addFocusRingRects(Vector<IntRect>& rects, const LayoutPoint& additionalOffset, const RenderLayerModelObject*) const
|
| +void RenderTextControl::addFocusRingRects(Vector<LayoutRect>& rects, const LayoutPoint& additionalOffset, const RenderLayerModelObject*) const
|
| {
|
| if (!size().isEmpty())
|
| - rects.append(pixelSnappedIntRect(additionalOffset, size()));
|
| + rects.append(LayoutRect(additionalOffset, size()));
|
| }
|
|
|
| RenderObject* RenderTextControl::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope)
|
|
|