| Index: Source/core/svg/SVGRect.h
|
| diff --git a/Source/core/svg/SVGRect.h b/Source/core/svg/SVGRect.h
|
| index 24d40c09d6e7d8a0f335c1c09c9c0f61f7f21752..7430757f75174d6f1e72c3928e1a78a28bb17053 100644
|
| --- a/Source/core/svg/SVGRect.h
|
| +++ b/Source/core/svg/SVGRect.h
|
| @@ -26,10 +26,12 @@
|
|
|
| namespace WebCore {
|
|
|
| +typedef FloatRect SVGRect;
|
| +
|
| template<>
|
| -struct SVGPropertyTraits<FloatRect> {
|
| - static FloatRect initialValue() { return FloatRect(); }
|
| - static String toString(const FloatRect& type)
|
| +struct SVGPropertyTraits<SVGRect> {
|
| + static SVGRect initialValue() { return SVGRect(); }
|
| + static String toString(const SVGRect& type)
|
| {
|
| StringBuilder builder;
|
| builder.append(String::number(type.x()));
|
|
|