Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / transformed-text-pattern.html
blob5b3add571abb7514271d6a2efcc5f7a835ec75f4
1 <!DOCTYPE HTML>
2 This test passes if there is an A and a green square.<br>
3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" width="200px" height="200px">
4 <defs>
5 <pattern id="pattern" patternUnits="userSpaceOnUse" x="0" y="0" width="200px" height="200px" patternTransform="scale(10)">
6 <g transform="scale(0.1)">
7 <rect width="45px" height="45px" x="55px" y="55px" fill="green"/>
8 <text style="font-size: 60px; font-family: Verdana;" x="0" y="100">A</text>
9 </g>
10 </pattern>
11 </defs>
12 <rect width="400" height="200" x="0" y="0" style="fill:url(#pattern);"/>
13 </svg>