Index: Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
diff --git a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
index a68aa6ac17ae694956d857e3bf8fd331228ffe55..4f59f088da2d9d65d17a42554c9b6d8f9510c81a 100644 |
--- a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
+++ b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
@@ -124,15 +124,6 @@ static void writeIfNotDefault(TextStream& ts, const char* name, ValueType value, |
writeNameValuePair(ts, name, value); |
} |
-TextStream& operator<<(TextStream& ts, const FloatRect& r) |
-{ |
- ts << "at (" << TextStream::FormatNumberRespectingIntegers(r.x()); |
- ts << "," << TextStream::FormatNumberRespectingIntegers(r.y()); |
- ts << ") size " << TextStream::FormatNumberRespectingIntegers(r.width()); |
- ts << "x" << TextStream::FormatNumberRespectingIntegers(r.height()); |
- return ts; |
-} |
- |
TextStream& operator<<(TextStream& ts, const AffineTransform& transform) |
{ |
if (transform.isIdentity()) |