Index: Source/core/layout/svg/LayoutSVGResourcePattern.cpp |
diff --git a/Source/core/layout/svg/LayoutSVGResourcePattern.cpp b/Source/core/layout/svg/LayoutSVGResourcePattern.cpp |
index 527eda275c18365a5a5e831d3923f17ff906561a..23ad0b7bfaedeacd528d721d622a22754702b82f 100644 |
--- a/Source/core/layout/svg/LayoutSVGResourcePattern.cpp |
+++ b/Source/core/layout/svg/LayoutSVGResourcePattern.cpp |
@@ -93,7 +93,7 @@ PassOwnPtr<PatternData> LayoutSVGResourcePattern::buildPatternData(const LayoutO |
FloatRect clientBoundingBox = object.objectBoundingBox(); |
FloatRect tileBounds = SVGLengthContext::resolveRectangle(element(), |
attributes.patternUnits(), clientBoundingBox, |
- attributes.x(), attributes.y(), attributes.width(), attributes.height()); |
+ *attributes.x(), *attributes.y(), *attributes.width(), *attributes.height()); |
if (tileBounds.isEmpty()) |
return nullptr; |