Closed
Bug 765941
Opened 11 years ago
Closed 11 years ago
[tablet] Thumbnail doesn't update after following a links to an HTTP redirect
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox15 verified, firefox16 verified)
VERIFIED
FIXED
Firefox 16
People
(Reporter: mbrubeck, Assigned: mbrubeck)
References
Details
(Whiteboard: [tablet])
Attachments
(1 file)
1.22 KB,
patch
|
bnicholson
:
review+
akeybl
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
I noticed this while working on bug 765805, but it turns out to be a problem even without those patches. Steps to reproduce: 1. In native Fennec on a tablet, open http://limpet.net/mbrubeck/ 2. Open the tab sidebar. 3. Tap on the "Mozilla" link in the first paragraph on the page. Expected results: http://www.mozilla.org/en-US/firefox/fx/ opens. Actual results: http://www.mozilla.org/en-US/firefox/fx/ opens but the tab thumbnail does not update. This happens because GeckoApp.handleDocumentStop compares the URI from the StateChange message to the URI from the LocationChange message. However, the StateChange message uses the originalURI, so this breaks when there is a redirect.
Assignee | ||
Comment 1•11 years ago
|
||
What we really want to do here is make sure the same document is still loaded once the timeout fires. Instead of comparing the URI we get from the StateChange message, we should just get the URI from the tab before and after.
Attachment #634221 -
Flags: review?(bnicholson)
Comment 2•11 years ago
|
||
Comment on attachment 634221 [details] [diff] [review] patch Should the uri parameter be removed from handleDocumentStop since it is no longer used?
Attachment #634221 -
Flags: review?(bnicholson) → review+
Assignee | ||
Comment 3•11 years ago
|
||
Comment on attachment 634221 [details] [diff] [review] patch [Approval Request Comment] Bug caused by (feature/regressing bug #): bug 739407 User impact if declined: Thumbnails in tab sidebar show the wrong page after navigating to certain URLs. Testing completed (on m-c, etc.): Landed on inbound June 19 Risk to taking this patch (and alternatives if risky): Very low-risk two-line mobile-only fix. String or UUID changes made by this patch: None. (In reply to Brian Nicholson (:bnicholson) from comment #2) > Should the uri parameter be removed from handleDocumentStop since it is no > longer used? Good idea; done. https://hg.mozilla.org/integration/mozilla-inbound/rev/1a2aa554c055
Attachment #634221 -
Flags: approval-mozilla-aurora?
Comment 4•11 years ago
|
||
Comment on attachment 634221 [details] [diff] [review] patch [Triage Comment] Tablet UI bugs are approved for Aurora 15, as they carry little risk to mobile and none to desktop.
Attachment #634221 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment 5•11 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/1a2aa554c055
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 16
Assignee | ||
Comment 6•11 years ago
|
||
https://hg.mozilla.org/releases/mozilla-aurora/rev/909db3380762
status-firefox15:
--- → fixed
Updated•11 years ago
|
Whiteboard: [tablet]
Comment 7•11 years ago
|
||
Verified/fixed on: Nightly Fennec 16.0a1 (2012-07-11) Aurora Fennec 15.0a2 (2012-07-11) Using: Samsung Galaxy Tab (3.1) The tab thumbnail is updated now.
Updated•3 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•