My site is loaded over https: https://example.com.
I am trying to load an iframe from another of my sites via this:
<iframe src="https://example.org/path" width="800" height="800">
It works fine in Safari but in Chrome I am getting:
Mixed Content: The page at 'https://example.com' was loaded over HTTPS, but requested an insecure resource 'http://example.org/path'. This request has been blocked; the content must be served over HTTPS.
Why is it reporting a problem with http://example.org/path, when I am clearly referencing https://example.org/path in the iframe element?
If I load up https://example.org/path in Chrome, and examine the network tab, it seems that all the requests made while loading that page are https, so it isn't trying to load a http resource.
Is this a bug in Chrome (59)?