Advertisement
Guest User

No expections, all works fine

a guest
Jul 10th, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.52 KB | None | 0 0
  1. <?xml version="1.0" standalone="no"?>
  2. <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  3.     <defs>
  4.         <pattern id="p1" x=".05" y=".05" width=".15" height=".15">
  5.             <rect x="0" y="0" width="20" height="20" fill="skyblue"/>
  6.         </pattern>
  7.         <pattern id="p2" width=".35" xlink:href="#p1">
  8.             <rect x="0" y="0" width="30" height="20" fill="green"/>
  9.         </pattern>
  10.     </defs>
  11.     <rect fill="url(#p2)" stroke="black" x="0" y="0" width="200" height="200"/>
  12. </svg>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement