Renderização de formas SVG com bordas nítidas no IE9

O IE9 parece não honrar o SVGshape-rendering="crispEdges" attribute.

Aqui está um exemplo de SVG:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns="http://www.w3.org/2000/svg" height="600" id="svgroot" version="1.1" width="800" x="0" y="0">
<line style="stroke:#000000;stroke-width:1px;stroke-opacity:1" y2="300" y1="300" x2="750" x1="50" shape-rendering="crispEdges" />
</svg>

Aparece corretamente no Firefox e Safari, no entanto, a linha aparece manchada no IE9 e IE10 (visualização da plataforma)

Existe alguma solução alternativa para desativar o anti-aliasing no IE

Obrigado

questionAnswers(1)

yourAnswerToTheQuestion