Index: Source/core/rendering/RenderObject.cpp |
diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp |
index 44edf1cd4d741683e17034324c60a2d792c69f80..a08b09ea579df1363cce8c85ad388e62bab2db78 100644 |
--- a/Source/core/rendering/RenderObject.cpp |
+++ b/Source/core/rendering/RenderObject.cpp |
@@ -1150,7 +1150,7 @@ void RenderObject::paintOutline(PaintInfo& paintInfo, const LayoutRect& paintRec |
int outlineOffset = styleToUse->outlineOffset(); |
if (styleToUse->outlineStyleIsAuto() || hasOutlineAnnotation()) { |
- if (!theme()->supportsFocusRing(styleToUse)) { |
+ if (theme()->shouldDrawDefaultFocusRing(this)) { |
// Only paint the focus ring by hand if the theme isn't able to draw the focus ring. |
paintFocusRing(paintInfo, paintRect.location(), styleToUse); |
} |