I have a canvas-based app on Facebook wit a lot of images to load, so I'm creating them in JavaScript.
var img = new Image();
img.src = document.location.protocol + '//example.cloudfront.net/example_path/example.png';
The images are hosted on Amazon's CDN, their base URL is similar to:
https://example.cloudfront.net/example_path/example.png
The URL of the app, hosted in a cloud (EC2, also Amazon) is similar to:
https://cloud.example.com/path_to_app/
It works on most browsers, but not in IE (8).
In IE, if I inspect the src property of a created image, it shows the correct URL, but the browser makes the following request:
GET /path_to_app/proxy.php?url=https://example.cloudfront.net/example_path/example.png HTTPS/1.1
There is no proxy.php on my server, nor is the word 'proxy' present anywhere in my code, neither client- nor server-side.
Is there something I don't know about externally hosted content in an iframe canvas page, served over https?