Closed
Bug 1177611
Opened 10 years ago
Closed 10 years ago
Adjust private browsing tab tray color
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox42 fixed, firefox43 verified, fennec42+)
RESOLVED
FIXED
Firefox 43
People
(Reporter: mcomella, Assigned: mcomella)
References
Details
Attachments
(9 files, 1 obsolete file)
41.13 KB,
image/png
|
antlam
:
feedback-
|
Details |
89.82 KB,
image/png
|
Details | |
40 bytes,
text/x-review-board-request
|
mcomella
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details |
40 bytes,
text/x-review-board-request
|
mcomella
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details |
49.61 KB,
image/png
|
Details | |
40 bytes,
text/x-review-board-request
|
mcomella
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details |
40 bytes,
text/x-review-board-request
|
mhaigh
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details |
40 bytes,
text/x-review-board-request
|
mhaigh
:
review+
Sylvestre
:
approval-mozilla-aurora+
|
Details |
69.41 KB,
image/png
|
Details |
When the private browsing tab tray is selected, we should highlight thumbnails in private_browsing_purple and the selected tab should use a private browsing purple indicator.
Follow-up to bug 864958.
Assignee | ||
Comment 1•10 years ago
|
||
This is a bit messy. The selected tab indicator is set as the background drawable on a TabWidget, with the foreground being the icon (e.g. private tabs mask). android:tint only affects the foreground so we can't use that. Tint drawables are API 21+ so we can't use that.
Then, I can set a color filter on the background drawable but the background drawable includes the pressed state (a solid color) and the color filter tints this in addition to the selected drawable.
Potential solutions:
1) Set the color filter only when the item is not pressed or focused. (perf implications?)
2) Have a new asset with purple indicators
3) Rewrite the widget (though the current setup does what Android does)
Assignee | ||
Comment 2•10 years ago
|
||
Attachment #8626709 -
Flags: feedback?(alam)
Assignee | ||
Comment 3•10 years ago
|
||
Anthony, re comment 2, this is the outcome pressed state (the tint is set as such, rather than solid, because of the alpha in the pressed state color). What do you think? I think it's either this, or include new assets (given the amount of time I should invest in this atm).
Comment 4•10 years ago
|
||
Comment on attachment 8626709 [details]
Tinted pressed state
I think we should leave it as is then if getting the underline indicator to be Private Browsing purple is not feasible. I'm OK if we don't do anything with this pressed state especially.
Are we goign to use this bug to track the "active-state box" (that selects the active tab) changing to our PB purple?
Attachment #8626709 -
Flags: feedback?(alam) → feedback-
Comment 5•10 years ago
|
||
Uploading design for context :)
Just to make sure, are we talking about the same things here Mike?
Flags: needinfo?(michael.l.comella)
Assignee | ||
Comment 6•10 years ago
|
||
Sorry, I meant to say as a side effect of the selected state being private browsing purple, the pressed state is tinted, like the screenshot. Is this okay? Otherwise, we can do the options in comment 1.
Flags: needinfo?(michael.l.comella) → needinfo?(alam)
Assignee | ||
Comment 7•10 years ago
|
||
Actually, I've got this working correctly with some really hacky code - I'll post a patch once it's worthy.
Flags: needinfo?(alam)
Comment 8•10 years ago
|
||
Friendly ping on the status here Mike? Getting the purple indicators will really round off the V1 UI updates.
Flags: needinfo?(michael.l.comella)
Assignee | ||
Comment 9•10 years ago
|
||
(In reply to Anthony Lam (:antlam) from comment #8)
> Friendly ping on the status here Mike? Getting the purple indicators will
> really round off the V1 UI updates.
Focusing on some sec bugs but I'll get to this right after. From what I've seen, the changes are not simple so I may be uncomfortable uplifting them - I've been considering backing out the other private browsing changes so this all lands in 42 with tracking protection (and reduces my burden a bit) - thoughts?
Flags: needinfo?(michael.l.comella) → needinfo?(alam)
Comment 10•10 years ago
|
||
AFAICT we're releasing these UI updates to PB in 42
Flags: needinfo?(alam) → needinfo?(michael.l.comella)
Assignee | ||
Comment 11•10 years ago
|
||
I backed the private browsing changes out of 41 (see bug 864958 comment 51 which ties it all together).
Flags: needinfo?(michael.l.comella)
Assignee | ||
Comment 12•10 years ago
|
||
Anthony, what should the color of the tabs thumbnail background be when in private mode and it's pressed?
Flags: needinfo?(alam)
Assignee | ||
Comment 13•10 years ago
|
||
Bug 1177611 - Change private browsing tablet thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Attachment #8638849 -
Flags: review?(mhaigh)
Assignee | ||
Comment 14•10 years ago
|
||
Bug 1177611 - Update ThemedView template to import the correct LWT. r=mhaigh
I believe I just used an IDE to update the files last time, meaning the
template never got updated.
Attachment #8638850 -
Flags: review?(mhaigh)
Assignee | ||
Comment 15•10 years ago
|
||
Bug 1177611 - Add ThemedFrameLayout. r=mhaigh
Attachment #8638851 -
Flags: review?(mhaigh)
Assignee | ||
Comment 16•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Bug 1177611 - Change private browsing tablet thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Assignee | ||
Comment 17•10 years ago
|
||
Comment on attachment 8638850 [details]
MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Bug 1177611 - Update ThemedView template to import the correct LWT. r=mhaigh
I believe I just used an IDE to update the files last time, meaning the
template never got updated.
Assignee | ||
Comment 18•10 years ago
|
||
Comment on attachment 8638851 [details]
MozReview Request: Bug 1177611 - Add ThemedFrameLayout. r=mhaigh
Bug 1177611 - Add ThemedFrameLayout. r=mhaigh
Assignee | ||
Comment 19•10 years ago
|
||
Still TODO:
* Phone thumbnail color
* Tab selector color
Comment 20•10 years ago
|
||
(In reply to Michael Comella (:mcomella) from comment #12)
> Anthony, what should the color of the tabs thumbnail background be when in
> private mode and it's pressed?
I think we can keep it the same for now and see how that looks.
Flags: needinfo?(alam)
Comment 21•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
https://reviewboard.mozilla.org/r/14137/#review12771
::: mobile/android/base/resources/drawable/tab_thumbnail.xml:56
(Diff revision 2)
> <corners android:radius="3dp"/>
It'd be nice to clean up a bit whilst we're here :)
::: mobile/android/base/resources/layout-v11/new_tablet_tabs_item_cell.xml:52
(Diff revision 2)
> - <RelativeLayout android:layout_width="wrap_content"
> + <!-- We set state_private on this View dynamically. -->
-> We set state_private on this View dynamically in TabsGridLayout
Attachment #8638849 -
Flags: review?(mhaigh)
Comment 22•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
https://reviewboard.mozilla.org/r/14137/#review12773
Ship It!
Attachment #8638849 -
Flags: review+
Updated•10 years ago
|
Attachment #8638850 -
Flags: review?(mhaigh) → review+
Comment 23•10 years ago
|
||
Comment on attachment 8638850 [details]
MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
https://reviewboard.mozilla.org/r/14139/#review12775
Ship It!
Updated•10 years ago
|
Attachment #8638851 -
Flags: review?(mhaigh) → review+
Comment 24•10 years ago
|
||
Comment on attachment 8638851 [details]
MozReview Request: Bug 1177611 - Add ThemedFrameLayout. r=mhaigh
https://reviewboard.mozilla.org/r/14141/#review12777
I'd like to see those formatting changes made before landing
::: mobile/android/base/widget/ThemedFrameLayout.java:19
(Diff revision 2)
> + implements LightweightTheme.OnChangeListener {
Formatting - align extends and implements.
::: mobile/android/base/widget/ThemedFrameLayout.java:20
(Diff revision 2)
> + private LightweightTheme mTheme;
Aren't we trying to get rid of the 'm' prefix?
::: mobile/android/base/widget/ThemedFrameLayout.java:33
(Diff revision 2)
> + private boolean mAutoUpdateTheme; // always false if there's no theme.
Personal preference here, but I'm a fan of comments above the lines they refer to.
::: mobile/android/base/widget/ThemedFrameLayout.java:62
(Diff revision 2)
> + if (mAutoUpdateTheme)
I'm not a fan of the bracket-less single line if statements; I believe the common formatting for this codebase is to include them regardless of the number of lines
::: mobile/android/base/widget/ThemedFrameLayout.java:76
(Diff revision 2)
> + final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
Why "+ 1"?
Assignee | ||
Comment 25•10 years ago
|
||
https://reviewboard.mozilla.org/r/14137/#review12771
> It'd be nice to clean up a bit whilst we're here :)
I'm of the opinion that we shouldn't remove the WS unless we actually change the line because it obscures `hg blame` and makes it harder to figure out when those lines were added.
I'm going to leave it in, unless you're particularly passionate about it.
Assignee | ||
Comment 26•10 years ago
|
||
https://reviewboard.mozilla.org/r/14141/#review12777
To be explicit, I'm dropping all of these suggestions because this code is based off the template I keep mentioning, ThemedView.java.frag.
> Formatting - align extends and implements.
This is auto-generated - we align in the template but aligning in the generated output would be a lot of work.
> Aren't we trying to get rid of the 'm' prefix?
Convention in the template - I filed bug 1188198.
> Personal preference here, but I'm a fan of comments above the lines they refer to.
Template.
And agree to disagree. ;)
> I'm not a fan of the bracket-less single line if statements; I believe the common formatting for this codebase is to include them regardless of the number of lines
Agree, but it's the template - this could be a good source of good first/next bugs. :P
> Why "+ 1"?
We're adding a space in the drawable state array for the state we're just about to merge, iirc.
Assignee | ||
Comment 27•10 years ago
|
||
(In reply to Anthony Lam (:antlam) from comment #20)
> > Anthony, what should the color of the tabs thumbnail background be when in
> > private mode and it's pressed?
>
> I think we can keep it the same for now and see how that looks.
To be explicit, this is the pressed color - is this what you want to keep the same?
Flags: needinfo?(alam)
Assignee | ||
Comment 28•10 years ago
|
||
Going to build on bug 1187538 to avoid the ThemedFrameLayout and just use the fact that all of these wrappers extend RelativeLayout.
Depends on: 1187538
Assignee | ||
Updated•10 years ago
|
Attachment #8638849 -
Attachment description: MozReview Request: Bug 1177611 - Change private browsing tablet thumbnail highlight to @color/private_browsing_purple. r=mhaigh → MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Assignee | ||
Comment 29•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Assignee | ||
Updated•10 years ago
|
Attachment #8638850 -
Attachment description: MozReview Request: Bug 1177611 - Update ThemedView template to import the correct LWT. r=mhaigh → MozReview Request: Bug 1177611 - Make tab indicator purple in private tab. r=mhaigh
Assignee | ||
Comment 30•10 years ago
|
||
Comment on attachment 8638850 [details]
MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Bug 1177611 - Make tab indicator purple in private tab. r=mhaigh
Assignee | ||
Updated•10 years ago
|
Attachment #8638851 -
Attachment is obsolete: true
Assignee | ||
Updated•10 years ago
|
Attachment #8638849 -
Flags: review+ → review?(mhaigh)
Assignee | ||
Updated•10 years ago
|
Attachment #8638850 -
Flags: review+ → review?(mhaigh)
Comment 31•10 years ago
|
||
(In reply to Michael Comella (:mcomella) from comment #27)
> Created attachment 8639632 [details]
> Tab thumbnail pressed color
>
> (In reply to Anthony Lam (:antlam) from comment #20)
> > > Anthony, what should the color of the tabs thumbnail background be when in
> > > private mode and it's pressed?
> >
> > I think we can keep it the same for now and see how that looks.
>
> To be explicit, this is the pressed color - is this what you want to keep
> the same?
Ah, no sorry. I thought you meant something else.
Can we apply the same overlay to our new purple outline boxes?
Flags: needinfo?(alam) → needinfo?(michael.l.comella)
Assignee | ||
Comment 32•10 years ago
|
||
(In reply to Anthony Lam (:antlam) from comment #31)
> Can we apply the same overlay to our new purple outline boxes?
What overlay? The pressed state is a color in this case, not an alpha value.
Flags: needinfo?(michael.l.comella) → needinfo?(alam)
Assignee | ||
Comment 33•10 years ago
|
||
(In reply to Michael Comella (:mcomella) from comment #32)
> What overlay? The pressed state is a color in this case, not an alpha value.
via IRC we noticed the pressed state of the non-private thumbnails is actually an alpha value (#BF) over the non-pressed color - we're going to try using the same alpha value on private tabs.
Flags: needinfo?(alam)
Assignee | ||
Comment 34•10 years ago
|
||
Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Attachment #8640229 -
Flags: review?(mhaigh)
Assignee | ||
Comment 35•10 years ago
|
||
Martyn, the tab indicator color is not overridden in versions less than Lollipop - any ideas?
Flags: needinfo?(mhaigh)
Assignee | ||
Comment 36•10 years ago
|
||
(In reply to Michael Comella (:mcomella) from comment #35)
> Martyn, the tab indicator color is not overridden in versions less than
> Lollipop - any ideas?
Nothing that I can find is overridden or changed by different resource configurations.
Comment 37•10 years ago
|
||
Comment on attachment 8640229 [details]
MozReview Request: Bug 1177611 - Copy tabs_panel_indicator -> tabs_strip_indicator. r=mhaigh
https://reviewboard.mozilla.org/r/14299/#review13163
Ship It!
Attachment #8640229 -
Flags: review?(mhaigh) → review+
Updated•10 years ago
|
Flags: needinfo?(mhaigh)
Assignee | ||
Comment 38•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Assignee | ||
Comment 39•10 years ago
|
||
Comment on attachment 8638850 [details]
MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Attachment #8638850 -
Attachment description: MozReview Request: Bug 1177611 - Make tab indicator purple in private tab. r=mhaigh → MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
Assignee | ||
Comment 40•10 years ago
|
||
Comment on attachment 8640229 [details]
MozReview Request: Bug 1177611 - Copy tabs_panel_indicator -> tabs_strip_indicator. r=mhaigh
Bug 1177611 - Copy tabs_panel_indicator -> tabs_strip_indicator. r=mhaigh
The next commits will modify tabs_panel_indicator so that unrelated views will
change.
Attachment #8640229 -
Attachment description: MozReview Request: Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh → MozReview Request: Bug 1177611 - Copy tabs_panel_indicator -> tabs_strip_indicator. r=mhaigh
Assignee | ||
Comment 41•10 years ago
|
||
Bug 1177611 - Set tabs panel indicator to purple when private. r=mhaigh
Attachment #8644640 -
Flags: review?(mhaigh)
Assignee | ||
Comment 42•10 years ago
|
||
Bug 1177611 - Move non-private browsing indicator to static drawables. r=mhaigh
This is not strictly necessary, but is a step towards removing the
tab_indicator_selected*.png assets (bug 1192048).
Attachment #8644641 -
Flags: review?(mhaigh)
Assignee | ||
Updated•10 years ago
|
Attachment #8640229 -
Flags: review+ → review?(mhaigh)
Assignee | ||
Comment 43•10 years ago
|
||
Found a much easier approach. :)
Patches should be final here, Martyn.
Comment 45•10 years ago
|
||
Comment on attachment 8644640 [details]
MozReview Request: Bug 1177611 - Set tabs panel indicator to purple when private. r=mhaigh
https://reviewboard.mozilla.org/r/15271/#review13927
Ship It!
::: mobile/android/base/resources/values/dimens.xml:14
(Diff revision 1)
> + <!-- This value is (browser_toolbar_height - 6dp). Note that this
Why 6dp? Maybe link a bug for future reference
::: mobile/android/base/resources/values-large-v11/dimens.xml:11
(Diff revision 1)
> + <!-- This value is (browser_toolbar_height - 6dp). Note that this
ditto
::: mobile/android/base/tabs/TabsPanel.java:143
(Diff revision 1)
> - mTabWidget.addTab(R.drawable.tabs_private, R.string.tabs_private);
> + ((ThemedImageButton) mTabWidget.addTab(R.drawable.tabs_private, R.string.tabs_private)).setPrivateMode(true);
Currently this has two distinct functions of add tab and set tab to private - I'd prefer to split this in to two lines to increase readability.
::: mobile/android/base/widget/IconTabWidget.java:41
(Diff revision 1)
> - public void addTab(int imageResId, int stringResId) {
> + public View addTab(int imageResId, int stringResId) {
Lets make these arguments final whilst we're touching this line.
Attachment #8644640 -
Flags: review?(mhaigh) → review+
Updated•10 years ago
|
Attachment #8644641 -
Flags: review?(mhaigh) → review+
Comment 46•10 years ago
|
||
Comment on attachment 8644641 [details]
MozReview Request: Bug 1177611 - Move non-private browsing indicator to static drawables. r=mhaigh
https://reviewboard.mozilla.org/r/15273/#review13933
Ship It!
Assignee | ||
Comment 47•10 years ago
|
||
https://reviewboard.mozilla.org/r/15271/#review13927
> Why 6dp? Maybe link a bug for future reference
6dp is the height of indicator - I added a comment.
Assignee | ||
Comment 48•10 years ago
|
||
url: https://hg.mozilla.org/integration/fx-team/rev/807faeb41e1509d97f03c670da514ea5debac6dd
changeset: 807faeb41e1509d97f03c670da514ea5debac6dd
user: Michael Comella <michael.l.comella@gmail.com>
date: Fri Jul 24 17:00:40 2015 -0700
description:
Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
url: https://hg.mozilla.org/integration/fx-team/rev/5e6d9c0b3e4ec961eea492b6340cbcaa48d68257
changeset: 5e6d9c0b3e4ec961eea492b6340cbcaa48d68257
user: Michael Comella <michael.l.comella@gmail.com>
date: Tue Jul 28 16:49:42 2015 -0700
description:
Bug 1177611 - Update tabs tray pressed pb color. r=mhaigh
url: https://hg.mozilla.org/integration/fx-team/rev/bc6afa12b6dbb858a804f09a4b96986fe64da8e5
changeset: bc6afa12b6dbb858a804f09a4b96986fe64da8e5
user: Michael Comella <michael.l.comella@gmail.com>
date: Thu Aug 06 15:10:58 2015 -0700
description:
Bug 1177611 - Copy tabs_panel_indicator -> tabs_strip_indicator. r=mhaigh
The next commits will modify tabs_panel_indicator so that unrelated views will
change.
url: https://hg.mozilla.org/integration/fx-team/rev/6d44161d2bdfd4b4036b69987729944c61eb66cd
changeset: 6d44161d2bdfd4b4036b69987729944c61eb66cd
user: Michael Comella <michael.l.comella@gmail.com>
date: Thu Aug 06 15:23:28 2015 -0700
description:
Bug 1177611 - Set tabs panel indicator to purple when private. r=mhaigh
url: https://hg.mozilla.org/integration/fx-team/rev/3536377b0dcb5f3d62d37440efdf8c188dd57e43
changeset: 3536377b0dcb5f3d62d37440efdf8c188dd57e43
user: Michael Comella <michael.l.comella@gmail.com>
date: Thu Aug 06 15:31:00 2015 -0700
description:
Bug 1177611 - Move non-private browsing indicator to static drawables. r=mhaigh
This is not strictly necessary, but is a step towards removing the
tab_indicator_selected*.png assets (bug 1192048).
Assignee | ||
Comment 49•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
These are all "Ship it" on reviewboard.
Attachment #8638849 -
Flags: review?(mhaigh) → review+
Assignee | ||
Updated•10 years ago
|
Attachment #8638850 -
Flags: review?(mhaigh) → review+
Assignee | ||
Updated•10 years ago
|
Attachment #8640229 -
Flags: review?(mhaigh) → review+
Assignee | ||
Comment 50•10 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
This request applies to all changesets that were pushed.
Approval Request Comment
[Feature/regressing bug #]: Tracking protection initiative in 42
[User impact if declined]:
Users will have an orange-themed tab tray, which is inconsistent with the purple theme we generally use for private browsing (i.e. polish).
[Describe test coverage new/current, TreeHerder]: Tested locally
[Risks and why]: These are small changes but there are a lot of them so it's possible I missed some edge case. In particular, with Android fragmentation, it's possible my changes don't work on some configuration of Android (I tested API 5+ and < 5 on tablet and phone). However, my changes are largely UI so the consequences, outside of NullPointerException and similar crashes, are low (inconsistent experience)
[String/UUID change made/needed]: None
Attachment #8638849 -
Flags: approval-mozilla-aurora?
Comment 51•10 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/807faeb41e15
https://hg.mozilla.org/mozilla-central/rev/5e6d9c0b3e4e
https://hg.mozilla.org/mozilla-central/rev/bc6afa12b6db
https://hg.mozilla.org/mozilla-central/rev/6d44161d2bdf
https://hg.mozilla.org/mozilla-central/rev/3536377b0dcb
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox43:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 43
Comment 52•10 years ago
|
||
Verified as fixed using:
Device: LG Nexus 4 (Android 5.0)
Build: Firefox for Android 43.0a1 (2015-08-17)
Updated•10 years ago
|
Updated•9 years ago
|
status-firefox42:
--- → affected
Comment 53•9 years ago
|
||
Comment on attachment 8638849 [details]
MozReview Request: Bug 1177611 - Change private browsing thumbnail highlight to @color/private_browsing_purple. r=mhaigh
Tracking protection is an important feature of 42, taking this improvement fix.
Attachment #8638849 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Updated•9 years ago
|
Attachment #8638850 -
Flags: approval-mozilla-aurora+
Updated•9 years ago
|
Attachment #8640229 -
Flags: approval-mozilla-aurora+
Updated•9 years ago
|
Attachment #8644640 -
Flags: approval-mozilla-aurora+
Updated•9 years ago
|
Attachment #8644641 -
Flags: approval-mozilla-aurora+
https://hg.mozilla.org/releases/mozilla-aurora/rev/70da6494624c
https://hg.mozilla.org/releases/mozilla-aurora/rev/f7520ca1b034
https://hg.mozilla.org/releases/mozilla-aurora/rev/15c6bb581166
https://hg.mozilla.org/releases/mozilla-aurora/rev/024d7a27df7e
https://hg.mozilla.org/releases/mozilla-aurora/rev/1afdf536cb3b
Updated•4 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
•