Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
2.5
-
None
-
None
-
Operating System: All
Platform: All
-
53431
Description
This issue is discussed in a recent fop-dev thread: http://marc.info/?l=fop-dev&m=133817089626596&w=2.
In simple terms, the following SVG element with two paths is rendered wrong in PDF (but not in PS). The second line appears dashed when it should not be. If the paths are flipped the rendering is correct.
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" overflow="auto">
<path d="M 0 0 L 100 0" fill="white" stroke="black" stroke-width="1" stroke-dasharray="5"/>
<path d="M 0 10 L 100 10" fill="white" stroke="red" stroke-width="3"/>
</svg>