Hi, if I have an SVG element in front of some other DOM elements, Safari 3 is letting mouse events pass through the SVG and reach the underlying DOM elements (good), Firefox 3 and Opera aren't (bad). Is there anything I can do to have Firefox behave like Safari?
This example demonstrates the problem. It's OK that the polygon blocks the link, but I don't want the svg element to eat my mouse events. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg"> <body> <svg:svg pointer-events="none" style="position:absolute; top:0; left:0; width:100px; height:50px;"> <svg:polygon pointer-events="all" points="5,5 70,5 45,45" style="fill:blue; opacity:0.7;"/> </svg:svg> <a href="#">try to click this link</a> </body> </html> Thanks! Christian ----- 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/

