Html chromesvg动画标签

Html chromesvg动画标签,html,google-chrome,svg,svg-animate,Html,Google Chrome,Svg,Svg Animate,有人可以告诉我为什么会出现这种代码: <!DOCTYPE html> <html> <body> <svg xmlns="http://www.w3.org/2000/svg" width="800" height="800"> <defs id="defs"> <animate xlink:href="#poly_t1" attributeName="points" attributeType=

有人可以告诉我为什么会出现这种代码:

<!DOCTYPE html>
<html>
<body>
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800">

    <defs id="defs">
            <animate xlink:href="#poly_t1" attributeName="points" attributeType="XML" from="100,500 150,500 170,480 120,480" to="100,400 150,400 170,380 120,380" begin="0s" dur="3s" fill="freeze" ></animate>
            <animate xlink:href="#poly_t2" attributeName="points" attributeType="XML" from="100,500 150,500 150,500 100,500" to="100,500 150,500 150,400 100,400" begin="0s" dur="3s" fill="freeze" ></animate>
            <animate xlink:href="#poly_t3" attributeName="points" attributeType="XML" from="150,500 170,480 170,480 150,500" to="150,500 170,480 170,380 150,400" begin="0s" dur="3s" fill="freeze" ></animate>

    </defs>
    <g id="histo">
            <polygon id="poly_t1" points="100,500 150,500 170,480 120,480" fill="#cc0022" stroke="black"></polygon>
            <polygon id="poly_t2" points="100,500 150,500 150,500 100,500" fill="#cc0022" stroke="black" ></polygon>
            <polygon id="poly_t3" points="150,500 170,480 170,480 150,500" fill="#cc0022" stroke="black"></polygon>
    </g>

</svg>
</body>
</html>

我想可以在FF、Chrome 18至19、Safari、rekonq和更多浏览器上使用,但在Chrome 20至24上不能使用?

与相同的错误。是个合适的地方,看起来