Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1369)

Unified Diff: Source/core/layout/svg/SVGLayoutSupport.cpp

Issue 1269123002: Preparation for combining paths of focus rings and outlines (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/layout/svg/SVGLayoutSupport.cpp
diff --git a/Source/core/layout/svg/SVGLayoutSupport.cpp b/Source/core/layout/svg/SVGLayoutSupport.cpp
index 4fe5f0eaf2e40909773f678554923a9c2dd6c748..65f1f4b3ee78a51ea0c07e41edb2e4b71f280975 100644
--- a/Source/core/layout/svg/SVGLayoutSupport.cpp
+++ b/Source/core/layout/svg/SVGLayoutSupport.cpp
@@ -59,7 +59,7 @@ LayoutRect SVGLayoutSupport::clippedOverflowRectForPaintInvalidation(const Layou
return LayoutRect();
FloatRect paintInvalidationRect = object.paintInvalidationRectInLocalCoordinates();
- if (int outlineOutset = object.styleRef().outlineOutset())
+ if (int outlineOutset = object.styleRef().outlineOutsetExtent())
paintInvalidationRect.inflate(outlineOutset);
if (paintInvalidationState && paintInvalidationState->canMapToContainer(paintInvalidationContainer)) {

Powered by Google App Engine
This is Rietveld 408576698