WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
NEW
19422
Distinct redirects from the same link do not create distinct history items
https://bugs.webkit.org/show_bug.cgi?id=19422
Summary
Distinct redirects from the same link do not create distinct history items
Cameron Zwarich (cpst)
Reported
2008-06-06 17:48:02 PDT
If you click "Random Comic" on
http://catandgirl.com/
and then click it again, it does not create a new history item. Thus, going back goes back the front page, no matter how many random comics were viewed. I suspect this is because the random comic link is the same on each page, but redirects the user to a different page each time.
Attachments
Proposed patch
(5.53 KB, patch)
2008-06-10 19:04 PDT
,
Cameron Zwarich (cpst)
beidson
: review-
Details
Formatted Diff
Diff
Test case
(4.24 KB, patch)
2008-06-12 00:41 PDT
,
Cameron Zwarich (cpst)
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Cameron Zwarich (cpst)
Comment 1
2008-06-10 01:39:36 PDT
The problem is that shouldTreatURLAsSameAsCurrent() is saying that the "random comic" link is the same as the current link. The check in shouldTreatURLAsSameAsCurrent() is return url == m_currentHistoryItem->url() || url == m_currentHistoryItem->originalURL(); If I remove the second part of this test, then the bug is fixed, with two caveats: 1) There is a back/forward history item, but no item in the history item. 2) If I click the link while it is redirecting, it seems I can make URLs appear in the history of the form "
http://cantandgirl.com./
..." with a period after ".com". The URL works, but I am pretty sure it isn't the URL being given by the server. The check has been there at least since revision 2963:
http://trac.webkit.org/changeset/2963
If no one responds with a reason why this change is obviously a bad idea, I will just submit a patch with test cases for review.
Cameron Zwarich (cpst)
Comment 2
2008-06-10 19:04:02 PDT
Created
attachment 21615
[details]
Proposed patch Here it is, with a test case. The problem with the History menu isn't fixed, but I can work on that next if this change is acceptable.
Cameron Zwarich (cpst)
Comment 3
2008-06-10 23:07:24 PDT
***
Bug 7814
has been marked as a duplicate of this bug. ***
Brady Eidson
Comment 4
2008-06-11 10:10:16 PDT
Comment on
attachment 21615
[details]
Proposed patch So, I *think* this might break history with certain types of redirect chains. Imagine visiting URL A, which redirects to URL B, which redirects back to A. With this patch, I think the single navigation would result in 2 history items, which isn't correct. I discussed this with Cameron on irc, and I he's trying to write a test to replicate my theoretical scenario
Cameron Zwarich (cpst)
Comment 5
2008-06-12 00:41:08 PDT
Created
attachment 21654
[details]
Test case Here is a test case for the existing behaviour. It passes with my patch applied. I put it up for review so I can land the test before working on this bug some more. I am only dumping the back/forward list; is there any way to also dump global history? Since that is one of the issues with this bug, I would like to be able to test it. Interestingly enough, this test case seems to expose a bug in WebKit. If I add a layoutTestController.queueBackNavigation(1) to the final page, it performs no navigation. Should I file this bug separately?
Darin Adler
Comment 6
2008-06-13 14:12:43 PDT
Comment on
attachment 21654
[details]
Test case r=me
Cameron Zwarich (cpst)
Comment 7
2008-06-13 15:34:05 PDT
Landed in
r34525
.
Cameron Zwarich (cpst)
Comment 8
2008-06-24 14:40:09 PDT
Comment on
attachment 21654
[details]
Test case Clearing review.
Graham Perrin
Comment 9
2008-11-01 19:51:04 PDT
Alongside this
bug 19422
I am reading
https://bugs.webkit.org/show_bug.cgi?id=18701
> Clicking on redirect link stores wrong entry in history
Alexey Proskuryakov
Comment 10
2010-06-11 11:11:30 PDT
This is still an issue in Safari 5. Brady, do you still think that the patch is incorrect, given the test case?
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug