I'm having difficulties using SVG background with Opera.
When I zoom out the page, the background starts repeating on the x axis despite `background-repeat: repeat-y'
I created a codepen showing off the problem with the first online SVG image I found.
body {
background-image: url("http://www.anarchopedia.org/images/2/22/Heckert_GNU_white.svg");
background-repeat: repeat-y;
}
And here is a screenshot of Opera's 12.14 behavior on my computer:

The behavior exhibits for any SVG document with width="W" height="H" viewBox="0 0 W H" dimensioning.
I tried various values for width, height, viewBox and even preserveAspectRatio on the root <svg> element without much success so far.
Any hint please?
viewBoxsolves half of the problem: zoon in works, zoom out still broken. Too bad the CORE-33071 bug report isn't public