Possible Duplicate:
Chrome gives a warning when loading an SVG in an <img>
I have a weird problem. the live demo of this problem is located at beta.netbarg.com
The problem is that, I have written a SVG file as the background property of an element. here is the stylesheet:
#lightburst {
...
background: url('../nb2img/non-sprites/backlight.svg');
...
}
And According to this link and this one I have configured Apache to send Content-Type: image/svg+xml
header for my SVG file.
The weird part:
- On Windows, everything is OK.
- On Linux (Ubuntu 10.4 - Chromium-browser/11) console logs a weird warning:
Resource interpreted as Image but transferred with MIME type image/svg+xml
What's this? Is this a bug? how am I supposed to handle this warning?