SVG <use> elementos en Chrome no se muestran

Chrome parece no mostrar<use> elementos en línea svg. Aquí hay un ejemplo (código abajo o verlo enhttp://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>

El círculo rojo no aparece en el svg en línea, pero sí aparece cuando el mismo svg está vinculado a través de una etiqueta de objeto. Safari, Firefox, Opera e Internet Explorer 9 muestran el svg en línea correctamente.

¿Estoy haciendo algo mal? ¿Se trata de un error conocido de Chrome (no lo he encontrado en la lista)? ¿Alguna solución?

Respuestas a la pregunta(2)

Su respuesta a la pregunta