Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-no-pixelation.svg
blob9ae4424b90c8a920896f66f08b761e7317b942c3
1 <svg xmlns="http://www.w3.org/2000/svg"
2 width="400px" height="400px">
4 <defs>
5 <pattern id="fail"
6 x="0" y="0"
7 width="30" height="30"
8 patternUnits="userSpaceOnUse">
10 <circle cx="15" cy="15" r="15" fill="#f00" />
11 </pattern>
12 </defs>
14 <rect x="-40" y="-40" width="80" height="80" fill="url(#fail)"
15 transform="translate(200,200) scale(4)" />
16 </svg>