| Index: Source/core/accessibility/AXRenderObject.cpp
|
| diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp
|
| index ea2b81e5407e93467f1fbfe8ddb9ece83495f7d9..0c2efaa05f3e9e26ace5f2d09e2baf9f58830ab1 100644
|
| --- a/Source/core/accessibility/AXRenderObject.cpp
|
| +++ b/Source/core/accessibility/AXRenderObject.cpp
|
| @@ -1251,7 +1251,7 @@ IntPoint AXRenderObject::clickPoint()
|
| if (!isWebArea() || isReadOnly())
|
| return AXObject::clickPoint();
|
|
|
| - LayoutRect bounds = elementRect();
|
| + IntRect bounds = pixelSnappedIntRect(elementRect());
|
| return IntPoint(bounds.x() + (bounds.width() / 2), bounds.y() - (bounds.height() / 2));
|
| }
|
|
|
|
|