Reputation: 264
I have a weird problem with firefox only.
To put it simply, I have an html (jsp) page with a <video>
tag in it.
If I monitor how the page is loading with firebug, I can see that, at the end of the loading, a request is made to the "base href" of my page.
I have a base href tag like this : <base href="http://localhost:8080/CHU/" />
and the call is "GET /CHU/" (see screenshot below)
I can see the video being loaded and be ready to play before that bogus call happens!
If I remove everything in the video tag, like this :<video></video>
the bogus call still happens.
For some reason this call will update the session and mess up with other stuff. So I have to prevent that to happen.
Any ideas?
Regards, Michel
PS: works fine with chrome and IE
Upvotes: 1
Views: 156
Reputation: 1516
If have exactly the same problem using latest firefox, html5-video and base-href.
<base href="http://jsfiddle.net/38h8b">
<video width="320" height="180" src="http://media.sublimevideo.net/vpa/ms_360p.mp4" autoplay="true"></video>
Upvotes: 0
Reputation: 21
I have a site that shows a very similar behaviour. I use jwplayer 6.5, Ff 22 and disabled the flash add in. A video tag is created, then an error is thrown. A trace on the net shows a call to the root of the site (base). It looks as if the video play were attempted with an empty source. The longtail guys claim it's not their script causing this, and I tend to believe them. It's only their handler that catches the error. So I believe I indeed seeing the same symptom. Funny thing is: it only happens if the page was generated by Typo3. A static copy of the site with the same scripts does not show this. Tricky. If I find anything, I'll let you know. Might solve your issue as well.
Upvotes: 2