blob: b8dd8928c2e5afa89b9a65132daa9f8e172809d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--
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 the start point and direction of dashing on rect</title>
<!-- https://bugzilla.mozilla.org/show_bug.cgi?id=1122578 -->
<rect width="100%" height="100%" fill="lime"/>
<rect x="20" y="20" width="100" height="60" fill="none" stroke="red" stroke-width="10" stroke-dasharray="120,10000"/>
<path d="M20,20 h100 v20" fill="none" stroke="lime" stroke-width="10"/>
<rect x="20" y="100" width="100" height="60" fill="none" stroke="red" stroke-width="10" stroke-dasharray="120,10000" rx="10" ry="10"/>
<path d="M30,100 h80 a10,10 0 0 1 10,10 v25" fill="none" stroke="lime" stroke-width="14"/>
</svg>
|