indeksy dolne i indeksy górne w SVG

Próbuję wyświetlać indeksy podrzędne i indeksy górne za pomocą SVG przy użyciu następującego koduz tej strony

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<g>
    <text x = "10" y = "25" font-size = "20">
        <tspan>
            e = mc 
            <tspan baseline-shift = "super">2</tspan>
        </tspan>
        <tspan x = "10" y = "60">
            T 
            <tspan baseline-shift = "sub">i+2</tspan>
            =T 
            <tspan baseline-shift = "sub">i</tspan>
            + T 
            <tspan baseline-shift = "sub">i+1</tspan>
        </tspan>
    </text>
</g>

ale sub / indeksy górne nie są wyświetlane w IE lub Firefox. Czy to nie jest wdrożone, czy jest inny problem? [Czy widzisz poprawnie wyświetlane indeksy dolne?]

questionAnswers(1)

yourAnswerToTheQuestion