Closed
Bug 1085390
Opened 11 years ago
Closed 11 years ago
Replace video in html will not be refreshed
Categories
(Core :: Audio/Video, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 850891
People
(Reporter: plundermail, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0
Build ID: 20140923175406
Steps to reproduce:
<!DOCTYPE HTML>
<html>
<head>
<title>Replacetest</title>
</head>
<body>
<video id="video" width="100%" height="100%" autoplay autobuffer loop="loop" onloadedmetadata="this.muted = true" style="position:fixed; left:0%; top:0%;z-index:2; background-color:rgba(255,255,255,0); overflow:hidden;visibility:visible" onended="this.play()">
<source src="test\somevideo.ogg" type="video/ogg"/>
</video>
</body>
</html>
Copy text above, create a new html and paste it.
Create a folder named 'test' and place a video in ogg format in it.
Name the video 'somevideo' or change the name in the html to match your file.
Copy the file and folder to C:\inetpub\wwwroot or map it via IIS (or make it otherwise available for http).
Call the html in FireFox (http not file!).
Go in the folder 'test' and replace the video with an other video with the same name.
Refresh the site in FireFox.
Actual results:
The first video is shown.
Refresh does not work (neither F5 nor Ctrl + F5).
Clear Cache also makes no difference.
Only closing FireFox and open it again refreshes the video.
Expected results:
The second video shoud be shown when the site is refreshed.
Comment 1•11 years ago
|
||
><source src="test\somevideo.ogg"
Should be changed to <source src="test/somevideo.ogg"
Updated•11 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → INVALID
You are right, / is better but thats not the point.
Have you tested that it works now?
Because it did not.
Comment 3•11 years ago
|
||
I have tested it but i was a little bit confused by your instructions.
STR:
1) load the example over http
2) replace the ogg/ogv file on the server
3) reload/force reload/clear the cache and load the page again in Firefox and it still shows the old video
confirming for now but I think that this is a dupe
Status: UNCONFIRMED → NEW
Component: General → Video/Audio
Ever confirmed: true
Updated•11 years ago
|
Status: NEW → RESOLVED
Closed: 11 years ago → 11 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•