My SCADA widgets display correctly in Chrome and Firefox, but not in Internet Explorer (I tried IE 11). Maybe this is a general IE/.svg problem, or maybe I got something wrong, here is an extract from my .svg:
...
<g
    id="layer1-1-7"
    inkscape:label="Layer 1"
    transform="translate(90.285715,99.790733)">
    <!--{{state1}}-->
    <rect ... ng-class="{spotFree: state1=='free', spotOccupied: state1!='free'}" ... />
    ...
</g>
...
<style
    id="style3348"
    type="text/css">
    .spotOccupied {
        fill:#ff0000;
    }
    .spotFree {
        fill:#00ff00;
    }
</style>
...
So, really just a rectangle that's supposed to change color depending on the value of a property, which a link to the property of one of my devices. Works on Chrome/FF, but in IE, no style is applied at all (rectengle is black and doesn't change with the state of the prop). Is there something more/different I should do?