tests/arthur/data/1.2/13_01.svg
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 <?xml version="1.0"?>
       
     2 <svg width="8cm" height="4cm" viewBox="0 0 800 400"
       
     3      xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny">
       
     4   <desc>Example lingrad01 - fill a rectangle using a 
       
     5            linear gradient paint server</desc>
       
     6   <g>
       
     7     <defs>
       
     8       <linearGradient xml:id="MyGradient">
       
     9         <stop offset="0.05" stop-color="#F60" />
       
    10         <stop offset="0.95" stop-color="#FF6" />
       
    11       </linearGradient>
       
    12     </defs>
       
    13     <!-- Outline the drawing area in blue -->
       
    14     <rect fill="none" stroke="blue" 
       
    15           x="1" y="1" width="798" height="398"/>
       
    16     <!-- The rectangle is filled using a linear gradient paint server -->
       
    17     <rect fill="url(#MyGradient)" stroke="black" stroke-width="5"  
       
    18           x="100" y="100" width="600" height="200"/>
       
    19   </g>
       
    20 </svg>