Index: third_party/WebKit/WebCore/svg/SVGSVGElement.cpp |
=================================================================== |
--- third_party/WebKit/WebCore/svg/SVGSVGElement.cpp (revision 9391) |
+++ third_party/WebKit/WebCore/svg/SVGSVGElement.cpp (working copy) |
@@ -125,8 +125,8 @@ |
TransformationMatrix viewBox = viewBoxToViewTransform(w, h); |
double wDouble = w; |
double hDouble = h; |
- viewBox.map(_x, _y, &_x, &_y); |
- viewBox.map(w, h, &wDouble, &hDouble); |
+ viewBox.map(_x, _y, _x, _y); |
+ viewBox.map(w, h, wDouble, hDouble); |
return FloatRect::narrowPrecision(_x, _y, wDouble, hDouble); |
} |