Comment 11 for bug 1050938

Revision history for this message
su_v (suv-lp) wrote :

Reopening - AFAICT the committed patch contains changes which result in creating broken SVG code:

    <rect
       style="fill:#ff0000;stroke:#ffffff;stroke-width:0.25"
       id="rect9"
       width="200"
       height="200"
       x="100"
       y="100"
       onmouseover:="setAttribute('fill-opacity','1.0')"
       onmouseout:="setAttribute('fill-opacity',0.75)" />

The appended ':' in the names for SVG interactivity attributes do not comply with the SVG specification [1] and causes e.g. the mouseover commands to fail in the browser.

[1] <http://www.w3.org/TR/SVG11/script.html#GraphicsEvents>