Index: Source/core/layout/style/SVGLayoutStyle.cpp |
diff --git a/Source/core/layout/style/SVGLayoutStyle.cpp b/Source/core/layout/style/SVGLayoutStyle.cpp |
index 5d7759dc0ff41424ac8df3618d0d801c747e4850..b30edd99e133728ab211719c687c6984b8b58773 100644 |
--- a/Source/core/layout/style/SVGLayoutStyle.cpp |
+++ b/Source/core/layout/style/SVGLayoutStyle.cpp |
@@ -192,8 +192,11 @@ bool SVGLayoutStyle::diffNeedsLayoutAndPaintInvalidation(const SVGLayoutStyle* o |
if (layout.get() != other->layout.get()) { |
if (layout->x != other->layout->x |
|| layout->y != other->layout->y |
+ || layout->r != other->layout->r |
|| layout->rx != other->layout->rx |
- || layout->ry != other->layout->ry) |
+ || layout->ry != other->layout->ry |
+ || layout->cx != other->layout->cx |
+ || layout->cy != other->layout->cy) |
return true; |
} |