Test for bug 935994 r=jwatt,bas

This commit is contained in:
Robert Longson 2013-11-08 10:49:55 +00:00
parent 8bd86265e5
commit 5dfc52a1b5
2 changed files with 31 additions and 0 deletions

View File

@ -316,6 +316,7 @@ HTTP(..) == text-scale-03.svg text-scale-03-ref.svg
fails-if(OSX==10.8) == stroke-dasharray-01.svg stroke-dasharray-01-ref.svg # bug 896487
== stroke-dasharray-and-pathLength-01.svg pass.svg
== stroke-dasharray-and-text-01.svg stroke-dasharray-and-text-01-ref.svg
== stroke-dashoffset-01.svg pass.svg
== stroke-linecap-square-w-zero-length-segs-01.svg pass.svg
== stroke-linecap-square-w-zero-length-segs-02.svg pass.svg
== textPath-01.svg textPath-01-ref.svg

View File

@ -0,0 +1,30 @@
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
<title>Test that stroke-dashoffset is independent of stroke-width</title>
<!-- https://bugzilla.mozilla.org/show_bug.cgi?id=885585 -->
<rect width="100%" height="100%" fill="lime"/>
<path d="M10,30 h300" stroke="red" stroke-width="40" stroke-dashoffset="10" stroke-dasharray="50"/>
<path d="M10,70 h300" stroke="red" stroke-width="20" stroke-dashoffset="20" stroke-dasharray="50"/>
<path d="M10,95 h300" stroke="red" stroke-width="10" stroke-dashoffset="40" stroke-dasharray="50"/>
<!-- if the stroke-dashoffset is independent of the stroke width then these should cover what's above -->
<rect x="10" y="10" width="40" height="40" fill="lime"/>
<rect x="100" y="10" width="50" height="40" fill="lime"/>
<rect x="200" y="10" width="50" height="40" fill="lime"/>
<rect x="300" y="10" width="10" height="40" fill="lime"/>
<rect x="10" y="60" width="30" height="20" fill="lime"/>
<rect x="90" y="60" width="50" height="20" fill="lime"/>
<rect x="190" y="60" width="50" height="20" fill="lime"/>
<rect x="290" y="60" width="20" height="20" fill="lime"/>
<rect x="10" y="90" width="10" height="10" fill="lime"/>
<rect x="70" y="90" width="50" height="10" fill="lime"/>
<rect x="170" y="90" width="50" height="10" fill="lime"/>
<rect x="270" y="90" width="40" height="10" fill="lime"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB