Closed
Bug 88104
Opened 24 years ago
Closed 24 years ago
Cache writes content over old data, not fully replacing it.
Categories
(Core :: Networking: Cache, defect)
Tracking
()
People
(Reporter: amla70, Assigned: gordon)
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.1+) Gecko/20010627
BuildID: 2001062704
Using a localhost I write a page, and then it is trimmed down some lines.
Now when I press the reload button in mozilla, in view source I can read the end
of the original file. (sometimes it is visible on screen, that's how I realized
about it)
Reproducible: Always
Steps to Reproduce:
1. Put a page in a localhost (I think it also fails with remote servers), and
view it with mozilla
2. Remove some data from the page to make it smaller (about 20 chars for example)
3. Press Refresh in mozilla, and the view the source
Example for original data:
<html><head><title></title></head>
<body>
test line1<br>
test line2<br>
</body>
</html>
then cut last test line:
<html><head><title></title></head>
<body>
test line1<br>
</body>
</html>
--------------------
Actual Results:
<html><head><title></title></head>
<body>
test line1<br>
</body>
</html>
body>
</html>
Expected Results:
<html><head><title></title></head>
<body>
test line1<br>
</body>
</html>
Pressing Shift-Refresh correctly reloads the page discarding old content.
This works fine with both IE5 and NS4.5 so it shouldn't be due to my server.
Comment 1•24 years ago
|
||
This is a dupe, but I can't find the bug number right now.
Comment 2•24 years ago
|
||
*** This bug has been marked as a duplicate of 79983 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•