I want to create an svg file that happens to have parallel black squars that are adjacent to each other and have no space between them. I created a simple svg file like this:
<!DOCTYPE html>
<html>
<body>
<svg height="210" width="400">
<path d="M150 0 L200 0 200 100 L150 100 Z" />
<path d="M200 0 L250 0 250 100 L200 100 Z" />
</svg>
</body>
</html>
When you zoom in/out then sometimes a thin white line is rendered between the two black rectangles, even though it shouldn't be. It is not, that there is a real defined white line, but you can see that the two black rectangles are separated, which souldn't be the case. The resulting image should look like one black square indepent of the zoom level.
That is the case in every renderer I testet (Adobe Illustrator, Inkscape, Firefox). The embeddet pice of code was tested in http://www.w3schools.com/svg/#
I have searched for the problem but could not find an description of this anywhere else.
Is this really a render issue or am I missing something?