A client of mine is reporting an issue in OSX/Safari 6.2 where a MaxCDN-hosted video loads fine on initial page load, but after clicking away from the page and returning using the browser’s “back” button, the video is blank.
I’ve tried extensively to replicate the issue, but having tested this on three separate Macs and also with Browserstack I just don’t see it. However it seems to be affecting all computers in the client’s office.
Here is an isolated test which exhibits the same problem: http://artworking.uk/tmp/video.html
When my client clicks on the link at the top of the page and then hits back, the video just won’t show up.
Googling the issue didn't shed any light unfortunately.
Full code is here:
<video loop autoplay>
<source type="video/mp4" src="http://p.epoch-vod-cdn.epochdesign.netdna-cdn.com/vod/epoch-vod-cdn.epochdesign/background.mp4">
<source type="video/webm" src="http://p.epoch-vod-cdn.epochdesign.netdna-cdn.com/vod/epoch-vod-cdn.epochdesign/background.webm">
<object class="background__video" type="application/x-shockwave-flash" data="http://p.epoch-vod-cdn.epochdesign.netdna-cdn.com/vod/epoch-vod-cdn.epochdesign/flashmediaelement-cdn.swf">
<param name="movie" value="http://p.epoch-vod-cdn.epochdesign.netdna-cdn.com/vod/epoch-vod-cdn.epochdesign/flashmediaelement-cdn.swf">
<param name="wmode" value="opaque">
<param name="flashvars" value="file=http://p.epoch-vod-cdn.epochdesign.netdna-cdn.com/vod/epoch-vod-cdn.epochdesign/background.flv&isvideo=true&controls=false&autoplay=true">
</object>
</video>