Index: third_party/WebKit/WebCore/svg/graphics/SVGResourceClipper.cpp |
=================================================================== |
--- third_party/WebKit/WebCore/svg/graphics/SVGResourceClipper.cpp (revision 9391) |
+++ third_party/WebKit/WebCore/svg/graphics/SVGResourceClipper.cpp (working copy) |
@@ -72,7 +72,7 @@ |
if (clipData.bboxUnits) { |
TransformationMatrix transform; |
transform.translate(boundingBox.x(), boundingBox.y()); |
- transform.scale(boundingBox.width(), boundingBox.height()); |
+ transform.scaleNonUniform(boundingBox.width(), boundingBox.height()); |
clipPath.transform(transform); |
} |
context->addPath(clipPath); |