Thank you for the hint. http://www.codedread.com/svgtest.svg is a useful page. Switches seem to work with feature strings in ASV/IE, but it seems that it is not supported to query feature strings using the DOM. It neither works with the 1.0 features strings, nor with the 1.1 features strings.
I tested with the following code: --- <?xml version="1.0" encoding="UTF-8"?> <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" onload="smilTest()"> <script type="text/ecmascript"> <![CDATA[ function smilTest() { var smil = document.implementation.hasFeature("org.w3c.svg.animation","1.0"); alert("SMIL="+smil); } ]]> </script> </svg> --- document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#SVG-animation","1.1"); doesn't work either. Andreas > > document.implementation.hasFeature("org.w3c.svg.animation","1.0") > > > > and ASV returns false. Is this the correct way to test feature > > strings in SVG 1.0? Opera returns true for both tests (1.0 and 1.1) > > > > You can see what feature strings are supported by displaying this page > in the browser of your choice: http://www.codedread.com/svgtest.svg > > Best regards > > Robert > ------------------------------------ ----- 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/

