I have an editor which contains a div with contentEditable=true, where I let the user paste images from the clipboard, as well as change the image's SRC attribute from inside the editor.
In IE it's working fine, but in Firefox the image is automatically serialized on paste, i.e. the src attribute becomes something like data:image/png;base64,iVBORw0KGg...
How do I force Firefox to keep the original image source?