Index: Source/core/layout/style/SVGLayoutStyleDefs.cpp |
diff --git a/Source/core/layout/style/SVGLayoutStyleDefs.cpp b/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
index 8a0bfc441b94bdacef65b62b3fdfd6cc364d2771..4fe694b418151acf088b852308f1080bc40c47ad 100644 |
--- a/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
+++ b/Source/core/layout/style/SVGLayoutStyleDefs.cpp |
@@ -203,6 +203,8 @@ bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot |
StyleLayoutData::StyleLayoutData() |
: x(SVGLayoutStyle::initialX()) |
, y(SVGLayoutStyle::initialY()) |
+ , rx(SVGLayoutStyle::initialRx()) |
+ , ry(SVGLayoutStyle::initialRy()) |
{ |
} |
@@ -210,6 +212,8 @@ inline StyleLayoutData::StyleLayoutData(const StyleLayoutData& other) |
: RefCounted<StyleLayoutData>() |
, x(other.x) |
, y(other.y) |
+ , rx(other.rx) |
+ , ry(other.ry) |
{ |
} |
@@ -221,7 +225,9 @@ PassRefPtr<StyleLayoutData> StyleLayoutData::copy() const |
bool StyleLayoutData::operator==(const StyleLayoutData& other) const |
{ |
return x == other.x |
- && y == other.y; |
+ && y == other.y |
+ && rx == other.rx |
+ && ry == other.ry; |
} |
} |