Details
-
Bug
-
Status: Open
-
Resolution: Unresolved
-
1.7
-
None
-
None
-
Operating System: All
Platform: PC
Description
When i try to change property named "class" on mouseover event, childs elements of <g> tag does not accept new css rules.
See attachment. In firefox browser is work correct, but in squiggle its not work...
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<style type="text/css"><![CDATA[
.myFirstStyle
.mySecondStyle
{ fill: red; stroke: blue; stroke-width: 20 } ]]></style>
</defs>
<g class="myFirstStyle">
<rect x="5" y="5" width="190" height="90" />
<set attributeName="class" to="mySecondStyle" begin="mouseover" end="mouseout"/>
</g>
</svg>