Closed
Bug 731333
Opened 13 years ago
Closed 13 years ago
Fennec uses old intent when restoring from OOM
Categories
(Firefox for Android Graveyard :: General, defect, P1)
Tracking
(blocking-fennec1.0 soft)
RESOLVED
FIXED
Firefox 13
Tracking | Status | |
---|---|---|
blocking-fennec1.0 | --- | soft |
People
(Reporter: bnicholson, Assigned: bnicholson)
References
Details
Attachments
(1 file)
1.37 KB,
patch
|
mfinkle
:
review+
|
Details | Diff | Splinter Review |
STR:
1) Open Fennec and add some site to home screen (e.g., wikipedia.org)
2) Navigate to google.com
2) Push home and run oom-fennec
3) Click the bookmarked wikipedia link
Fennec will restore with wikipedia in the foreground and google in the background, as expected. However, the background tab (google) should be delayed until the user clicks it. Instead, both tabs are immediately loaded when Fennec is launched.
Assignee | ||
Updated•13 years ago
|
blocking-fennec1.0: --- → ?
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → bnicholson
Assignee | ||
Comment 1•13 years ago
|
||
The actual bug here is that we are reusing the intent we had originally before the OOM kill. It looks like this was only one of several symptoms caused by this bug (see also bug 716681 and 730301).
Status: NEW → ASSIGNED
Summary: Background tab not delayed when clicking external link with OOM session restore → Fennec uses old intent when restoring from OOM
Assignee | ||
Updated•13 years ago
|
Priority: -- → P1
Assignee | ||
Comment 3•13 years ago
|
||
After Fennec is killed from OOM, clicking an external link to reopen Fennec will call onNewIntent() before onResume() (since Fennec still has its original intent from before the OOM). This means that the following will happen:
- onNewIntent() is called with the new intent. It has the external URL in the intent data, and it fires an event to load the tab
- onResume() is called. It uses getIntent(), which is the intent that was used to first launch Fennec (before the OOM), rather than the intent given to onNewIntent(). This can cause a number of problems depending on the original intent. If the original intent had an external URL passed to it, this means it will get duplicated (bug 716681). Also, there will be a race condition for which tab is shown (bug 730301) since onNewIntent() opens the tab independently from the initialization.
To fix this, we want the intent given to us to be used for initialization, so we need to set the intent to the one given to us in onNewIntent().
Attachment #601788 -
Flags: review?(blassey.bugs)
Comment 4•13 years ago
|
||
Comment on attachment 601788 [details] [diff] [review]
patch
I wish we had a way to test these types of changes
Attachment #601788 -
Flags: review?(blassey.bugs) → review+
Assignee | ||
Comment 5•13 years ago
|
||
Comment 6•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 13
Comment 7•13 years ago
|
||
(In reply to Mark Finkle (:mfinkle) from comment #4)
> Comment on attachment 601788 [details] [diff] [review]
> patch
>
> I wish we had a way to test these types of changes
JMaher, I have a little utility that allocates memory until fennec dies here (https://hg.mozilla.org/users/blassey_mozilla.com/oom-fennec/) Is that something we can do with an existing test suite? Perhaps robocop can bring itself to the foreground (such that it won't get killed by the OOM) then kick off this utility? From there we'd need to write some tests for fennec OOM restart behavior.
Comment 8•13 years ago
|
||
We run robocop inside the fennec process, so if fennec OOM's then we are out of luck.
Another thing is we would need to somehow install this tool on the devices and figure out a way to launch it when needed.
I think we can figure something out, but it won't be simple and probably wouldn't make sense to plug into our tegra framework
Updated•13 years ago
|
blocking-fennec1.0: ? → soft
Updated•5 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
•