Index: Source/core/rendering/svg/SVGPathData.cpp |
diff --git a/Source/core/rendering/svg/SVGPathData.cpp b/Source/core/rendering/svg/SVGPathData.cpp |
index bd8827093d1af4df493ef1119c1641013e69130f..935e89f7cd427bb9c406400cd6257e71a3c33bb6 100644 |
--- a/Source/core/rendering/svg/SVGPathData.cpp |
+++ b/Source/core/rendering/svg/SVGPathData.cpp |
@@ -133,10 +133,8 @@ static void updatePathFromRectElement(SVGElement* element, Path& path) |
rx = ry; |
else if (!hasRy) |
ry = rx; |
- // FIXME: We currently enforce using beziers here, as at least on CoreGraphics/Lion, as |
- // the native method uses a different line dash origin, causing svg/custom/dashOrigin.svg to fail. |
- // See bug https://bugs.webkit.org/show_bug.cgi?id=79932 which tracks this issue. |
- path.addRoundedRect(FloatRect(x, y, width, height), FloatSize(rx, ry), Path::PreferBezierRoundedRect); |
+ |
+ path.addRoundedRect(FloatRect(x, y, width, height), FloatSize(rx, ry)); |
return; |
} |