这个简单的SVG将在FF中显示(胖线),但在Chrome中不会显示任何内容(在Linux上的v58.0.3029.110上尝试过)。
为什么会这样?
一般来说,浏览器中是否存在SVG错误?我试图创建一个简单的图表库,但如果我得到这种不稳定的行为,我就不知道该怎么做。
<!doctype html>
<html>
<head>
<title>Works on FF, doesn't work on Chrome</title>
</head>
<body>
<svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="-1 1.007230, 2 0.000840" preserveAspectRatio="none" style="border: 1px solid blue;">
<line x1="0" x2="0" y1="1.0073" y2="1.008" stroke-width="1" stroke="black" />
</svg>
</body>
</html>
<svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="-1 1.007230, 2 0.000840" preserveAspectRatio="none" style="border: 1px solid blue;">
<line x1="0" x2="0" y1="1.0073" y2="1.008" stroke-width="1" stroke="black" />
</svg>
&#13;