Elementy SVG <use> w Chrome nie są wyświetlane

Chrome wydaje się nie wyświetlać<use> elementy inline svg. Oto przykład (kod poniżej lub zobacz nahttp://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>

Czerwone kółko nie pojawia się w inline svg, ale pojawia się, gdy ten sam svg jest połączony przez tag obiektu. Safari, Firefox, Opera i Internet Explorer 9 wszystkie poprawnie wyświetlają svg.

czy robię coś źle? Czy to znany błąd Chrome (nie znalazłem go na liście)? Jakieś obejścia?

questionAnswers(2)

yourAnswerToTheQuestion