Hi, I tested following code in IE+ASV3.03, FF1.5 and Opera9.02, only FF1.5 failed to show pattern in the ellipse.
<?xml version="1.0"?> <svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"> <desc>Patterns</desc> <defs> <pattern id="notes" x="0" y="0" width="50" height="75" patternTransform="rotate(15)" patternUnits="userSpaceOnUse"> <ellipse cx="10" cy="30" rx="10" ry="5"/> <line x1="20" y1="30" x2="20" y2="0" stroke-width="3" stroke="black"/> <line x1="20" y1="0" x2="30" y2="5" stroke-width="3" stroke="black"/> </pattern> </defs> <g> <ellipse cx="175" cy="100" rx="125" ry="60" fill="url(#notes)" stroke="black" stroke-width="5"/> </g> </svg> So I checked the FF SVG support list on "http://www.mozilla.org/projects/svg/status.html" and found pattern is implemented. But in FF1.5 seperate page "http://developer.mozilla.org/en/docs/SVG_in_Firefox_1.5" it shows that pattern module is NOT implemented. As I know, the only new feature added above the support in Firefox 1.5 is <textPath. So I am confused: did FF1.5 support pattern or not? ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

