No way to prevent dragging of Images from SVGs http://people.mozilla.com/~vladimir/demos/photos.svg We allow the user to drag images from photos.svg, which is not what the author intended. The author makes no attempt to prevent us from doing so, but we don't offer him a way to do so even if he wanted to. In HTML you prevent image drag using: ondragstart="return false;" (borrowed from IE) This doesn't actually work in FireFox however. And in SVG we don't sign up for any ondragstart listener. Maybe there is some other way to prevent image drags that I'm missing here? I don't think copying the ondragstart IE behavior into SVG makes much sense.
This all comes about because Firefox doesn't support dragging images from SVG to start with. (That's their bug.)
Hum... it seems onmousedown="return false;" prevents drags in both Safari and Firefox. SVG content included.
This problem is gone in trunk since a while. Images in SVGs can no longer be dragged by default.