Index: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
index c07f35ea9d869f9156f100d28fe3f9f79ed428ce..8affc18b2640cecdbca3788856f3d3253d8212ef 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
@@ -157,22 +157,19 @@ bool StyleMiscData::operator==(const StyleMiscData& other) const |
} |
StyleResourceData::StyleResourceData() |
- : clipper(SVGComputedStyle::initialClipperResource()) |
- , masker(SVGComputedStyle::initialMaskerResource()) |
+ : masker(SVGComputedStyle::initialMaskerResource()) |
{ |
} |
StyleResourceData::StyleResourceData(const StyleResourceData& other) |
: RefCounted<StyleResourceData>() |
- , clipper(other.clipper) |
, masker(other.masker) |
{ |
} |
bool StyleResourceData::operator==(const StyleResourceData& other) const |
{ |
- return clipper == other.clipper |
- && masker == other.masker; |
+ return masker == other.masker; |
} |
StyleInheritedResourceData::StyleInheritedResourceData() |