summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/pattern-css-transform-ref.html
blob: 532166fe761ff81ee644235a8d95178ab8d36fd4 (plain)
1
2
3
4
5
6
7
8
9
10
<svg width="200" height="200">
  <defs>
    <pattern id="Pattern" x="0" y="0" width=".25" height=".25">
      <rect x="0" y="0" width="30" height="30" fill="skyblue"/>
      <rect x="40" y="40" width="10" height="10" fill="skyblue" />
    </pattern>
  </defs>

  <rect fill="url(#Pattern)" stroke="black" width="200" height="200"/>
</svg>