Open
Bug 300802
Opened 20 years ago
Updated 2 years ago
Doing a LOAD_NORMAL or LOAD_LINK of the same URI may confuse fastback/bfcache
Categories
(Core :: DOM: Navigation, defect)
Tracking
()
NEW
mozilla1.9alpha1
People
(Reporter: bzbarsky, Unassigned)
References
Details
The fastback CanSavePresentation code has:
4825 // Only save presentation for "normal" loads and link loads. Anything else
4826 // probably wants to refetch the page, so caching the old presentation
4827 // would be incorrect.
4828 if (aLoadType != LOAD_NORMAL &&
4829 aLoadType != LOAD_HISTORY &&
4830 aLoadType != LOAD_LINK)
4831 return PR_FALSE;
During a pageload, the last time this is called is when we hit
nsDocShell::CreateContentViewer. _After_ this is called, we call OnLoadingSite,
which calls OnNewURI, which has the following code:
7058 if (equalUri &&
7059 (mLoadType == LOAD_NORMAL ||
7060 mLoadType == LOAD_LINK) &&
7061 !inputStream)
7062 {
7063 mLoadType = LOAD_NORMAL_REPLACE;
7064 }
After this we don't create a new SHEntry, etc, but we probably still save the
old viewer in the SHEntry, which could cause problems...
Comment 1•20 years ago
|
||
We actually do create a new history entry in this case, it just replaces the old
one in the history list. I think that's what the comment means by "won't mess
with the current SHEntry". So, I don't think anything _really_ bad will happen
here. We could add a matching Equals() check to avoid the work of caching the
presentation though, if we're just going to throw it away.
(The only case I can find where we reuse the old entry is with LOAD_REFRESH).
Comment 2•20 years ago
|
||
Moving out, I don't think this will break anything for the next release.
Target Milestone: --- → mozilla1.9alpha
Comment 3•17 years ago
|
||
Reassigning my bugs, since I'm not actually working on them.
Assignee: bryner → nobody
Component: History: Session → Document Navigation
QA Contact: history.session → docshell
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•