I am building a web application intended to be loaded on the Wii Internet Channel, which is essentially Opera 9.3.
It has support for SVG, but they don't seem to scale. The graphics always render at their "optimal" sizes, no matter what the width and height are set to.
If I set the height/width with CSS, the space the image element takes up in the page changes, but the SVG graphic still renders behind everything (with no positioning or z-index set).
If I set the height/width via tag attributes, the image is simply cropped to fit those dimensions.
Is there an alternative method for scaling SVG, that might be supported on the Wii Internet Channel?
Edit: It seems to be SVG dependent. For example, this SVG can scale to whatever I set:
<img src="http://www.w3.org/Graphics/SVG/Test/20061213/svggen/fonts-elem-01-t.svg" width="200" />
Whereas this SVG seems to be fixed:
<img src="http://upload.wikimedia.org/wikipedia/commons/6/6b/Bitmap_VS_SVG.svg" width="200" />
Any thoughts on the differences between these two?