hi Mark > I believe this is an important step, since it is now possible to create an > XHTML+SVG document that will run unchanged in Opera, IE and Firefox.
ive found one problem in writing cross browser apps though, in Sidewinder you require a type attribute on script elements, but neither "text/javascript" nor "text/ecmascript" is supported in mozilla, and in opera the script bridge is completly broken... for mozilla its likely to change soon, see: https://bugzilla.mozilla.org/show_bug.cgi?id=267953 and another issue wich is not that much of a problem,but this should work: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>inline SVG test</title> </head> <body> <h1>SVG direkt in HTML eingebettet</h1> <hr/> <svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"> <circle cx="150" cy="150" r="100" style="fill:red"/> </svg> <hr/> </body> </html> but it seems svg elements allways have to be prefixed. sorry for posting the bugs first, i will post a working example later... cheers Holger ----- 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/ <*> 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/

