Comment 0 for bug 1413964

Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

If you visit http://mikeasoft.com/~mike/testdata/ you'll see an image which is constructed from a data URI (e.g. data:image/jpeg;base64,<encoded data>)

When requesting this image's URI via "contextualData.href" the returned URI has been treated as if it was a relative link, the returned data has the domain, and path added to it, forming an incorrect URI like:

http://mikeasoft.com/~mike/testdata/data:image/jpeg;base64,<encoded data>

When it should just be returning the data URI:

data:image/jpeg;base64,<encoded data>