Elementos <use> do SVG no Chrome não exibidos

O Chrome parece não exibir<use> elementos em inline svg. Aqui está um exemplo (código abaixo ou visualize-o emhttp://www.bobwyttenbach.com/chromeuse.html):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chrome use-tag bug?</title>
</head>
<body>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px" height="200px" viewBox="0 0 200 200">
    <defs>
        <g id="test1">
            <circle cx="100" cy="100" r="50" fill="red"/>
        </g>
    </defs>
    <g>
        <rect x="0.5" y="0.5" width="199" height="199" stroke="black" fill="none"/>
        <use xlink:href="#test1" x="0" y="0"/>
    </g>
</svg>
<p>Above is inline svg with a use tag; below is the same svg linked through an object tag. Below is correct.</p>
<object data="chromeuse.svg" width="200" height="200"></object>
</body>
</html>

O círculo vermelho não aparece no svg embutido, mas aparece quando o mesmo svg é vinculado através de uma tag de objeto. Safari, Firefox, Opera e Internet Explorer 9 exibem o svg embutido corretamente.

Estou fazendo algo errado? Este é um bug conhecido do Chrome (eu não o encontrei listado)? Qualquer solução alternativa?

questionAnswers(2)

yourAnswerToTheQuestion