Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / stroke / non-scaling-stroke-pattern.svg
blob9bfadd87f415ad1d6478b3a6ee1297b1f0730ad4
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <!-- Test should result in a 200*200 green square with a 20px light-green stroke. -->
3 <style type="text/css" >
4 <![CDATA[
5 rect, path {
6 stroke-width: 20;
7 vector-effect: non-scaling-stroke;
9 ]]>
10 </style>
11 <defs>
12 <pattern id="pattern" x="0" y="0" width="5" height="20" patternUnits="userSpaceOnUse">
13 <path d="M0 0 L 5 0 L 5 1 L 0 1" stroke="#080" />
14 <rect x="0" y="20" width="5" height="10" stroke="#080" />
15 </pattern>
16 </defs>
17 <g transform="scale(2)">
18 <rect x="20" y="20" width="100" height="100" fill="green" stroke="url(#pattern)" stroke-width="20"/>
19 </g>
20 </svg>