Vernari-Corami wrote: > My environment is 99% win2k and: > - always more Mozilla 1.7 (let's say 80% of times); > - always less IE6; > - beginning to discover FireFox (only a couple of weeks);
Good :) I definitely encourage you to use FF as your daily browser, but for MozSVG stuff it's not there yet. When it's in sync again this list will be informed. > Then: > - Ok, for the filters... > - svgDocument is obviously an error; > - I didn't know that "createElement" was forbidden, I knew it's less "generic" than > the -NS...do you confirm that? It's not forbidden, if you want to create elements in no namespace and with no local name, it works. The problem is that you can't create SVG elements with it because SVG elements have a namespace. The fact that ASV let's you get away with it is, quite frankly, one of the most horrendous bugs in it. In order to create elements in a namespace -- as all SVG elements are -- you have to use createElementNS(). I would also recommend using it when you create elements with no namespace as it creates a far more consistent tree. -- Robin Berjon ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- 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/

