Issue_id
stringlengths 7
7
| Summary
stringlengths 10
255
| Description
stringlengths 12
2.29k
| Description_all
stringlengths 51
2.34k
| Priority
stringclasses 5
values | Status
stringclasses 6
values | Resolution
stringclasses 9
values | Created
stringdate 2020-01-02 13:46:45
2025-03-05 20:35:25
| Resolved
stringdate 2020-01-14 02:57:17
2025-03-05 21:47:22
| token_count
int16 12
511
| Priority_label
int16 1
5
|
---|---|---|---|---|---|---|---|---|---|---|
1620731
|
Extra argument passed to loadProcessScript in MainProcessSingleton.jsm
|
https://searchfox.org/mozilla-central/rev/e7fc3314b0dfcc61fb7dc7a09f9555660a2eafc5/toolkit/components/processsingleton/MainProcessSingleton.jsm#34-38 passes three args to `loadProcessScript`, but that function only takes two args.
|
Extra argument passed to loadProcessScript in MainProcessSingleton.jsm https://searchfox.org/mozilla-central/rev/e7fc3314b0dfcc61fb7dc7a09f9555660a2eafc5/toolkit/components/processsingleton/MainProcessSingleton.jsm#34-38 passes three args to `loadProcessScript`, but that function only takes two args.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-07 01:49:28+00:00
|
2020-03-10 21:49:29+00:00
| 110 | 3 |
1620858
|
Cannot specify multiple flags of DllBlockInfo::Flags
|
Since `DllBlockInfo::mFlags` is defined as `enum`, using multiple flags in `DLL_BLOCKLIST_ENTRY` causes the compile error like this:
```
0:05.58 u:/mz/mozilla-central/obj-x86_64-pc-mingw32/dist/include\mozilla/WindowsDllBlocklistLegacyDefs.h(22,67): error: cannot initialize a member subobject of type 'enum Flags' with an rvalue of type 'int'
0:05.58 DLL_BLOCKLIST_ENTRY("database.dll", MAKE_VERSION(27, 3, 0, 59), DllBlockInfo::BLOCK_WIN8_ONLY | DllBlockInfo::BROWSER_PROCESS_ONLY)
0:05.58 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
|
Cannot specify multiple flags of DllBlockInfo::Flags Since `DllBlockInfo::mFlags` is defined as `enum`, using multiple flags in `DLL_BLOCKLIST_ENTRY` causes the compile error like this:
```
0:05.58 u:/mz/mozilla-central/obj-x86_64-pc-mingw32/dist/include\mozilla/WindowsDllBlocklistLegacyDefs.h(22,67): error: cannot initialize a member subobject of type 'enum Flags' with an rvalue of type 'int'
0:05.58 DLL_BLOCKLIST_ENTRY("database.dll", MAKE_VERSION(27, 3, 0, 59), DllBlockInfo::BLOCK_WIN8_ONLY | DllBlockInfo::BROWSER_PROCESS_ONLY)
0:05.58 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
|
P3
|
NEW
|
2020-03-08 19:38:37+00:00
|
2020-05-21 01:10:10+00:00
| 278 | 3 |
|
1620921
|
view image on canvas in new tab / window no longer works
|
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
* find a canvas image, e.g. here https://tcdw.github.io/servalclock/
* right click on the image
* middle click "View Image" menu entry; or click+left click, shift+left click
Actual results:
Firefox says the URL is invalid.
Expected results:
Firefox should display the image in the newly opened tab / window.
150:21.81 INFO: Last good revision: 398b5e6b2dab72d5be60bc81b0fda2d2c27bfb25
150:21.81 INFO: First bad revision: b9740bd7bf8f1a0656c09a88fe6d7ee00586ee60
150:21.81 INFO: Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=398b5e6b2dab72d5be60bc81b0fda2d2c27bfb25&tochange=b9740bd7bf8f1a0656c09a88fe6d7ee00586ee60
Being able to view images in new tabs is useful to view images closely or simultaneously without the need to save images on disk. The "Copy Image" is not available on canvas so it's useful for copying images too.
|
view image on canvas in new tab / window no longer works User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
* find a canvas image, e.g. here https://tcdw.github.io/servalclock/
* right click on the image
* middle click "View Image" menu entry; or click+left click, shift+left click
Actual results:
Firefox says the URL is invalid.
Expected results:
Firefox should display the image in the newly opened tab / window.
150:21.81 INFO: Last good revision: 398b5e6b2dab72d5be60bc81b0fda2d2c27bfb25
150:21.81 INFO: First bad revision: b9740bd7bf8f1a0656c09a88fe6d7ee00586ee60
150:21.81 INFO: Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=398b5e6b2dab72d5be60bc81b0fda2d2c27bfb25&tochange=b9740bd7bf8f1a0656c09a88fe6d7ee00586ee60
Being able to view images in new tabs is useful to view images closely or simultaneously without the need to save images on disk. The "Copy Image" is not available on canvas so it's useful for copying images too.
|
P1
|
RESOLVED
|
FIXED
|
2020-03-09 07:52:23+00:00
|
2020-03-25 13:39:27+00:00
| 378 | 1 |
1621013
|
address bar url invalid on history.pushState with percent encoding
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0
Steps to reproduce:
1. Navigate to https://www.mozilla.org/
2. Open developer tools and type the following in the console:
history.pushState({}, 'my title', 'https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1')
Actual results:
The address bar displays https://www.mozilla.org?key[]=value0&key[]=value1
Refreshing the page loads https://www.mozilla.org?key[]=value0&key[]=value1
The URL now contains invalid characters according to RFC 7230 and RFC 3986, web servers such as Apache Tomcat >= 9 will not accept the URL.
Expected results:
The address bar displays https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1
Refreshing the page loads https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1
This is the behavior as Chrome, Edge and Safari.
|
address bar url invalid on history.pushState with percent encoding User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0
Steps to reproduce:
1. Navigate to https://www.mozilla.org/
2. Open developer tools and type the following in the console:
history.pushState({}, 'my title', 'https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1')
Actual results:
The address bar displays https://www.mozilla.org?key[]=value0&key[]=value1
Refreshing the page loads https://www.mozilla.org?key[]=value0&key[]=value1
The URL now contains invalid characters according to RFC 7230 and RFC 3986, web servers such as Apache Tomcat >= 9 will not accept the URL.
Expected results:
The address bar displays https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1
Refreshing the page loads https://www.mozilla.org?key%5B%5D=value0&key%5B%5D=value1
This is the behavior as Chrome, Edge and Safari.
|
P3
|
NEW
|
2020-03-09 15:12:34+00:00
|
2020-05-12 00:52:08+00:00
| 324 | 3 |
|
1621023
|
The “Sponsored card” from the “Collection Promo” section is wrongly redisplayed on a new tab after being dismissed using “Delete from Pocket” or ”Archive in Pocket” options
|
**[Affected Versions]:**
- Firefox Nightly 75.0a1 Build ID: 20200309091841
**[Affected Platforms]:**
- Windows 10 x64
- macOS 10.15
- Ubuntu Linux 18.04 x86
**[Prerequisites]:**
- Have the value of the pref `browser.newtabpage.activity-stream.discoverystream.spocs-endpoint` set to `https://spocs.getpocket.com/spocs?site=1116390&country=US®ion=US-CA`.
- Have the value of the pref `browser.search.region` set to `US`.
- Be logged into "Pocket".
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites and open a new tab.
2. Click the “Open menu” button of a “Collection” card and select the “Save to Pocket” option.
3. For the same card, click the “Open menu” button and select “Delete from Pocket” option.
5. Open a new tab and observe the displayed cards.
**[Expected results]:**
- A new “Sponsored card” has replaced the previously deleted “Sponsored card”.
**[Actual results]:**
- The previously deleted “Sponsored card” is displayed.
**[Notes]:**
- This issue is also reproducible for the “Archive in Pocket” option.
- This issue is not reproducible for the “Dismiss” option.
- This issue is not reproducible after another tab is opened.
- The `browser.newtabpage.activity-stream.discoverystream.isCollectionDismissible` pref does not affect the results for either of its values.
- Attached is a recording of the issue.
|
The “Sponsored card” from the “Collection Promo” section is wrongly redisplayed on a new tab after being dismissed using “Delete from Pocket” or ”Archive in Pocket” options **[Affected Versions]:**
- Firefox Nightly 75.0a1 Build ID: 20200309091841
**[Affected Platforms]:**
- Windows 10 x64
- macOS 10.15
- Ubuntu Linux 18.04 x86
**[Prerequisites]:**
- Have the value of the pref `browser.newtabpage.activity-stream.discoverystream.spocs-endpoint` set to `https://spocs.getpocket.com/spocs?site=1116390&country=US®ion=US-CA`.
- Have the value of the pref `browser.search.region` set to `US`.
- Be logged into "Pocket".
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites and open a new tab.
2. Click the “Open menu” button of a “Collection” card and select the “Save to Pocket” option.
3. For the same card, click the “Open menu” button and select “Delete from Pocket” option.
5. Open a new tab and observe the displayed cards.
**[Expected results]:**
- A new “Sponsored card” has replaced the previously deleted “Sponsored card”.
**[Actual results]:**
- The previously deleted “Sponsored card” is displayed.
**[Notes]:**
- This issue is also reproducible for the “Archive in Pocket” option.
- This issue is not reproducible for the “Dismiss” option.
- This issue is not reproducible after another tab is opened.
- The `browser.newtabpage.activity-stream.discoverystream.isCollectionDismissible` pref does not affect the results for either of its values.
- Attached is a recording of the issue.
|
P2
|
NEW
|
2020-03-09 15:26:13+00:00
|
2022-10-12 00:03:05+00:00
| 443 | 2 |
|
1621031
|
The “Collection Promo” section is wrongly redisplayed on the first opened new tab after being dismissed using the “Delete from Pocket”/”Archive in Pocket” options
|
**[Affected Versions]:**
- Firefox Nightly 75.0a1 Build ID: 20200309091841
**[Affected Platforms]:**
- Windows 10 x64
- macOS 10.15
- Linux Mint 19.2 Tina
**[Prerequisites]:**
- Have the value of the pref `browser.newtabpage.activity-stream.discoverystream.spocs-endpoint` set to `https://spocs.getpocket.com/spocs?site=1116390&country=US®ion=US-CA`.
- Have the value of the pref `browser.search.region` set to `US`.
- Be logged into Pocket.
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites and open a new tab.
2. Click the “Open menu” button of a Collection card and select the “Save to Pocket” option.
3. For the same card, click the “Open menu” button and select the “Delete from Pocket” option.
4. Repeat steps 2 and 3 for three more cards to dismiss the section.
5. Open a new tab and observe the behavior.
**[Expected results]:**
- The “Collections Promo” section is no longer displayed.
**[Actual results]:**
- The “Collections Promo” section is redisplayed.
**[Notes]:**
- This issue is also reproducible if using “Archive in Pocket” instead of “Delete from Pocket” in the steps above.
- The section is dismissed after opening another new tab.
- This issue is not reproducible if the “Dismiss” option of a card is used instead.
- This issue is not reproducible if the section is dismissed from the section “Dismiss” button.
- The `browser.newtabpage.activity-stream.discoverystream.isCollectionDismissible` pref does not affect the results for either of its values.
- Possibly caused by Bug 1621023.
- Attached is a recording of the issue.
|
The “Collection Promo” section is wrongly redisplayed on the first opened new tab after being dismissed using the “Delete from Pocket”/”Archive in Pocket” options **[Affected Versions]:**
- Firefox Nightly 75.0a1 Build ID: 20200309091841
**[Affected Platforms]:**
- Windows 10 x64
- macOS 10.15
- Linux Mint 19.2 Tina
**[Prerequisites]:**
- Have the value of the pref `browser.newtabpage.activity-stream.discoverystream.spocs-endpoint` set to `https://spocs.getpocket.com/spocs?site=1116390&country=US®ion=US-CA`.
- Have the value of the pref `browser.search.region` set to `US`.
- Be logged into Pocket.
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites and open a new tab.
2. Click the “Open menu” button of a Collection card and select the “Save to Pocket” option.
3. For the same card, click the “Open menu” button and select the “Delete from Pocket” option.
4. Repeat steps 2 and 3 for three more cards to dismiss the section.
5. Open a new tab and observe the behavior.
**[Expected results]:**
- The “Collections Promo” section is no longer displayed.
**[Actual results]:**
- The “Collections Promo” section is redisplayed.
**[Notes]:**
- This issue is also reproducible if using “Archive in Pocket” instead of “Delete from Pocket” in the steps above.
- The section is dismissed after opening another new tab.
- This issue is not reproducible if the “Dismiss” option of a card is used instead.
- This issue is not reproducible if the section is dismissed from the section “Dismiss” button.
- The `browser.newtabpage.activity-stream.discoverystream.isCollectionDismissible` pref does not affect the results for either of its values.
- Possibly caused by Bug 1621023.
- Attached is a recording of the issue.
|
P4
|
RESOLVED
|
WONTFIX
|
2020-03-09 15:58:59+00:00
|
2022-07-07 14:12:23+00:00
| 489 | 4 |
1621177
|
Two errors are recorded in the EventLog if -log-launcher-error is used
|
This is a trivial issue. If we launch firefox.exe with the `-log-launcher-error` option, we record the same error twice because `PostErrorToLog` is called in the main thread and the thread which sends a ping.
|
Two errors are recorded in the EventLog if -log-launcher-error is used This is a trivial issue. If we launch firefox.exe with the `-log-launcher-error` option, we record the same error twice because `PostErrorToLog` is called in the main thread and the thread which sends a ping.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-10 00:50:34+00:00
|
2022-02-17 05:17:18+00:00
| 73 | 3 |
1621185
|
Address bar search results that come from equating N and Ñ are not highlighted in Spanish locales
|
Steps to reproduce:
1. Install the Spanish (Spain) version of Firefox 74
2. Go to https://en.wikipedia.org/wiki/Jalape%C3%B1o
3. Open a new tab and type "jalapeno" in the address bar
Expected results: The Wikipedia article "Jalapeño" appears in the search results and the word "Jalapeño" is in bold, the same as in the English version of Firefox.
Actual results: The page does appear in the search results, but the word "Jalapeño" is not in bold.
|
Address bar search results that come from equating N and Ñ are not highlighted in Spanish locales Steps to reproduce:
1. Install the Spanish (Spain) version of Firefox 74
2. Go to https://en.wikipedia.org/wiki/Jalape%C3%B1o
3. Open a new tab and type "jalapeno" in the address bar
Expected results: The Wikipedia article "Jalapeño" appears in the search results and the word "Jalapeño" is in bold, the same as in the English version of Firefox.
Actual results: The page does appear in the search results, but the word "Jalapeño" is not in bold.
|
P3
|
VERIFIED
|
FIXED
|
2020-03-10 01:40:28+00:00
|
2020-03-16 09:20:10+00:00
| 152 | 3 |
1621189
|
"Switch to Tab" at end of line in search results box not visible for long titles
|
As shown in the attachment, if you do a search and the title is long enough, the "— Switch to Tab" in green doesn't show up in the live search results box.
The text should be truncated sooner to allow this to fit.
|
"Switch to Tab" at end of line in search results box not visible for long titles As shown in the attachment, if you do a search and the title is long enough, the "— Switch to Tab" in green doesn't show up in the live search results box.
The text should be truncated sooner to allow this to fit.
|
P5
|
RESOLVED
|
WORKSFORME
|
2020-03-10 02:17:48+00:00
|
2020-08-25 17:10:33+00:00
| 71 | 5 |
1621301
|
Firefox does not load webpages from the new tab page since 74.0 update
|
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Open Firefox
Firefox updates to 74.0
Load homepage (Facebook)
Open new tab page, click any of the frequently visited websites on the new tab page.
visit said pages by typing in URL
repeat the process multiple time including opening and closing Firefox
Actual results:
Any link visited from the new tab page does not load. All of which load a blank page with the "loading animation" indefinitely.
Manually entering the URL works flawlessly
Expected results:
Firefox should begin loading webpages from the new tab page and should not show the loading animation with a blank page indefinitely.
|
Firefox does not load webpages from the new tab page since 74.0 update User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Open Firefox
Firefox updates to 74.0
Load homepage (Facebook)
Open new tab page, click any of the frequently visited websites on the new tab page.
visit said pages by typing in URL
repeat the process multiple time including opening and closing Firefox
Actual results:
Any link visited from the new tab page does not load. All of which load a blank page with the "loading animation" indefinitely.
Manually entering the URL works flawlessly
Expected results:
Firefox should begin loading webpages from the new tab page and should not show the loading animation with a blank page indefinitely.
|
P2
|
RESOLVED
|
WORKSFORME
|
2020-03-10 14:25:23+00:00
|
2022-08-10 09:06:09+00:00
| 191 | 2 |
1621424
|
Bypass PopUp Blocking via simulate click
|
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Steps to reproduce:
1. Go to https://jsfiddle.net/keer0k/bvyd2xfo/3/
2. Run it
3. Click in "click me"
4. A new window will be open and, after a few seconds, more 2 windows will be opened too
Actual results:
3 windows are opening
Expected results:
only one window needs to open
|
Bypass PopUp Blocking via simulate click User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Steps to reproduce:
1. Go to https://jsfiddle.net/keer0k/bvyd2xfo/3/
2. Run it
3. Click in "click me"
4. A new window will be open and, after a few seconds, more 2 windows will be opened too
Actual results:
3 windows are opening
Expected results:
only one window needs to open
|
P1
|
RESOLVED
|
WORKSFORME
|
2020-03-10 20:47:28+00:00
|
2024-06-21 11:08:57+00:00
| 150 | 1 |
1621458
|
Global getUserMedia sharing indicator breaks tab dragging in the tab bar
|
¡Hola!
I'm not 100% sure of exact STR here but this has been problematic for a few days now.
Pre-requisites:
- Have a few tabs open
- Make the microphone and camera orange indicator appear. Trying to join a meeting in https://meet.google.com/ makes it appear in my case.
Steps:
- Drag the tabs around and try to reposition them.
Actual results:
- The tabs behave erratically when dragged around the microphone/camera indicator.
- The URL bar becomes un-clickable.
- Middle clicking the tabs doesn't close them.
Expected results:
The tabs behave correctly. The URL bar is clickable and tabs can be closed by middle clicking.
¡Gracias!
Alex
|
Global getUserMedia sharing indicator breaks tab dragging in the tab bar ¡Hola!
I'm not 100% sure of exact STR here but this has been problematic for a few days now.
Pre-requisites:
- Have a few tabs open
- Make the microphone and camera orange indicator appear. Trying to join a meeting in https://meet.google.com/ makes it appear in my case.
Steps:
- Drag the tabs around and try to reposition them.
Actual results:
- The tabs behave erratically when dragged around the microphone/camera indicator.
- The URL bar becomes un-clickable.
- Middle clicking the tabs doesn't close them.
Expected results:
The tabs behave correctly. The URL bar is clickable and tabs can be closed by middle clicking.
¡Gracias!
Alex
|
P3
|
RESOLVED
|
FIXED
|
2020-03-10 22:17:48+00:00
|
2022-01-26 22:11:06+00:00
| 177 | 3 |
1621469
|
Prevent accepting the proxy / network settings dialog if "manual proxy configuration" is selected but no address/port combination is filled in for any proxy
|
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
Configure a proxy via "Manual proxy configuration"; configure a SOCKS proxy, but forget to set the address (so that you only set the port). Save the settings.
Browse the Internet.
Actual results:
The proxy settings are ignored, and no error is displayed to the user. You can browse the Internet normally, with no proxy.
Expected results:
An error is displayed to the user when trying to use proxying with no proxy set.
|
Prevent accepting the proxy / network settings dialog if "manual proxy configuration" is selected but no address/port combination is filled in for any proxy User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
Configure a proxy via "Manual proxy configuration"; configure a SOCKS proxy, but forget to set the address (so that you only set the port). Save the settings.
Browse the Internet.
Actual results:
The proxy settings are ignored, and no error is displayed to the user. You can browse the Internet normally, with no proxy.
Expected results:
An error is displayed to the user when trying to use proxying with no proxy set.
|
P3
|
NEW
|
2020-03-10 22:47:43+00:00
|
2020-05-12 00:52:15+00:00
| 171 | 3 |
|
1621608
|
The onboarding tip is quickly dismissed if about:newtab page is on focus and the browser is restarted
|
**[Affected versions]:**
- Firefox Release 74 Build ID 20200309095159;
**[Affected Platforms]:**
- Windows 10;
- Mac 10.14;
- Linux Mint 18.03;
**[Prerequisites]:**
- Have an “en-US” Firefox Release 74 build installed;
- Have a profile created in the last 24 hours;
- Firefox is opened and wasn't updated in the last 24 hours;
- Have a Normandy testing recipe created and published for the Quantumbar V1 experiment;
- “user.js” file is saved in the profile directory;
- Google is the default search engine;
- Be enrolled in the “treatment” branch;
**[Steps to reproduce]:**
1. Open the Firefox browser with the profile from prerequisites.
2. Navigate to about:newtab page and leave it on focus.
3. Restart the browser.
4. Observe the onboarding tip.
**[Expected result]:**
- Onboarding tip is displayed. The tip is dismissed only after a direct interaction.
**[Actual result]:**
- The onboarding tip is displayed for a moment and it's auto-dismissing without interacting with it.
**[Notes]:**
- Issue is also reproducible if about:home, bing.com, google.com, duckduckgo.com and start.duckduckgo.com pages are in focus and corresponding search engines are set as default.
- Issue is also reproducible for a Firefox 74 “de” locale build.
- Issue is NOT reproducible on Firefox 75.0b1 and Nightly 76.0a1.
|
The onboarding tip is quickly dismissed if about:newtab page is on focus and the browser is restarted **[Affected versions]:**
- Firefox Release 74 Build ID 20200309095159;
**[Affected Platforms]:**
- Windows 10;
- Mac 10.14;
- Linux Mint 18.03;
**[Prerequisites]:**
- Have an “en-US” Firefox Release 74 build installed;
- Have a profile created in the last 24 hours;
- Firefox is opened and wasn't updated in the last 24 hours;
- Have a Normandy testing recipe created and published for the Quantumbar V1 experiment;
- “user.js” file is saved in the profile directory;
- Google is the default search engine;
- Be enrolled in the “treatment” branch;
**[Steps to reproduce]:**
1. Open the Firefox browser with the profile from prerequisites.
2. Navigate to about:newtab page and leave it on focus.
3. Restart the browser.
4. Observe the onboarding tip.
**[Expected result]:**
- Onboarding tip is displayed. The tip is dismissed only after a direct interaction.
**[Actual result]:**
- The onboarding tip is displayed for a moment and it's auto-dismissing without interacting with it.
**[Notes]:**
- Issue is also reproducible if about:home, bing.com, google.com, duckduckgo.com and start.duckduckgo.com pages are in focus and corresponding search engines are set as default.
- Issue is also reproducible for a Firefox 74 “de” locale build.
- Issue is NOT reproducible on Firefox 75.0b1 and Nightly 76.0a1.
|
P1
|
RESOLVED
|
WONTFIX
|
2020-03-11 12:01:52+00:00
|
2020-03-12 15:34:00+00:00
| 391 | 1 |
1621623
|
Address bar one-click search engine suggestions reappear on each upgrade of Firefox
|
I don't want to have search engine suggestions at the bottom of my web page suggestions when I type something in Firefox's address bar, so I removed these from the settings by unchecking the ticks in “One-Click Search Engines” or even by removing the search engines from that box completely.
Either way, when I update my browser, they always reappear and I have to redo the removal in the settings. That is kind of annoying and I think it is a bug.
If I remember correctly, it was already the case before, at least for the last 3 major versions (lazy me).
|
Address bar one-click search engine suggestions reappear on each upgrade of Firefox I don't want to have search engine suggestions at the bottom of my web page suggestions when I type something in Firefox's address bar, so I removed these from the settings by unchecking the ticks in “One-Click Search Engines” or even by removing the search engines from that box completely.
Either way, when I update my browser, they always reappear and I have to redo the removal in the settings. That is kind of annoying and I think it is a bug.
If I remember correctly, it was already the case before, at least for the last 3 major versions (lazy me).
|
P3
|
RESOLVED
|
DUPLICATE
|
2020-03-11 13:09:50+00:00
|
2020-04-09 07:31:11+00:00
| 149 | 3 |
1621652
|
Too many site permission icons in the address bar forces all other content out of the address bar
|
# Steps to reproduce
1. Visit a site and set permissions for Location, Autoplay, Camera, etc. to **blocked**. Icons corresponding to the permission should start appearing on the address bar.
2. Resize the browser window to the minimum width.
## Expected behavior
Site permission icons should be responsive to window width changes and be displayed under a dropdown menu if necessary, which allows for the address and the page action menu to be visible.
## Actual behavior
The site permission icons forces all other content off the address bar, resulting in the page action menu and address itself to be not visible.
|
Too many site permission icons in the address bar forces all other content out of the address bar # Steps to reproduce
1. Visit a site and set permissions for Location, Autoplay, Camera, etc. to **blocked**. Icons corresponding to the permission should start appearing on the address bar.
2. Resize the browser window to the minimum width.
## Expected behavior
Site permission icons should be responsive to window width changes and be displayed under a dropdown menu if necessary, which allows for the address and the page action menu to be visible.
## Actual behavior
The site permission icons forces all other content off the address bar, resulting in the page action menu and address itself to be not visible.
|
P5
|
NEW
|
2020-03-11 14:07:58+00:00
|
2020-11-09 14:40:50+00:00
| 145 | 5 |
|
1621671
|
The navigation arrow is missing from the Quantum Bar after switching the tabs
|
[Affected versions]:
- Firefox Release 74 (Build ID: 20200309095159)
- Firefox Beta 75.0b2 (Build ID: 20200310192828)
- Firefox Nightly 76.0a1 (Build ID: 20200311041149)
[Affected Platforms]:
- Mac 10.14
- Windows 10 x64
- Ubuntu 16.04 x64
[Steps to reproduce]:
1. Open the Firefox browser.
2. Open a new tab.
3. Type a random string inside the Quantum Bar.
4. Switch to another tab.
5. Go back to the previous tab and observe the navigation arrow from the Quantum Bar.
[Expected result]:
- The navigation arrow pointing to the right is displayed on the right side.
[Actual result]:
- The navigation arrow is not displayed.
[Notes]:
- This issue is also reproducible on older Firefox versions where the Quantum Bar is disabled.
- Attached a screen recording with the issue.
|
The navigation arrow is missing from the Quantum Bar after switching the tabs [Affected versions]:
- Firefox Release 74 (Build ID: 20200309095159)
- Firefox Beta 75.0b2 (Build ID: 20200310192828)
- Firefox Nightly 76.0a1 (Build ID: 20200311041149)
[Affected Platforms]:
- Mac 10.14
- Windows 10 x64
- Ubuntu 16.04 x64
[Steps to reproduce]:
1. Open the Firefox browser.
2. Open a new tab.
3. Type a random string inside the Quantum Bar.
4. Switch to another tab.
5. Go back to the previous tab and observe the navigation arrow from the Quantum Bar.
[Expected result]:
- The navigation arrow pointing to the right is displayed on the right side.
[Actual result]:
- The navigation arrow is not displayed.
[Notes]:
- This issue is also reproducible on older Firefox versions where the Quantum Bar is disabled.
- Attached a screen recording with the issue.
|
P3
|
NEW
|
2020-03-11 15:10:23+00:00
|
2020-11-05 12:30:14+00:00
| 232 | 3 |
|
1621673
|
Toolbar button selection looks bad on flexible spacers in Customize mode
|
**Affected versions**
* Firefox 75.0b2
* Firefox 76.0a1
**Affected platforms**
* Windows 7 x64
* Windows 8.1 x64
* Ubuntu 18.04 x64
**Steps to reproduce**
1. Go to Hamburger menu -> Customize
2. Click on Tab key to access the selection on page.
3. Click on Flexible space button from the toolbar.
**Expected result**
* The dotted selection appears around the Flexible space button.
**Actual result**
* The dotted selection doesn't look good, see the attachment.
**Regression range**
I will come back with regression range ASAP.
**Additional notes**
* This issue also appear on back button selection. Verified on Firefox 76.0a1 the issue with selection is present, but the Flexible button have different size, it's bigger then on Fx (75.0b2) beta version.
|
Toolbar button selection looks bad on flexible spacers in Customize mode **Affected versions**
* Firefox 75.0b2
* Firefox 76.0a1
**Affected platforms**
* Windows 7 x64
* Windows 8.1 x64
* Ubuntu 18.04 x64
**Steps to reproduce**
1. Go to Hamburger menu -> Customize
2. Click on Tab key to access the selection on page.
3. Click on Flexible space button from the toolbar.
**Expected result**
* The dotted selection appears around the Flexible space button.
**Actual result**
* The dotted selection doesn't look good, see the attachment.
**Regression range**
I will come back with regression range ASAP.
**Additional notes**
* This issue also appear on back button selection. Verified on Firefox 76.0a1 the issue with selection is present, but the Flexible button have different size, it's bigger then on Fx (75.0b2) beta version.
|
P5
|
NEW
|
2020-03-11 15:23:34+00:00
|
2022-10-12 00:03:35+00:00
| 219 | 5 |
|
1621892
|
Search Engine settings are lost when a WebExtension based search engine is updated
|
STR:
1. Install an older version of a WebExtension with a search engine in it, e.g. I installed startpage 1.2.0 from [here](https://addons.mozilla.org/en-US/firefox/addon/startpage-private-search/versions/).
2. Go to Preferences, Search, and then set it as default, change the order where it is, uncheck the tick box (hidden status) and add an alias.
3. Restart so that settings are definitely saved (possibly don't need to do this step).
4. Close the preferences tab.
5. Go to about:addons and from the cog icon select "Check for Updates"
6. Go back to the preferences tab.
Expected Results
All settings are saved.
Actual Results
The hidden status and alias have been lost. The engine does remain as default and in the same position in the list of engines.
|
Search Engine settings are lost when a WebExtension based search engine is updated STR:
1. Install an older version of a WebExtension with a search engine in it, e.g. I installed startpage 1.2.0 from [here](https://addons.mozilla.org/en-US/firefox/addon/startpage-private-search/versions/).
2. Go to Preferences, Search, and then set it as default, change the order where it is, uncheck the tick box (hidden status) and add an alias.
3. Restart so that settings are definitely saved (possibly don't need to do this step).
4. Close the preferences tab.
5. Go to about:addons and from the cog icon select "Check for Updates"
6. Go back to the preferences tab.
Expected Results
All settings are saved.
Actual Results
The hidden status and alias have been lost. The engine does remain as default and in the same position in the list of engines.
|
P2
|
VERIFIED
|
FIXED
|
2020-03-12 09:25:51+00:00
|
2020-06-25 12:57:47+00:00
| 220 | 2 |
1621944
|
[Intermittent] The onboarding tip is displayed in about:newtab only after clicking in the Address Bar at browser normal restart
|
**[Affected versions]:**
- Firefox Release 74 Build ID 20200309095159;
**[Affected Platforms]:**
- Windows 10.14
- Mac 10.14;
- Linux Debian 9;
**[Prerequisites]:**
- Have a Firefox Release 74 build installed;
- Have a profile created in the last 24 hours;
- Firefox is opened and wasn't updated in the last 24 hours;
- Firefox is set as your default browser;
- “Restore previous session” option is unchecked;
- Have a Normandy [testing recipe](https://delivery-console.stage.mozaws.net/recipe/963/) created and published for the Quantumbar V1 experiment;
- “[user.js](https://drive.google.com/file/d/1kUEKCOAFfKU4VRVe4J7Ist5o3BiC4wIT/view)” file is saved in the profile directory;
- Google is the default search engine;
- Be enrolled in the “treatment” branch;
**[Steps to reproduce]:**
1. Open the Firefox browser with the profile from prerequisites.
2. Close the profile normally. (click on the “X” button)
3. Start the browser using the same profile.
4. Observe the onboarding tip.
**[Expected result]:**
- The onboarding tip is displayed.
**[Actual result]:**
- The onboarding tip is NOT displayed.
**[Notes]:**
- Clicking in the Address Bar will trigger the onboarding tip.
- Issue is constantly reproducible on Mac OS and Linux, and intermittently on Windows.
- Not reproducible for other search engines.
- Reproduced the issue using “en-US” and “es-ES” builds.
|
[Intermittent] The onboarding tip is displayed in about:newtab only after clicking in the Address Bar at browser normal restart **[Affected versions]:**
- Firefox Release 74 Build ID 20200309095159;
**[Affected Platforms]:**
- Windows 10.14
- Mac 10.14;
- Linux Debian 9;
**[Prerequisites]:**
- Have a Firefox Release 74 build installed;
- Have a profile created in the last 24 hours;
- Firefox is opened and wasn't updated in the last 24 hours;
- Firefox is set as your default browser;
- “Restore previous session” option is unchecked;
- Have a Normandy [testing recipe](https://delivery-console.stage.mozaws.net/recipe/963/) created and published for the Quantumbar V1 experiment;
- “[user.js](https://drive.google.com/file/d/1kUEKCOAFfKU4VRVe4J7Ist5o3BiC4wIT/view)” file is saved in the profile directory;
- Google is the default search engine;
- Be enrolled in the “treatment” branch;
**[Steps to reproduce]:**
1. Open the Firefox browser with the profile from prerequisites.
2. Close the profile normally. (click on the “X” button)
3. Start the browser using the same profile.
4. Observe the onboarding tip.
**[Expected result]:**
- The onboarding tip is displayed.
**[Actual result]:**
- The onboarding tip is NOT displayed.
**[Notes]:**
- Clicking in the Address Bar will trigger the onboarding tip.
- Issue is constantly reproducible on Mac OS and Linux, and intermittently on Windows.
- Not reproducible for other search engines.
- Reproduced the issue using “en-US” and “es-ES” builds.
|
P2
|
VERIFIED
|
FIXED
|
2020-03-12 12:46:10+00:00
|
2020-09-01 09:15:16+00:00
| 431 | 2 |
1621984
|
Title of customize tab becomes "New Tab" after restart
|
STR:
1. open firefox
2. open options/preferences, enable session restore
3. open customize mode
4. open new tab with accel-t
5. quit firefox
6. reopen firefox
ER:
customize tab has "Customize Firefox" title or similar
AR:
customize tab has "New Tab" title
|
Title of customize tab becomes "New Tab" after restart STR:
1. open firefox
2. open options/preferences, enable session restore
3. open customize mode
4. open new tab with accel-t
5. quit firefox
6. reopen firefox
ER:
customize tab has "Customize Firefox" title or similar
AR:
customize tab has "New Tab" title
|
P3
|
VERIFIED
|
FIXED
|
2020-03-12 14:58:22+00:00
|
2021-02-21 13:52:09+00:00
| 89 | 3 |
1622045
|
Correct pref names for UserMessaging
|
I somehow flipped the prefs for UserMessaging.
|
Correct pref names for UserMessaging I somehow flipped the prefs for UserMessaging.
|
P1
|
RESOLVED
|
FIXED
|
2020-03-12 18:37:11+00:00
|
2020-03-17 21:16:03+00:00
| 23 | 1 |
1622046
|
Javascript window.open() returns false or null in SSB mode
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
Steps to reproduce:
1) Created a single site browser for https://www.inoreader.com.
2) Viewed a news article in the SSB and typed "v" to open the article in a new tab/window.
Actual results:
Tab opened successfully and loaded the desired page in a regular Firefox window. SSB page gave the error "Please disable your popup blocker to use this feature!".
The site checks the return value of the window.open(), and a return value of false or null tells it that window.open() was blocked. In fact it was not blocked - the window/tab opened successfully.
Expected results:
Firefox should have returned a value to window.open() to indicate that the action did not fail/get blocked.
|
Javascript window.open() returns false or null in SSB mode User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
Steps to reproduce:
1) Created a single site browser for https://www.inoreader.com.
2) Viewed a news article in the SSB and typed "v" to open the article in a new tab/window.
Actual results:
Tab opened successfully and loaded the desired page in a regular Firefox window. SSB page gave the error "Please disable your popup blocker to use this feature!".
The site checks the return value of the window.open(), and a return value of false or null tells it that window.open() was blocked. In fact it was not blocked - the window/tab opened successfully.
Expected results:
Firefox should have returned a value to window.open() to indicate that the action did not fail/get blocked.
|
P5
|
RESOLVED
|
WONTFIX
|
2020-03-12 18:37:46+00:00
|
2021-01-15 22:20:57+00:00
| 227 | 5 |
1622054
|
about:preferences searchbox font size in inconsistent with about:addons and about:logins
|
This was changed in bug 1432906 (apparently that was the intended behaviour), where the policies-container was set along with the searchbox to the (small-ish) size of 12.7px.
Not sure what is the correct spec for this, but either way I guess the searchbox should be consistent with other about: pages such as about:addons and about:logins, there the font size is set to 15px.
Moving this rule:
https://searchfox.org/mozilla-central/rev/278046367dab878316f60f0bd7f740cf73f3c447/browser/themes/shared/incontentprefs/preferences.inc.css#884
to here:
https://searchfox.org/mozilla-central/rev/278046367dab878316f60f0bd7f740cf73f3c447/browser/themes/shared/incontentprefs/preferences.inc.css#850
should fix it, while retaining the policies-container's font-size of 12.7px.
|
about:preferences searchbox font size in inconsistent with about:addons and about:logins This was changed in bug 1432906 (apparently that was the intended behaviour), where the policies-container was set along with the searchbox to the (small-ish) size of 12.7px.
Not sure what is the correct spec for this, but either way I guess the searchbox should be consistent with other about: pages such as about:addons and about:logins, there the font size is set to 15px.
Moving this rule:
https://searchfox.org/mozilla-central/rev/278046367dab878316f60f0bd7f740cf73f3c447/browser/themes/shared/incontentprefs/preferences.inc.css#884
to here:
https://searchfox.org/mozilla-central/rev/278046367dab878316f60f0bd7f740cf73f3c447/browser/themes/shared/incontentprefs/preferences.inc.css#850
should fix it, while retaining the policies-container's font-size of 12.7px.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-12 19:21:45+00:00
|
2020-04-13 23:04:48+00:00
| 286 | 3 |
1622175
|
Bookmarks toolbar wrong folding after resize window
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Add a few websites in bookmark tool bar when maximized window, let the last bookmark's name string length almost approach to the tool bar width.
Resize the window and remaximize window.
Actual results:
Previous unfolded bookmark bar will be still folded just like in small size of window.
Return to the unfolded state:
1. Close Firefox as maximized window. Let Firefox can be opened as maximized window then reopen Firefox. The folded bookmark bar will return to the unfolded state.
2. Rename the last bookmark when maximized window, shorten the name until it become unfolded. After that, rename and lengthen the name within width of tool bar will not cause folding.
Expected results:
After resize window and return maximized window, the previous unfolded bookmark bar should be unfolded not folded.
|
Bookmarks toolbar wrong folding after resize window User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Add a few websites in bookmark tool bar when maximized window, let the last bookmark's name string length almost approach to the tool bar width.
Resize the window and remaximize window.
Actual results:
Previous unfolded bookmark bar will be still folded just like in small size of window.
Return to the unfolded state:
1. Close Firefox as maximized window. Let Firefox can be opened as maximized window then reopen Firefox. The folded bookmark bar will return to the unfolded state.
2. Rename the last bookmark when maximized window, shorten the name until it become unfolded. After that, rename and lengthen the name within width of tool bar will not cause folding.
Expected results:
After resize window and return maximized window, the previous unfolded bookmark bar should be unfolded not folded.
|
P3
|
UNCONFIRMED
|
2020-03-13 06:32:12+00:00
|
2020-05-12 00:06:55+00:00
| 235 | 3 |
|
1622180
|
Focus address bar on direct navigation to about:newtab /about:home
|
##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 18.04
##### [Versions:]
74.0 20200309095159
75.0b2 20200310192828
76.0a1 20200312215313
68.6.0esr 20200305175243
##### [Steps:]
1. Open Firefox.
2. use Ctrl+T or from the Address bar or click on +.
3. In any tab navigate to about:home.
4. In any tab navigate to about:newtab.
5. Bookmark about:newtab or about:home
##### [Actual Result:]
2. address bar has focus.
3. address bar doesn't have focus.
4. address bar doesn't have focus.
5. address bar doesn't have focus.
##### [Expected Result:]
IMO, the user experience here should be aligned and direct navigation to about:newtab / about:home should focus address bar.
[Note:]
This issue also reproduces regardless of the value of **browser.urlbar.update1**
|
Focus address bar on direct navigation to about:newtab /about:home ##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 18.04
##### [Versions:]
74.0 20200309095159
75.0b2 20200310192828
76.0a1 20200312215313
68.6.0esr 20200305175243
##### [Steps:]
1. Open Firefox.
2. use Ctrl+T or from the Address bar or click on +.
3. In any tab navigate to about:home.
4. In any tab navigate to about:newtab.
5. Bookmark about:newtab or about:home
##### [Actual Result:]
2. address bar has focus.
3. address bar doesn't have focus.
4. address bar doesn't have focus.
5. address bar doesn't have focus.
##### [Expected Result:]
IMO, the user experience here should be aligned and direct navigation to about:newtab / about:home should focus address bar.
[Note:]
This issue also reproduces regardless of the value of **browser.urlbar.update1**
|
P5
|
NEW
|
2020-03-13 07:08:18+00:00
|
2020-07-09 04:43:21+00:00
| 275 | 5 |
|
1622195
|
Check default browser modal blocks action on Search Tips
|
##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 16804
##### [Versions:]
75.0b3 20200313021419
76.0a1 20200312215313
##### [Steps:]
1. Open Firefox with a new profile && browser is not default.
2. Enable browserconsole.
3. Open browser console and use the following snippet to modify the profile age:
* (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })(); *
4. Close the browser console.
5. Close and reopen the browser.
##### [Actual Result:]
As the browser is not the default one, the check_default_browser modal will be shown at the start-up while also the Search Tips are shown.
When the modal is actioned upon, the Search Tip is temporarily dismissed.
##### [Expected Result:]
The optimal user experience would be to show the Search Tips when we're certain that there is nothing that blocks it or obscures it, in order to offer the user the desired actionable choice.
##### [Note:]
Even though in this particular case, the Search Tips has been already loaded but is just not actionable and only readable-> there might be other cases similar to this one, but QA doesn't have a list with browser level modal/non-modal notifications with might have impact on Search Tips. (any hint/idea would be apreciated)
|
Check default browser modal blocks action on Search Tips ##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 16804
##### [Versions:]
75.0b3 20200313021419
76.0a1 20200312215313
##### [Steps:]
1. Open Firefox with a new profile && browser is not default.
2. Enable browserconsole.
3. Open browser console and use the following snippet to modify the profile age:
* (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })(); *
4. Close the browser console.
5. Close and reopen the browser.
##### [Actual Result:]
As the browser is not the default one, the check_default_browser modal will be shown at the start-up while also the Search Tips are shown.
When the modal is actioned upon, the Search Tip is temporarily dismissed.
##### [Expected Result:]
The optimal user experience would be to show the Search Tips when we're certain that there is nothing that blocks it or obscures it, in order to offer the user the desired actionable choice.
##### [Note:]
Even though in this particular case, the Search Tips has been already loaded but is just not actionable and only readable-> there might be other cases similar to this one, but QA doesn't have a list with browser level modal/non-modal notifications with might have impact on Search Tips. (any hint/idea would be apreciated)
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 08:24:05+00:00
|
2020-04-06 07:35:48+00:00
| 420 | 1 |
1622211
|
No click event telemetry for CFR urlbar button
|
No click telemetry is sent when clicking the button to open the link.
|
No click event telemetry for CFR urlbar button No click telemetry is sent when clicking the button to open the link.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 09:59:26+00:00
|
2020-03-23 10:09:01+00:00
| 31 | 1 |
1622214
|
Search Tips are displayed while focus is on Browser Console in case of Browser console restart
|
##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 16.04
##### [Versions:]
75.0b3 20200313021419
76.0a1 20200312215313
##### [Steps:]
1. Open Firefox with a new profile && browser is default. (or the check_for_default is disabled - not to hit bug 1622195)
2. Enable browserconsole.
3. Open browser console and use the following snippet to modify the profile age:
* (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })(); *
4. Use the Ctrl/Cmd+Alt+R to restart.
##### [Actual Result:]
In this case, the Ctrl/Cmd +Alt+R will restart the browser, upon restarting the browser console will be reopened after the address bar is previously focused and Search Tips displayed.
##### [Expected Result:]
IMO, this case is an edge case and not necesarily concerning, but I'm wondering if there shouldn't be a small delay (for the onboarding) before checking if the focus is still on address bar and displaying Search Tips? That would give enough for whatever might steal focus to steal it and not showing the Tips if we don't have the focus there.
|
Search Tips are displayed while focus is on Browser Console in case of Browser console restart ##### [Environment:]
Windows 10
Mac 10.15.3
Ubuntu 16.04
##### [Versions:]
75.0b3 20200313021419
76.0a1 20200312215313
##### [Steps:]
1. Open Firefox with a new profile && browser is default. (or the check_for_default is disabled - not to hit bug 1622195)
2. Enable browserconsole.
3. Open browser console and use the following snippet to modify the profile age:
* (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })(); *
4. Use the Ctrl/Cmd+Alt+R to restart.
##### [Actual Result:]
In this case, the Ctrl/Cmd +Alt+R will restart the browser, upon restarting the browser console will be reopened after the address bar is previously focused and Search Tips displayed.
##### [Expected Result:]
IMO, this case is an edge case and not necesarily concerning, but I'm wondering if there shouldn't be a small delay (for the onboarding) before checking if the focus is still on address bar and displaying Search Tips? That would give enough for whatever might steal focus to steal it and not showing the Tips if we don't have the focus there.
|
P3
|
NEW
|
2020-03-13 10:03:16+00:00
|
2022-10-10 19:29:28+00:00
| 389 | 3 |
|
1622240
|
Dark Theme - warning_text from Forget history menu - hard to read
|
**Affected versions**
* 74.0, 75.0b3, 76.0a1 (2020-03-12);
**Affected platforms**
* Windows 10, macOS 10.13, Ubuntu 16.04;
**Steps to reproduce**
1. Launch Firefox, click on the 3line/Hambourger menu button;
2. Click on the Customize button;
3. Change to Dark Theme and Drag the Forget button on the bar(anywhere to be visible);
4. Exit the customize mode and click on the Forget button;
**Expected result**
* text in the menu is readable;
**Actual result**
* warning dark-red text on grey background is hard to read;
**Regression range**
* most likely not a regression, but will check asap;
**Additional notes**
* attached screenshot with the issue.
|
Dark Theme - warning_text from Forget history menu - hard to read **Affected versions**
* 74.0, 75.0b3, 76.0a1 (2020-03-12);
**Affected platforms**
* Windows 10, macOS 10.13, Ubuntu 16.04;
**Steps to reproduce**
1. Launch Firefox, click on the 3line/Hambourger menu button;
2. Click on the Customize button;
3. Change to Dark Theme and Drag the Forget button on the bar(anywhere to be visible);
4. Exit the customize mode and click on the Forget button;
**Expected result**
* text in the menu is readable;
**Actual result**
* warning dark-red text on grey background is hard to read;
**Regression range**
* most likely not a regression, but will check asap;
**Additional notes**
* attached screenshot with the issue.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 12:07:42+00:00
|
2020-03-31 06:14:38+00:00
| 207 | 1 |
1622243
|
"Bookmark pages" context menu item from Library - History doesn't work
|
**Affected versions**
* Fx 75.0b3
* Fx 76.0a1
**Affected platforms**
* Windows 10 x64
* Windows 8.1 x64
* Ubuntu 18.04 x64
* macOS 10.13
**Steps to reproduce**
1. Launch Firefox, use a dirty profile with reasonable amount of browsing history.
2. Select the History option from the View History, saved bookmarks and more Menu.
3. Click on the Show All History menu item.
4. Select 2 or more websites pressing CTRL from keyboard.
5. Right click on selected items to open context menu.
5. Click on Bookmark Pages.
**Expected result**
* The selected websites bookmarked.
**Actual result**
* Nothing happened, the selected pages are not bookmarked.
**Regression range**
* I will come back with regression range ASAP.
**Additional Notes**
* The selected websites are bookmarked if you insert some tags.
|
"Bookmark pages" context menu item from Library - History doesn't work **Affected versions**
* Fx 75.0b3
* Fx 76.0a1
**Affected platforms**
* Windows 10 x64
* Windows 8.1 x64
* Ubuntu 18.04 x64
* macOS 10.13
**Steps to reproduce**
1. Launch Firefox, use a dirty profile with reasonable amount of browsing history.
2. Select the History option from the View History, saved bookmarks and more Menu.
3. Click on the Show All History menu item.
4. Select 2 or more websites pressing CTRL from keyboard.
5. Right click on selected items to open context menu.
5. Click on Bookmark Pages.
**Expected result**
* The selected websites bookmarked.
**Actual result**
* Nothing happened, the selected pages are not bookmarked.
**Regression range**
* I will come back with regression range ASAP.
**Additional Notes**
* The selected websites are bookmarked if you insert some tags.
|
P2
|
RESOLVED
|
FIXED
|
2020-03-13 12:38:36+00:00
|
2020-05-04 09:32:13+00:00
| 229 | 2 |
1622283
|
[win 8.1] Dark Theme - print preview menu text is not readable
|
**Affected versions**
* 74.0, 75.0b3, 76.0a1, 71.0;
**Affected platforms**
* Windows 8.1;
**Steps to reproduce**
1. Launch Firefox;
2. Change Firefox to the Dark theme;
3. Load any page/document and click on the Hamburger menu button;
4. Click on print;
5. Select another Window;
**Expected result**
* text is readable;
**Actual result**
* Simplify text is hard to read when Window is not selected;
* Page prev-next , unselected from Portrait(orLandscape)text is hard to read;
**Regression range**
* will check asap if a regression;
**Additional notes**
* default theme - Color of window borders and taskbar set as the dark-grey one (Color1);
* attached screenshot with the issue.
|
[win 8.1] Dark Theme - print preview menu text is not readable **Affected versions**
* 74.0, 75.0b3, 76.0a1, 71.0;
**Affected platforms**
* Windows 8.1;
**Steps to reproduce**
1. Launch Firefox;
2. Change Firefox to the Dark theme;
3. Load any page/document and click on the Hamburger menu button;
4. Click on print;
5. Select another Window;
**Expected result**
* text is readable;
**Actual result**
* Simplify text is hard to read when Window is not selected;
* Page prev-next , unselected from Portrait(orLandscape)text is hard to read;
**Regression range**
* will check asap if a regression;
**Additional notes**
* default theme - Color of window borders and taskbar set as the dark-grey one (Color1);
* attached screenshot with the issue.
|
P3
|
RESOLVED
|
WONTFIX
|
2020-03-13 14:42:38+00:00
|
2022-06-10 12:59:12+00:00
| 217 | 3 |
1622303
|
The Firefox Nightly crashes on MacOS 10.10.5 after clicking on the Show Password/Copy/Edit button from about:logins page
|
[Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200313095322)
[Affected Platforms]:
- Mac 10.10.5
[Prerequisites]:
- Have a profile with at least one saved login.
- Have an OS password set.
[Steps to reproduce]:
1. Open the latest Nightly browser.
2. Navigate to the “about:logins” page and select a saved password.
3. Click on the “Show Password'' or ”Copy” or “Edit” button from the login item.
4. Observe the behavior.
[Expected result]:
- The operating system’s authentication dialog is displayed.
[Actual result]:
- The browser crashes.
[Notes]:
- The issue is also reproducible if trying to check the “Use a master password” option from “about:preferences#privacy” page.
- The issue is not reproducible on older Nightly versions where this functionality is not available.
- Here is the link to the [crash report](https://crash-stats.mozilla.org/report/index/8b73b554-fbf0-4e44-ae2e-c2a170200313).
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=1wMI876DBREbTTgdGEMkzeiEuw653sMSe).
|
The Firefox Nightly crashes on MacOS 10.10.5 after clicking on the Show Password/Copy/Edit button from about:logins page [Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200313095322)
[Affected Platforms]:
- Mac 10.10.5
[Prerequisites]:
- Have a profile with at least one saved login.
- Have an OS password set.
[Steps to reproduce]:
1. Open the latest Nightly browser.
2. Navigate to the “about:logins” page and select a saved password.
3. Click on the “Show Password'' or ”Copy” or “Edit” button from the login item.
4. Observe the behavior.
[Expected result]:
- The operating system’s authentication dialog is displayed.
[Actual result]:
- The browser crashes.
[Notes]:
- The issue is also reproducible if trying to check the “Use a master password” option from “about:preferences#privacy” page.
- The issue is not reproducible on older Nightly versions where this functionality is not available.
- Here is the link to the [crash report](https://crash-stats.mozilla.org/report/index/8b73b554-fbf0-4e44-ae2e-c2a170200313).
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=1wMI876DBREbTTgdGEMkzeiEuw653sMSe).
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 16:01:37+00:00
|
2020-03-30 15:22:04+00:00
| 348 | 1 |
1622304
|
The operating system’s authentication dialog is not triggered on MacOS 10.11.6 and MacOs 10.9.5 after clicking on the Show Password/ Edit/ Copy buttons
|
[Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200313095322)
[Affected Platforms]:
- Mac 10.11.6
- Mac 10.9.5
[Prerequisites]:
- Have a profile with at least one saved login.
- Have an OS password set.
[Steps to reproduce]:
1. Open the latest Nightly Firefox browser.
2. Navigate to the “about:logins” page and select a saved password.
3. Click on the “Show Password” or ”Copy” or “Edit” button from the login item.
4. Observe the behavior.
[Expected result]:
- The operating system’s authentication dialog is displayed.
[Actual result]:
- Nothing happens. The operating system’s authentication dialog is triggered.
[Notes]:
- The issue is also reproducible if trying to check the “Use a master password” option from “about:preferences#privacy” page.
- The issue is not reproducible on older Nightly versions where this functionality is not available.
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=1-38jTc0L8jWGcCqeZaN0YsueANS2VP0d).
|
The operating system’s authentication dialog is not triggered on MacOS 10.11.6 and MacOs 10.9.5 after clicking on the Show Password/ Edit/ Copy buttons [Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200313095322)
[Affected Platforms]:
- Mac 10.11.6
- Mac 10.9.5
[Prerequisites]:
- Have a profile with at least one saved login.
- Have an OS password set.
[Steps to reproduce]:
1. Open the latest Nightly Firefox browser.
2. Navigate to the “about:logins” page and select a saved password.
3. Click on the “Show Password” or ”Copy” or “Edit” button from the login item.
4. Observe the behavior.
[Expected result]:
- The operating system’s authentication dialog is displayed.
[Actual result]:
- Nothing happens. The operating system’s authentication dialog is triggered.
[Notes]:
- The issue is also reproducible if trying to check the “Use a master password” option from “about:preferences#privacy” page.
- The issue is not reproducible on older Nightly versions where this functionality is not available.
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=1-38jTc0L8jWGcCqeZaN0YsueANS2VP0d).
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 16:04:40+00:00
|
2020-03-30 15:15:03+00:00
| 318 | 1 |
1622457
|
title line of "Library", "Show All Bookmarks -> Downloads" has clear downloads to the far right
|
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
ctrl+shift+o produces a popup titled "Library" (show all bookmarks). For the downloads widget, the next line down in the display has buttons that ought to be together and NOT at the far end of the widget.
I have long file names and as a result, my "library" widget is3/4 the screen in size. The clear downloads button at the far right should be next to the organize button, followed by the search "button".
Actual results:
see above
Expected results:
see above
|
title line of "Library", "Show All Bookmarks -> Downloads" has clear downloads to the far right User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
ctrl+shift+o produces a popup titled "Library" (show all bookmarks). For the downloads widget, the next line down in the display has buttons that ought to be together and NOT at the far end of the widget.
I have long file names and as a result, my "library" widget is3/4 the screen in size. The clear downloads button at the far right should be next to the organize button, followed by the search "button".
Actual results:
see above
Expected results:
see above
|
P1
|
VERIFIED
|
FIXED
|
2020-03-13 23:20:32+00:00
|
2020-04-15 14:39:28+00:00
| 179 | 1 |
1622489
|
Intermittent TV browser/components/customizableui/test/browser_panel_keyboard_navigation.js | Test timed out -
|
**Filed by:** rmaries [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer.html#?job_id=293129856&repo=autoland
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/K4eJgJe1S-ejBdrACQr2CQ/runs/0/artifacts/public/logs/live_backing.log
**Reftest URL:** https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/tools/reftest/reftest-analyzer.xhtml#logurl=https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/K4eJgJe1S-ejBdrACQr2CQ/runs/0/artifacts/public/logs/live_backing.log&only_show_unexpected=1
---
|
Intermittent TV browser/components/customizableui/test/browser_panel_keyboard_navigation.js | Test timed out - **Filed by:** rmaries [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer.html#?job_id=293129856&repo=autoland
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/K4eJgJe1S-ejBdrACQr2CQ/runs/0/artifacts/public/logs/live_backing.log
**Reftest URL:** https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/tools/reftest/reftest-analyzer.xhtml#logurl=https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/K4eJgJe1S-ejBdrACQr2CQ/runs/0/artifacts/public/logs/live_backing.log&only_show_unexpected=1
---
|
P5
|
RESOLVED
|
INCOMPLETE
|
2020-03-14 02:07:27+00:00
|
2020-04-07 17:00:23+00:00
| 290 | 5 |
1622542
|
Unable to see or copy saved password if Windows account's password is empty
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
There're two Windows 10 OS accounts in the system. One is a local non-privileged user with empty password and another is an admin user with MS online account login. When clicking on eye icon or "copy" button to see/copy saved password in about:logins a Windows security window with "Verify your identity to reveal the saved password" message pops up.
Actual results:
While under non-privileged system user:
Empty password for non-privileged system user is declined, security window pops up again.
E-mail and password identities for admin system user is also declined, security window pops up again.
While under admin system user:
Identities for admin system user is correctly accepted, saved password is shown.
Empty password for non-privileged system user is declined, security window pops up again.
Expected results:
Security window must accept empty user password or shouldn't pop up at all if system user password is empty.
|
Unable to see or copy saved password if Windows account's password is empty User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
There're two Windows 10 OS accounts in the system. One is a local non-privileged user with empty password and another is an admin user with MS online account login. When clicking on eye icon or "copy" button to see/copy saved password in about:logins a Windows security window with "Verify your identity to reveal the saved password" message pops up.
Actual results:
While under non-privileged system user:
Empty password for non-privileged system user is declined, security window pops up again.
E-mail and password identities for admin system user is also declined, security window pops up again.
While under admin system user:
Identities for admin system user is correctly accepted, saved password is shown.
Empty password for non-privileged system user is declined, security window pops up again.
Expected results:
Security window must accept empty user password or shouldn't pop up at all if system user password is empty.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-14 17:05:17+00:00
|
2020-04-25 02:50:42+00:00
| 253 | 1 |
1622730
|
Support principals `file://` for the site permission setting
|
Was trying to debug bug 1528265.
I have a local page that will autoplay a flac page.
playback doesn't start and in the console you see:
NotAllowedError: The play method is not allowed by the user agent or the platform in the current context, possibly because the user denied permission.
Attempting to modify the autoplay permission by selecting "Permissions -> Autoplay : Allow Audio and Video" in the URL bar has no effect. Autoplay is always blocked for local file.
This is probably a toolkit bug, but wasn't sure.
|
Support principals `file://` for the site permission setting Was trying to debug bug 1528265.
I have a local page that will autoplay a flac page.
playback doesn't start and in the console you see:
NotAllowedError: The play method is not allowed by the user agent or the platform in the current context, possibly because the user denied permission.
Attempting to modify the autoplay permission by selecting "Permissions -> Autoplay : Allow Audio and Video" in the URL bar has no effect. Autoplay is always blocked for local file.
This is probably a toolkit bug, but wasn't sure.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-16 07:23:11+00:00
|
2020-05-28 14:05:55+00:00
| 138 | 3 |
1622801
|
Forget captive portal tab on origin change before login
|
See the example scenario explained in https://bugzilla.mozilla.org/show_bug.cgi?id=1313577#c12 for more details.
|
Forget captive portal tab on origin change before login See the example scenario explained in https://bugzilla.mozilla.org/show_bug.cgi?id=1313577#c12 for more details.
|
P3
|
NEW
|
2020-03-16 13:47:46+00:00
|
2020-05-12 00:06:58+00:00
| 52 | 3 |
|
1622839
|
firefox dev edition as default webbrowser wont work
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
set ff dev edition as default webbrowser, then click in a 3rd party program on a link.
Actual results:
windows loading icon for few seconds, then nothing.
Expected results:
should open in browser just like it does with nightly when setting nightly as default.
|
firefox dev edition as default webbrowser wont work User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
set ff dev edition as default webbrowser, then click in a 3rd party program on a link.
Actual results:
windows loading icon for few seconds, then nothing.
Expected results:
should open in browser just like it does with nightly when setting nightly as default.
|
P3
|
RESOLVED
|
WORKSFORME
|
2020-03-16 15:22:15+00:00
|
2020-03-29 21:33:04+00:00
| 114 | 3 |
1622862
|
Cut/Copy/Paste controls in the hamburger menu are disabled when navigating with the keyboard
|
STR:
1. Open any website, select some text
2. Click the hamburger menu
3. Press arrowdown/Tab key
AR:
The Cut/Copy/Paste controls are getting disabled the moment you press arrowdown/Tab key
ER:
The controls presumably should still be enabled for the user to select them?
This feels like it's that way in purpose; wanted to file a bug about that just in case it's not the desired outcome.
|
Cut/Copy/Paste controls in the hamburger menu are disabled when navigating with the keyboard STR:
1. Open any website, select some text
2. Click the hamburger menu
3. Press arrowdown/Tab key
AR:
The Cut/Copy/Paste controls are getting disabled the moment you press arrowdown/Tab key
ER:
The controls presumably should still be enabled for the user to select them?
This feels like it's that way in purpose; wanted to file a bug about that just in case it's not the desired outcome.
|
P3
|
RESOLVED
|
INVALID
|
2020-03-16 16:40:25+00:00
|
2022-08-12 00:07:51+00:00
| 113 | 3 |
1623041
|
Favicon is not displayed in the address bar for bookmarked Top Sites
|
**Affected Versions:**
All
**Affected Platforms:**
Windows 7/10
MacOS 10.13
**Steps to reproduce:**
1. Launch Firefox
2. Open any site from the Top Sites section (ex Facebook)
3. Bookmark it
4. Close the tab with the site and open a blank tab
5. Start writing the first 2 letters of the site (fa) and check the dropdown
**Expected Result:**
Facebook should appear in the search dropdown with a favicon since it was bookmarked
**Actual Result:**
Facebook is shown as the first result but it doesn't have a favicon
**Note:**
1. Happens if the site is accessed via Top SItes section. If I go to Facebook by typing the address manually and bookmark the page, the search results will contain facebook with the favicon.
3. If I delete 1 letter it will show Facebook with the favicon
**Regression-Range:**
Not a recent regression, can reproduce back to FX68.
|
Favicon is not displayed in the address bar for bookmarked Top Sites **Affected Versions:**
All
**Affected Platforms:**
Windows 7/10
MacOS 10.13
**Steps to reproduce:**
1. Launch Firefox
2. Open any site from the Top Sites section (ex Facebook)
3. Bookmark it
4. Close the tab with the site and open a blank tab
5. Start writing the first 2 letters of the site (fa) and check the dropdown
**Expected Result:**
Facebook should appear in the search dropdown with a favicon since it was bookmarked
**Actual Result:**
Facebook is shown as the first result but it doesn't have a favicon
**Note:**
1. Happens if the site is accessed via Top SItes section. If I go to Facebook by typing the address manually and bookmark the page, the search results will contain facebook with the favicon.
3. If I delete 1 letter it will show Facebook with the favicon
**Regression-Range:**
Not a recent regression, can reproduce back to FX68.
|
P3
|
NEW
|
2020-03-17 11:07:58+00:00
|
2020-11-05 12:30:45+00:00
| 242 | 3 |
|
1623109
|
macOS re-authenticate UI isn't associated with the relevant window
|
When I click on the show password button nothing happens.
See screenshot.
|
macOS re-authenticate UI isn't associated with the relevant window When I click on the show password button nothing happens.
See screenshot.
|
P2
|
RESOLVED
|
INVALID
|
2020-03-17 16:18:51+00:00
|
2020-04-30 09:46:46+00:00
| 32 | 2 |
1623262
|
“Delete from Pocket” option for a highlight card scrolls up the page if the card was “Saved to Pocket” from the Recommended by Pocket section
|
**[Affected versions]:**
- Firefox Release 74.0 Build ID 20200309095159
- Firefox Beta 75.0b5 Build ID 20200317211402
- Firefox Nightly 76.0a1 Build ID 20200317214918
**[Affected Platforms]:**
- Windows 10
- Mac 10.15.13
**[Prerequisites]:**
- Have the “Recommended by Pocket” section displayed.
- Be logged into Pocket.
**[Steps to reproduce]:**
1. Open a New Tab page.
2. “Save to Pocket” a “Recommended by Pocket” card.
3. Dismiss a highlighted card. (to refresh the content of the page and have the saved to Pocket card displayed in Highlights section)
4. Click the context menu for that card and select “Delete from Pocket” option.
5. Observe the page.
**[Expected result]:**
- Nothing happens. Highlights section is still in focus.
**[Actual result]:**
- Page is scrolled-up to the “Recommended by Pocket” section.
**[Notes]:**
- The issue is also reproducible if the “Archive in Pocket” option is used.
|
“Delete from Pocket” option for a highlight card scrolls up the page if the card was “Saved to Pocket” from the Recommended by Pocket section **[Affected versions]:**
- Firefox Release 74.0 Build ID 20200309095159
- Firefox Beta 75.0b5 Build ID 20200317211402
- Firefox Nightly 76.0a1 Build ID 20200317214918
**[Affected Platforms]:**
- Windows 10
- Mac 10.15.13
**[Prerequisites]:**
- Have the “Recommended by Pocket” section displayed.
- Be logged into Pocket.
**[Steps to reproduce]:**
1. Open a New Tab page.
2. “Save to Pocket” a “Recommended by Pocket” card.
3. Dismiss a highlighted card. (to refresh the content of the page and have the saved to Pocket card displayed in Highlights section)
4. Click the context menu for that card and select “Delete from Pocket” option.
5. Observe the page.
**[Expected result]:**
- Nothing happens. Highlights section is still in focus.
**[Actual result]:**
- Page is scrolled-up to the “Recommended by Pocket” section.
**[Notes]:**
- The issue is also reproducible if the “Archive in Pocket” option is used.
|
P2
|
NEW
|
2020-03-18 08:17:56+00:00
|
2022-10-12 00:04:33+00:00
| 301 | 2 |
|
1623277
|
Crash in Windows::UI::Xaml::Application::LoadComponent via windows.ui.cred.dll
|
This bug is for crash report bp-d75a71ce-a28b-4af0-9e76-63abb0200318.
```
Top 10 frames of crashing thread:
0 kernelbase.dll RaiseException
1 msvcrt.dll CxxThrowException
2 wincorlib.dll __abi_WinRTraiseCOMException
3 windows.ui.cred.dll __abi_WinRTraiseException
4 windows.ui.cred.dll Windows::UI::Xaml::Application::LoadComponent
5 windows.ui.cred.dll CredUX::Frame::[CredUX::__IFramePublicNonVirtuals]::InitializeComponent
6 windows.ui.cred.dll CredUX::Frame::Frame
7 windows.ui.cred.dll Frame_CreateInstance
8 windows.ui.cred.dll CredUXViewProviderImpl::GetView
9 windows.ui.creddialogcontroller.dll CredUXViewDefinition::v_GetRootElement
```
Steps to reproduce:
1. Access about:logins
2. Updated the browser (from 75.0a1(20200307213339);
3. Accessed about:logins
4. Click on the show password button;
5. Crashed;
6. On restart/reload I got asked for the OS-unlock password even tho I did not have one set.
|
Crash in Windows::UI::Xaml::Application::LoadComponent via windows.ui.cred.dll This bug is for crash report bp-d75a71ce-a28b-4af0-9e76-63abb0200318.
```
Top 10 frames of crashing thread:
0 kernelbase.dll RaiseException
1 msvcrt.dll CxxThrowException
2 wincorlib.dll __abi_WinRTraiseCOMException
3 windows.ui.cred.dll __abi_WinRTraiseException
4 windows.ui.cred.dll Windows::UI::Xaml::Application::LoadComponent
5 windows.ui.cred.dll CredUX::Frame::[CredUX::__IFramePublicNonVirtuals]::InitializeComponent
6 windows.ui.cred.dll CredUX::Frame::Frame
7 windows.ui.cred.dll Frame_CreateInstance
8 windows.ui.cred.dll CredUXViewProviderImpl::GetView
9 windows.ui.creddialogcontroller.dll CredUXViewDefinition::v_GetRootElement
```
Steps to reproduce:
1. Access about:logins
2. Updated the browser (from 75.0a1(20200307213339);
3. Accessed about:logins
4. Click on the show password button;
5. Crashed;
6. On restart/reload I got asked for the OS-unlock password even tho I did not have one set.
|
P3
|
RESOLVED
|
WORKSFORME
|
2020-03-18 09:34:42+00:00
|
2021-03-22 00:15:35+00:00
| 379 | 3 |
1623291
|
using improper casesensitive format - about:Crashparent shows an empty page
|
**Affected versions**
* 75.0b5, 76.0a1 (2020-03-17);
**Affected platforms**
* macOS 10.15, Windows 10, Ubuntu 18.04;
**Steps to reproduce**
1. Launch Firefox, access any webpage;
2. Paste the following string in the address bar: about:Crashparent
3. Press Enter;
**Expected result**
* message that the URL is invalid is dispalyed;
**Actual result**
* blank page is loaded;
**Regression range**
* will check asap, probably not a regression;
|
using improper casesensitive format - about:Crashparent shows an empty page **Affected versions**
* 75.0b5, 76.0a1 (2020-03-17);
**Affected platforms**
* macOS 10.15, Windows 10, Ubuntu 18.04;
**Steps to reproduce**
1. Launch Firefox, access any webpage;
2. Paste the following string in the address bar: about:Crashparent
3. Press Enter;
**Expected result**
* message that the URL is invalid is dispalyed;
**Actual result**
* blank page is loaded;
**Regression range**
* will check asap, probably not a regression;
|
P5
|
NEW
|
2020-03-18 11:11:50+00:00
|
2022-10-10 19:29:29+00:00
| 156 | 5 |
|
1623331
|
Firefox Sync clears most bookmark folders
|
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Sign into my Firefox Sync Account.
Actual results:
After a few moments all my bookmarks that are in a sub-folder are lost. The folder structure itself stays in tact.
I could restore my bookmarks from before I signed into Sync (from yesterday). I tried a few times, but result is always the same!
Expected results:
Do not delete all my bookmarks when syncing!
Please note: I am using Firefox on Ubuntu for more than 10 years now and am a Sync user since the beginning.
|
Firefox Sync clears most bookmark folders User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Sign into my Firefox Sync Account.
Actual results:
After a few moments all my bookmarks that are in a sub-folder are lost. The folder structure itself stays in tact.
I could restore my bookmarks from before I signed into Sync (from yesterday). I tried a few times, but result is always the same!
Expected results:
Do not delete all my bookmarks when syncing!
Please note: I am using Firefox on Ubuntu for more than 10 years now and am a Sync user since the beginning.
|
P4
|
UNCONFIRMED
|
2020-03-18 13:53:36+00:00
|
2022-10-12 00:04:34+00:00
| 173 | 4 |
|
1623424
|
Removing a container doesn't work
|
When I click "Remove" on a container I get message that says:
"If you remove this Container now, 2 container tabs will be closed. Are you sure you want to remove this Container?" I choose "Remove Container" but then nothing happens. The container tabs are not closed.
|
Removing a container doesn't work When I click "Remove" on a container I get message that says:
"If you remove this Container now, 2 container tabs will be closed. Are you sure you want to remove this Container?" I choose "Remove Container" but then nothing happens. The container tabs are not closed.
|
P3
|
NEW
|
2020-03-18 20:00:35+00:00
|
2020-05-12 00:06:36+00:00
| 70 | 3 |
|
1623466
|
Cannot screenshot some websites [e.g. Tantek.com homepage]
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Steps to reproduce:
Visit Tantek.com, click elipsis, screenshot, full-page.
Actual results:
Nothing happens. No errors, no messages. Nada
Expected results:
Either take screenshot or give me an error code / reason why; in a way that:
I understand what I've done
I understand what Tantek has done
I understand what has gone wrong
|
Cannot screenshot some websites [e.g. Tantek.com homepage] User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Steps to reproduce:
Visit Tantek.com, click elipsis, screenshot, full-page.
Actual results:
Nothing happens. No errors, no messages. Nada
Expected results:
Either take screenshot or give me an error code / reason why; in a way that:
I understand what I've done
I understand what Tantek has done
I understand what has gone wrong
|
P4
|
RESOLVED
|
WORKSFORME
|
2020-03-18 21:12:32+00:00
|
2024-05-09 20:04:30+00:00
| 154 | 4 |
1623597
|
Distribution engines are not being marked as built-in engines (reappear after each update)
|
Distribution engines are currently not being marked as built-in.
We regressed this here in bug 1405670 (the changes in the two sections after the highlights):
https://searchfox.org/mozilla-central/diff/47b9babf07b15b7bb6f7e873c87cd2ceddd1d4ec/toolkit/components/search/nsSearchService.js#3383,3408
The main effect of this, is that if the user removes a built-in engine that has been added or modified by a distribution, then we'll re-add it after update.
STR
1. With a Firefox distribution that is 59 or later, set up a profile, and remove one of the search engines that the distribution alters/adds.
2. Upgrade to the same Firefox distribution that is based on 69 or earlier (69 has another bug that makes things worse).
Actual Results
The engine that was removed re-appears.
Expected Results
The engine that was removed stays hidden.
|
Distribution engines are not being marked as built-in engines (reappear after each update) Distribution engines are currently not being marked as built-in.
We regressed this here in bug 1405670 (the changes in the two sections after the highlights):
https://searchfox.org/mozilla-central/diff/47b9babf07b15b7bb6f7e873c87cd2ceddd1d4ec/toolkit/components/search/nsSearchService.js#3383,3408
The main effect of this, is that if the user removes a built-in engine that has been added or modified by a distribution, then we'll re-add it after update.
STR
1. With a Firefox distribution that is 59 or later, set up a profile, and remove one of the search engines that the distribution alters/adds.
2. Upgrade to the same Firefox distribution that is based on 69 or earlier (69 has another bug that makes things worse).
Actual Results
The engine that was removed re-appears.
Expected Results
The engine that was removed stays hidden.
|
P1
|
RESOLVED
|
FIXED
|
2020-03-19 11:33:51+00:00
|
2020-04-01 13:58:38+00:00
| 250 | 1 |
1623599
|
Search Engine Cache corruption detection is incorrectly handling distributions
|
After doing some detailed analysis of the telemetry data we're receiving about cache corruption, I realised that we are always detecting distributions as having corrupt caches. This is because of two reasons:
* Distribution engines are loaded separately from the legacy config, so we don't know how many engines would be loaded when we check the cache. As a result, the distribution is likely to have more engines than we expect, and therefore we think the cache is corrupt.
* Distribution engines are not being marked as built-in. This will also potentially confuse the detection, as we're comparing built-in engines only (bug 1623597)
There's a couple of adverse effects as a result of this:
* We'll be rebuilding the search engine cache every start-up, which may affect start-up performance (though I expect the effect to be small).
* If the user removes an engine that is added or altered by the distribution, this setting will not be preserved.
I'm going to handle the cache detection issue in this bug. The built-in issue I'll handle in bug 1623597, since I think that needs a little bit of its own focus to ensure there's no separate issue with that.
|
Search Engine Cache corruption detection is incorrectly handling distributions After doing some detailed analysis of the telemetry data we're receiving about cache corruption, I realised that we are always detecting distributions as having corrupt caches. This is because of two reasons:
* Distribution engines are loaded separately from the legacy config, so we don't know how many engines would be loaded when we check the cache. As a result, the distribution is likely to have more engines than we expect, and therefore we think the cache is corrupt.
* Distribution engines are not being marked as built-in. This will also potentially confuse the detection, as we're comparing built-in engines only (bug 1623597)
There's a couple of adverse effects as a result of this:
* We'll be rebuilding the search engine cache every start-up, which may affect start-up performance (though I expect the effect to be small).
* If the user removes an engine that is added or altered by the distribution, this setting will not be preserved.
I'm going to handle the cache detection issue in this bug. The built-in issue I'll handle in bug 1623597, since I think that needs a little bit of its own focus to ensure there's no separate issue with that.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-19 11:35:17+00:00
|
2020-03-30 09:15:20+00:00
| 265 | 1 |
1623678
|
Replace #d74345 with an accessible CSS variable
|
https://searchfox.org/mozilla-central/search?q=color%3A+%23d74345%3B&case=false®exp=false&path=
It should be a CSS variable with accessible colors for each theme. For `#d74345`, the dark theme contrast is 2.00 and the light theme contrast is 4.39 (checked using the a11y inspector), while the WCAG standards asks for at least 4.5 for normal text, 3 for large text.
|
Replace #d74345 with an accessible CSS variable https://searchfox.org/mozilla-central/search?q=color%3A+%23d74345%3B&case=false®exp=false&path=
It should be a CSS variable with accessible colors for each theme. For `#d74345`, the dark theme contrast is 2.00 and the light theme contrast is 4.39 (checked using the a11y inspector), while the WCAG standards asks for at least 4.5 for normal text, 3 for large text.
|
P3
|
RESOLVED
|
DUPLICATE
|
2020-03-19 16:47:48+00:00
|
2020-03-26 12:56:31+00:00
| 131 | 3 |
1623695
|
String encoding issues in the Lockwise OS authentication dialog on Windows
|
From https://bugzilla.mozilla.org/show_bug.cgi?id=1194529#c24,
"the Italian version of Windows/Firefox shows strange chars in the authentication window."
See attached screenshot.
|
String encoding issues in the Lockwise OS authentication dialog on Windows From https://bugzilla.mozilla.org/show_bug.cgi?id=1194529#c24,
"the Italian version of Windows/Firefox shows strange chars in the authentication window."
See attached screenshot.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-19 17:42:37+00:00
|
2020-03-26 09:07:41+00:00
| 71 | 1 |
1623732
|
Intermittent TEST-UNEXPECTED-TIMEOUT | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js | application timed out after 370 seconds with no output
|
**Filed by:** cbrindusan [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer.html#?job_id=293878261&repo=mozilla-central
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NmAxZKKTTIONvZSHqNUPHA/runs/0/artifacts/public/logs/live_backing.log
---
[task 2020-03-19T16:09:55.099Z] 16:09:55 INFO - TEST-START | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js
[task 2020-03-19T16:09:55.665Z] 16:09:55 INFO - GECKO(2952) | ###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Buffered messages logged at 16:09:55
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Entering test bound test_main_flow
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Test that we show the first alert correctly for a recent breach.
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Buffered messages finished
[task 2020-03-19T16:16:05.665Z] 16:16:05 ERROR - TEST-UNEXPECTED-TIMEOUT | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js | application timed out after 370 seconds with no output
|
Intermittent TEST-UNEXPECTED-TIMEOUT | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js | application timed out after 370 seconds with no output **Filed by:** cbrindusan [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer.html#?job_id=293878261&repo=mozilla-central
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NmAxZKKTTIONvZSHqNUPHA/runs/0/artifacts/public/logs/live_backing.log
---
[task 2020-03-19T16:09:55.099Z] 16:09:55 INFO - TEST-START | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js
[task 2020-03-19T16:09:55.665Z] 16:09:55 INFO - GECKO(2952) | ###!!! [Parent][RunMessage] Error: Channel closing: too late to send/recv, messages will be lost
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Buffered messages logged at 16:09:55
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Entering test bound test_main_flow
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Test that we show the first alert correctly for a recent breach.
[task 2020-03-19T16:16:05.665Z] 16:16:05 INFO - Buffered messages finished
[task 2020-03-19T16:16:05.665Z] 16:16:05 ERROR - TEST-UNEXPECTED-TIMEOUT | browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js | application timed out after 370 seconds with no output
|
P5
|
RESOLVED
|
INCOMPLETE
|
2020-03-19 19:55:30+00:00
|
2020-04-14 17:04:35+00:00
| 496 | 5 |
1623740
|
Allow the setting (and locking) of the default Autoplay value
|
In bug 1588197 we added support for enabling autoplay for domains, but we didn't provide a way to set the global default.
We should add that.
|
Allow the setting (and locking) of the default Autoplay value In bug 1588197 we added support for enabling autoplay for domains, but we didn't provide a way to set the global default.
We should add that.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-19 20:23:59+00:00
|
2020-04-28 13:03:47+00:00
| 50 | 3 |
1623861
|
[macOS] The operating system’s authentication dialog can't be accepted if the OS doesn't have any password set
|
[Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200319215651)
[Affected Platforms]:
- Mac 10.15.3
- Mac 10.14.6
[Prerequisites]:
- Have a profile with at least one saved login.
- No OS password is set.
[Steps to reproduce]:
1. Open the latest Nightly Firefox browser.
2. Navigate to the "about:logins" page and select a saved password.
3. Click on the "Show Password" or "Copy" or "Edit" button from the login item.
4. Observe the behavior.
[Expected result]:
- The password is shown or copied or the edit more is opened without entering any password.
[Actual result]:
- The operating system’s authentication dialog is displayed even if no OS password is set.
[Notes]:
- The issue is also reproducible if trying to check the "Use a master password" option from "about:preferences#privacy" page.
- The OS auth is triggered and the "OK" button is clicked two times, the dialog is dismissed. However, this doesn't happen if an OS password is set. This behavior can be observed in the screen recording added bellow.
- No errors are displayed in the browser console.
- This issue is no longer reproducible on Windows.
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=13FB54xqZ04jZ9-a3UskR-nF4X1im9WvP).
|
[macOS] The operating system’s authentication dialog can't be accepted if the OS doesn't have any password set [Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200319215651)
[Affected Platforms]:
- Mac 10.15.3
- Mac 10.14.6
[Prerequisites]:
- Have a profile with at least one saved login.
- No OS password is set.
[Steps to reproduce]:
1. Open the latest Nightly Firefox browser.
2. Navigate to the "about:logins" page and select a saved password.
3. Click on the "Show Password" or "Copy" or "Edit" button from the login item.
4. Observe the behavior.
[Expected result]:
- The password is shown or copied or the edit more is opened without entering any password.
[Actual result]:
- The operating system’s authentication dialog is displayed even if no OS password is set.
[Notes]:
- The issue is also reproducible if trying to check the "Use a master password" option from "about:preferences#privacy" page.
- The OS auth is triggered and the "OK" button is clicked two times, the dialog is dismissed. However, this doesn't happen if an OS password is set. This behavior can be observed in the screen recording added bellow.
- No errors are displayed in the browser console.
- This issue is no longer reproducible on Windows.
- Attached a screen recording with the issue: [link](https://drive.google.com/open?id=13FB54xqZ04jZ9-a3UskR-nF4X1im9WvP).
|
P1
|
VERIFIED
|
FIXED
|
2020-03-20 11:26:35+00:00
|
2020-03-31 13:02:54+00:00
| 375 | 1 |
1623888
|
URL spoof: RTL character in URL flips domain and path if domain contains no directional characters (e.g. ip address)
|
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
1) Post the following link in the status bar: 127.0.0.1/ا/http://attack.com
Actual results:
You would notice that the URL has been flipped from Right to left and the status bar dispays http://attack.com/ا/127.0.0.1 while it displays the content from the IP address.
Expected results:
Ip address should be shown first.
|
URL spoof: RTL character in URL flips domain and path if domain contains no directional characters (e.g. ip address) User Agent: Mozilla/5.0 (Windows NT 6.1; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
1) Post the following link in the status bar: 127.0.0.1/ا/http://attack.com
Actual results:
You would notice that the URL has been flipped from Right to left and the status bar dispays http://attack.com/ا/127.0.0.1 while it displays the content from the IP address.
Expected results:
Ip address should be shown first.
|
P2
|
VERIFIED
|
FIXED
|
2020-03-20 13:37:29+00:00
|
2024-05-30 17:12:44+00:00
| 161 | 2 |
1623905
|
The CFR button is not minimized when clicking the 'Not Now' option
|
**Affected platforms**
* Windows
* Ubuntu
* macOS
**Steps to reproduce**
1. Launch Firefox.
2. Trigger the CFR addon recommandation.
3. Click the 'Not Now' option displayed on the doorhanger.
**Expected result**
* The doorhanger is dismissed and the CFR button is minimized, but still displayed.
**Actual result**
* The CFR button is not minimized.
**Regression range**
* Last good revision: e1a3a62f20351336f9afbcd3df26996b2acc14ae
* First bad revision: 532b71703571a8a65e58330208afa0b28febfba8
Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=e1a3a62f20351336f9afbcd3df26996b2acc14ae&tochange=532b71703571a8a65e58330208afa0b28febfba8
**Additional notes**
* This issue occurs for the CFR pin tab recommandation as well.
|
The CFR button is not minimized when clicking the 'Not Now' option **Affected platforms**
* Windows
* Ubuntu
* macOS
**Steps to reproduce**
1. Launch Firefox.
2. Trigger the CFR addon recommandation.
3. Click the 'Not Now' option displayed on the doorhanger.
**Expected result**
* The doorhanger is dismissed and the CFR button is minimized, but still displayed.
**Actual result**
* The CFR button is not minimized.
**Regression range**
* Last good revision: e1a3a62f20351336f9afbcd3df26996b2acc14ae
* First bad revision: 532b71703571a8a65e58330208afa0b28febfba8
Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=e1a3a62f20351336f9afbcd3df26996b2acc14ae&tochange=532b71703571a8a65e58330208afa0b28febfba8
**Additional notes**
* This issue occurs for the CFR pin tab recommandation as well.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-20 14:26:57+00:00
|
2020-04-03 08:53:30+00:00
| 307 | 1 |
1623944
|
"Okay, got it" button from Search tips and search Interventions is not easily visible in dark theme
|
##### [Environment:]
Windows 10, Mac 10.13, Ubuntu 18.04
Firefox 75.0b9
Firefox Nightly 76 (03.20.2020)
##### [Preconditions:]
1. Create a new profile.
2. Verify that no updates have been made in the last 24h (open about:support, update folder , open folder and delete update.xml if any is listed)
3. Set profile age to be older by running the following snippet in browser console: (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
4. Set duckduckgo as default Search engine.
5. Go to customize and set dark mode.
6. Restart browser with restore session and a random youtube.com/video loaded
##### [Steps:]
1. Browser is opened with your custom youtube link restored.
2. Focus address bar and type duckduckgo.com
##### [Actual Result:]
Search tip is displayed but the button "Okay, got it" is not easily visible
##### [Expected Result:]
Search tip should be displayed and all the elements should be easily visible and reachable.
##### [Note:]
Same behavior for Search Interventions
|
"Okay, got it" button from Search tips and search Interventions is not easily visible in dark theme ##### [Environment:]
Windows 10, Mac 10.13, Ubuntu 18.04
Firefox 75.0b9
Firefox Nightly 76 (03.20.2020)
##### [Preconditions:]
1. Create a new profile.
2. Verify that no updates have been made in the last 24h (open about:support, update folder , open folder and delete update.xml if any is listed)
3. Set profile age to be older by running the following snippet in browser console: (async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
4. Set duckduckgo as default Search engine.
5. Go to customize and set dark mode.
6. Restart browser with restore session and a random youtube.com/video loaded
##### [Steps:]
1. Browser is opened with your custom youtube link restored.
2. Focus address bar and type duckduckgo.com
##### [Actual Result:]
Search tip is displayed but the button "Okay, got it" is not easily visible
##### [Expected Result:]
Search tip should be displayed and all the elements should be easily visible and reachable.
##### [Note:]
Same behavior for Search Interventions
|
P2
|
RESOLVED
|
FIXED
|
2020-03-20 16:21:38+00:00
|
2020-05-27 15:19:42+00:00
| 370 | 2 |
1623978
|
Google homepage notification interrupts onboarding Search Tip
|
Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on:
Windows 10 x64 (affected)
Ubuntu 18.04 x64 (affected)
MacOS 10.14 (affected)
Steps to reproduce
- Launch Firefox (new profile)
- enable devtools.chrome.enabled in about config
- Hamburger menu> set options "restore previous session" checked
- Hamburger menu>set options "always check if firefox is your default browser" unchecked
- leave just one tab with a youtube video.
- web developer> browser console> enter this snippet and hit enter:
(async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
- close browser console.
- close firefox (only has a youtube tab)
- Reopen firefox
- type google.com in megabar
Actual Result:
There is an actual random result on the intervention. Sometimes it works but most of the time it does not. It shows for a micro second and dissapears completely.
There is also a blue notification showing in spanish (see screenshot). Even accepting the blue notification and repeating the process we get random results also, sometimes we repeat it without the blue bar at the top and intervention shows up, and most of the times intervention does not show up.
Expected result
Intervention should appear always.
|
Google homepage notification interrupts onboarding Search Tip Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on:
Windows 10 x64 (affected)
Ubuntu 18.04 x64 (affected)
MacOS 10.14 (affected)
Steps to reproduce
- Launch Firefox (new profile)
- enable devtools.chrome.enabled in about config
- Hamburger menu> set options "restore previous session" checked
- Hamburger menu>set options "always check if firefox is your default browser" unchecked
- leave just one tab with a youtube video.
- web developer> browser console> enter this snippet and hit enter:
(async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
- close browser console.
- close firefox (only has a youtube tab)
- Reopen firefox
- type google.com in megabar
Actual Result:
There is an actual random result on the intervention. Sometimes it works but most of the time it does not. It shows for a micro second and dissapears completely.
There is also a blue notification showing in spanish (see screenshot). Even accepting the blue notification and repeating the process we get random results also, sometimes we repeat it without the blue bar at the top and intervention shows up, and most of the times intervention does not show up.
Expected result
Intervention should appear always.
|
P2
|
VERIFIED
|
FIXED
|
2020-03-20 18:18:44+00:00
|
2020-04-07 14:53:27+00:00
| 362 | 2 |
1623980
|
Search interventions : Letters appear cut if window size is small
|
Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on
Windows 10 x64 (affected)
Ubuntu 18.04 x64 (affected)
MacOS 10.14 (affected)
Steps to reproduce
-Launch Firefox
-Resize window to < 25%
-Type "update firefox"" in megabar (see screenshot, left side of refresh firefox button)
Actual Result:
intervention appears but some letters get cut
Expected result
letters should appear correctly
|
Search interventions : Letters appear cut if window size is small Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on
Windows 10 x64 (affected)
Ubuntu 18.04 x64 (affected)
MacOS 10.14 (affected)
Steps to reproduce
-Launch Firefox
-Resize window to < 25%
-Type "update firefox"" in megabar (see screenshot, left side of refresh firefox button)
Actual Result:
intervention appears but some letters get cut
Expected result
letters should appear correctly
|
P4
|
VERIFIED
|
FIXED
|
2020-03-20 18:30:34+00:00
|
2020-04-13 14:35:58+00:00
| 114 | 4 |
1624003
|
Search Tips : screen reader on ubuntu not working
|
Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on
Windows 10 x64 ( not affected, used nvda)
Ubuntu 18.04 x64 (affected used orca)
Steps to reproduce
- Launch Firefox (new profile)
- enable devtools.chrome.enabled in about config
- set options "always check if firefox is your default browser" unchecked
- leave just one tab with a youtube video.
- web developer> browser console, enter this snippet:
(async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
- close browser console.
- close firefox
- Reopen firefox
Actual Result:
new tab opens, search tip is displayed , but screen reader mentions other words
Expected result
screen reader should mention search tip text
|
Search Tips : screen reader on ubuntu not working Affected Versions
Nightly 76.0a1
Beta 75.0b6
Tested on
Windows 10 x64 ( not affected, used nvda)
Ubuntu 18.04 x64 (affected used orca)
Steps to reproduce
- Launch Firefox (new profile)
- enable devtools.chrome.enabled in about config
- set options "always check if firefox is your default browser" unchecked
- leave just one tab with a youtube video.
- web developer> browser console, enter this snippet:
(async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();
- close browser console.
- close firefox
- Reopen firefox
Actual Result:
new tab opens, search tip is displayed , but screen reader mentions other words
Expected result
screen reader should mention search tip text
|
P3
|
RESOLVED
|
WONTFIX
|
2020-03-20 19:11:22+00:00
|
2020-04-29 19:27:44+00:00
| 256 | 3 |
1624044
|
"Restore Previous Session" item is always greyed out after landing patch from bug #1622195
|
[Tracking Requested - why for this release]: Regression
STR:
1. Open few tabs and/or windows
2. Close them by selecting "Exit" item in "hamburger" menu or by pressing Ctrl+Shift+Q keyboard shortcut
3. Restore tabs and/or windows by selecting "Restore Previous Session" item in "hamburger" menu
and see that you can't, because it's always greyed out.
Recent regression, maybe it could be because of bug #1507287.
@ Alphan Chen [:alchen] - Any ideas or it's missed call?
|
"Restore Previous Session" item is always greyed out after landing patch from bug #1622195 [Tracking Requested - why for this release]: Regression
STR:
1. Open few tabs and/or windows
2. Close them by selecting "Exit" item in "hamburger" menu or by pressing Ctrl+Shift+Q keyboard shortcut
3. Restore tabs and/or windows by selecting "Restore Previous Session" item in "hamburger" menu
and see that you can't, because it's always greyed out.
Recent regression, maybe it could be because of bug #1507287.
@ Alphan Chen [:alchen] - Any ideas or it's missed call?
|
P1
|
VERIFIED
|
FIXED
|
2020-03-20 21:45:22+00:00
|
2020-04-04 11:38:18+00:00
| 147 | 1 |
1624083
|
After loading restored tab, firefox navigates to new URL
|
I just quit Firefox to change a setting (disabling web-render, but I've seen this on random session restores a few times).
I had three tabs open:
1. Gmail
2. A blog post
3. about:config
When I restarted, the three tabs were what I expected, and about:config loaded again. Cool.
Then I switched back to tab 2, which had the blog post i was reading. The tab text had the right info on it, but when I switched to the tab firefox navigated to an old URL that I think was in that tab earlier.
Then, while writing this bug report I bothered to load the gmail tab: Same thing happened. Sudden navigation.
I say navigation because in both instances the expected tab shows up in the back button history as the previous page, and hitting back takes me back to the expected page.
This has happened intermittently on restart for nightly update for a while.
|
After loading restored tab, firefox navigates to new URL I just quit Firefox to change a setting (disabling web-render, but I've seen this on random session restores a few times).
I had three tabs open:
1. Gmail
2. A blog post
3. about:config
When I restarted, the three tabs were what I expected, and about:config loaded again. Cool.
Then I switched back to tab 2, which had the blog post i was reading. The tab text had the right info on it, but when I switched to the tab firefox navigated to an old URL that I think was in that tab earlier.
Then, while writing this bug report I bothered to load the gmail tab: Same thing happened. Sudden navigation.
I say navigation because in both instances the expected tab shows up in the back button history as the previous page, and hitting back takes me back to the expected page.
This has happened intermittently on restart for nightly update for a while.
|
P3
|
NEW
|
2020-03-21 02:15:14+00:00
|
2022-09-26 12:15:03+00:00
| 220 | 3 |
|
1624122
|
Token not converted to string in File Type dialog box for PDF files
|
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Options -> Applications -> Select PDF Content Type -> Click the Down Arrow -> Click "Application Details" -> Dialog box opens.
Actual results:
First line in content area of the dialog box is:
"The following applications can be used to handle {$type} content."
Attached image shows result.
Expected results:
"The following applications can be used to handle PDF content."
Notes:
This doesn't seems to happen with other content types.
The "Application Details" option doesn't show up with all content types.
I only noticed this after I added a second application option for opening PDF files. It may or may not have been a problem before I did this.
|
Token not converted to string in File Type dialog box for PDF files User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
Options -> Applications -> Select PDF Content Type -> Click the Down Arrow -> Click "Application Details" -> Dialog box opens.
Actual results:
First line in content area of the dialog box is:
"The following applications can be used to handle {$type} content."
Attached image shows result.
Expected results:
"The following applications can be used to handle PDF content."
Notes:
This doesn't seems to happen with other content types.
The "Application Details" option doesn't show up with all content types.
I only noticed this after I added a second application option for opening PDF files. It may or may not have been a problem before I did this.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-21 14:11:27+00:00
|
2020-04-01 14:10:30+00:00
| 204 | 1 |
1624131
|
Firefox hits 5.3GB memory cap and then cannot function
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
I have roughly 9k tabs suspended open. When opening firefox and it it seems to reach a memory limit of 5.3GB which then makes that firefox stops functioning completely, the windows no longer render correctly and it does not respond, if you bring the tab count down to get under that 5.3GB memory limit to about 5.1GB then it can be used again with no issues.
Actual results:
As soon as firefox hit 5300MB it stops rendering pages and stops responding properly. I have attached a memory snap shot at the time when it was misbehaving and then the screenshots of task manager after doing clear history.
Expected results:
It should just continue to work without this behaviour
|
Firefox hits 5.3GB memory cap and then cannot function User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
I have roughly 9k tabs suspended open. When opening firefox and it it seems to reach a memory limit of 5.3GB which then makes that firefox stops functioning completely, the windows no longer render correctly and it does not respond, if you bring the tab count down to get under that 5.3GB memory limit to about 5.1GB then it can be used again with no issues.
Actual results:
As soon as firefox hit 5300MB it stops rendering pages and stops responding properly. I have attached a memory snap shot at the time when it was misbehaving and then the screenshots of task manager after doing clear history.
Expected results:
It should just continue to work without this behaviour
|
P5
|
NEW
|
2020-03-21 15:35:57+00:00
|
2023-07-13 16:00:00+00:00
| 212 | 5 |
|
1624133
|
Do not show me Pocket when I have Pocket disabled
|
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
1. Use about:config to disable pocket (extensions.pocket.api=gibberish, extensions.pocket.enabled=false, extensions.pocket.site=gibberish, browser.newtabpage.activity-stream.section.highlights.includePocket=false)
2. Upgrade Nightly.
3. Check about:config, all Pocket-related options are still off/hampered.
Actual results:
I observe Pocket on my Firefox Home screen. This has happened maybe a half a dozen times or more in the last month of being on Nightly.
Expected results:
I should not see Pocket, ever. Not as a mozilla.org new install/upgrade feature upsell. Not as a Firefox Homescreen ad. Not as a re-occurring feature that seem to ignore it's own feature disable-flag.
Pocket seems to be a recurring issue. Would Mozllla support a flag that would finally fully and permanently disable Pocket in Firefox?
|
Do not show me Pocket when I have Pocket disabled User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
1. Use about:config to disable pocket (extensions.pocket.api=gibberish, extensions.pocket.enabled=false, extensions.pocket.site=gibberish, browser.newtabpage.activity-stream.section.highlights.includePocket=false)
2. Upgrade Nightly.
3. Check about:config, all Pocket-related options are still off/hampered.
Actual results:
I observe Pocket on my Firefox Home screen. This has happened maybe a half a dozen times or more in the last month of being on Nightly.
Expected results:
I should not see Pocket, ever. Not as a mozilla.org new install/upgrade feature upsell. Not as a Firefox Homescreen ad. Not as a re-occurring feature that seem to ignore it's own feature disable-flag.
Pocket seems to be a recurring issue. Would Mozllla support a flag that would finally fully and permanently disable Pocket in Firefox?
|
P3
|
UNCONFIRMED
|
2020-03-21 16:01:53+00:00
|
2020-05-12 00:51:57+00:00
| 264 | 3 |
|
1624300
|
Search Tips/Interventions buttons are not visible in High Contrast mode (Windows)
|
##### [Environment:]
tested on:
- affected: Windows 10, Windows 7 Pro
- not affected: Mac 10.13, Mac 10.15.2, Ubuntu 18.04
with:
- 75.0b7 20200322132212
- 76.0a1 20200323092419
##### [Steps to reproduce:]
1. Set Windows high contrast on (any of the high contrast profiles will do)
2. Launch Firefox (new profile)
3. Open Addressbar and type *update firefox*
##### [Actual result:]
Intervention is displyed.
The buttons for the Intervention/Tips are not visible in Windows high contrast modes.
##### [Expected result:]
Intervention is displyed.
The buttons for the Intervention/Tips are visible in Windows high contrast modes.
##### [Note:]
1. IMO, possibly the same root cause as bug 1623944.
2. This bug lists the STR for Interventions; for STR to trigger Search Tips, see https://bugzilla.mozilla.org/show_bug.cgi?id=1623944#c0
|
Search Tips/Interventions buttons are not visible in High Contrast mode (Windows) ##### [Environment:]
tested on:
- affected: Windows 10, Windows 7 Pro
- not affected: Mac 10.13, Mac 10.15.2, Ubuntu 18.04
with:
- 75.0b7 20200322132212
- 76.0a1 20200323092419
##### [Steps to reproduce:]
1. Set Windows high contrast on (any of the high contrast profiles will do)
2. Launch Firefox (new profile)
3. Open Addressbar and type *update firefox*
##### [Actual result:]
Intervention is displyed.
The buttons for the Intervention/Tips are not visible in Windows high contrast modes.
##### [Expected result:]
Intervention is displyed.
The buttons for the Intervention/Tips are visible in Windows high contrast modes.
##### [Note:]
1. IMO, possibly the same root cause as bug 1623944.
2. This bug lists the STR for Interventions; for STR to trigger Search Tips, see https://bugzilla.mozilla.org/show_bug.cgi?id=1623944#c0
|
P1
|
VERIFIED
|
FIXED
|
2020-03-23 13:17:42+00:00
|
2020-03-31 15:27:09+00:00
| 278 | 1 |
1624330
|
Snippet dismiss option overlaps its button at browser resize
|
**[Affected versions]:**
- Firefox Release 74.0 Build ID 20200309095159
- Firefox Beta 75.0b7 Build ID 20200322132212
- Firefox Nightly 76.0a1 Build ID 20200323092419
**[Affected Platforms]:**
- Windows 10
- Mac OS 10.15.3
- Ubuntu 18.04 x64
**[Prerequisites]:**
- Have a Firefox profile with the following pref in the "about:config" page:
- "browser.newtabpage.activity-stream.asrouterExperimentEnabled" with "true" value;
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites.
2. Navigate to "about:config#asrouter" page.
3. Click the “Show” button for a long text snippet with a button. (i.e. "NEWSLETTER_TEST_DEFAULTS")
4. Horizontally resize the browser to approximately half.
**[Expected result]:**
There are no layout issues.
**[Actual result]:**
Snippet dismiss option overlaps its button.
**[Notes]:**
- Issue can be reproduced with live snippets also, as the majority have long text and a button.
- Large screens need browser resize past half.
- Small or minimum browser resize wraps the snippet correctly.
|
Snippet dismiss option overlaps its button at browser resize **[Affected versions]:**
- Firefox Release 74.0 Build ID 20200309095159
- Firefox Beta 75.0b7 Build ID 20200322132212
- Firefox Nightly 76.0a1 Build ID 20200323092419
**[Affected Platforms]:**
- Windows 10
- Mac OS 10.15.3
- Ubuntu 18.04 x64
**[Prerequisites]:**
- Have a Firefox profile with the following pref in the "about:config" page:
- "browser.newtabpage.activity-stream.asrouterExperimentEnabled" with "true" value;
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites.
2. Navigate to "about:config#asrouter" page.
3. Click the “Show” button for a long text snippet with a button. (i.e. "NEWSLETTER_TEST_DEFAULTS")
4. Horizontally resize the browser to approximately half.
**[Expected result]:**
There are no layout issues.
**[Actual result]:**
Snippet dismiss option overlaps its button.
**[Notes]:**
- Issue can be reproduced with live snippets also, as the majority have long text and a button.
- Large screens need browser resize past half.
- Small or minimum browser resize wraps the snippet correctly.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-23 14:55:11+00:00
|
2020-03-30 21:44:05+00:00
| 344 | 1 |
1624457
|
Requests for opensearch.xml don't send cookies
|
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36
Steps to reproduce:
- Find a search engine whose opensearch.xml file requires authentication
- Try to add it to Firefox
Actual results:
An error popup appears that says "Invalid Format: Firefox could not install the search engine from: https://[redacted]/opensearch.xml"
Expected results:
The search engine should be installed
|
Requests for opensearch.xml don't send cookies User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36
Steps to reproduce:
- Find a search engine whose opensearch.xml file requires authentication
- Try to add it to Firefox
Actual results:
An error popup appears that says "Invalid Format: Firefox could not install the search engine from: https://[redacted]/opensearch.xml"
Expected results:
The search engine should be installed
|
P5
|
NEW
|
2020-03-23 21:28:57+00:00
|
2022-09-27 11:26:07+00:00
| 149 | 5 |
|
1624511
|
Tab crashes cause total data loss (session/URL/etc.) in all pinned tabs loaded in that content process
|
Twice in the last few days tab crashes on Nightly have caused total data loss (including the URL and session back/forward history) of all the tabs in that content process. This includes tabs that had been restored for a long time so it wasn't a race condition losing the URL while it's loading (there are known bugs about that). I clicked "Restore All Tabs" on the tab crashed page btw. I don't see anything relevant in the Browser Console.
Notice in my screenshot that the tab title is "New Tab", the back and forward buttons are disabled and the address bar is blank. The only thing that remains is the favicon but I have no idea what bugs I had pinned since the favicons are the same…
Expected result:
I should never lose the session history from crashed tabs and I definitely shouldn't lose the tab's URL.
I didn't try to reproduce the problem in Safe Mode. I filed this is Tabbed Browser, not Session Restore since IMO the URL in the address bar and back/forward history shouldn't have been lost in the first place.
[Tracking Requested - why for this release]: Tab data is lost upon content process crash… the whole point of session restore was to
|
Tab crashes cause total data loss (session/URL/etc.) in all pinned tabs loaded in that content process Twice in the last few days tab crashes on Nightly have caused total data loss (including the URL and session back/forward history) of all the tabs in that content process. This includes tabs that had been restored for a long time so it wasn't a race condition losing the URL while it's loading (there are known bugs about that). I clicked "Restore All Tabs" on the tab crashed page btw. I don't see anything relevant in the Browser Console.
Notice in my screenshot that the tab title is "New Tab", the back and forward buttons are disabled and the address bar is blank. The only thing that remains is the favicon but I have no idea what bugs I had pinned since the favicons are the same…
Expected result:
I should never lose the session history from crashed tabs and I definitely shouldn't lose the tab's URL.
I didn't try to reproduce the problem in Safe Mode. I filed this is Tabbed Browser, not Session Restore since IMO the URL in the address bar and back/forward history shouldn't have been lost in the first place.
[Tracking Requested - why for this release]: Tab data is lost upon content process crash… the whole point of session restore was to
|
P1
|
VERIFIED
|
FIXED
|
2020-03-24 03:03:36+00:00
|
2020-04-17 15:30:45+00:00
| 293 | 1 |
1624546
|
Include vcruntime140_1.dll for VS2019 16.5 x64 from the redist directory in the package
|
At the moment the vcruntime140_1.dll for VS2019 16.5 x64 from the redist directory is not included in the package.
|
Include vcruntime140_1.dll for VS2019 16.5 x64 from the redist directory in the package At the moment the vcruntime140_1.dll for VS2019 16.5 x64 from the redist directory is not included in the package.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-24 09:18:33+00:00
|
2023-06-01 17:48:04+00:00
| 65 | 3 |
1624567
|
Account panel gets cut off horizontally when a long fxa account name is displayed
|
See screenshot.
On OSX, 13 inch macbook with Display set to "Larger text" (the left most option).
The right hand side of the popup the icons get cut off.
|
Account panel gets cut off horizontally when a long fxa account name is displayed See screenshot.
On OSX, 13 inch macbook with Display set to "Larger text" (the left most option).
The right hand side of the popup the icons get cut off.
|
P3
|
RESOLVED
|
FIXED
|
2020-03-24 11:50:33+00:00
|
2021-09-03 17:47:23+00:00
| 58 | 3 |
1624590
|
[macOS] - Search checkboxes in about:preferences page is truncated on shrinking browser
|
**Affected versions**
* 75.0b7, 76.0a1 (2020-03-22)
**Affected platforms**
* macOS 10.15
**Steps to reproduce**
1. Launch Firefox, access about:preferences#search
2. Resize width until text from sections is no longer displayed;
3. Click on the SearchBar buttons for any of the options;
**Expected result**
* no issues occur;
**Actual result**
* on-click effect is truncated (circle not complete);
* as page is resized top circle gets truncated as well;
**Regression range**
* will provide one asap;
**Additional notes**
* attached screenshot with the issue.
|
[macOS] - Search checkboxes in about:preferences page is truncated on shrinking browser **Affected versions**
* 75.0b7, 76.0a1 (2020-03-22)
**Affected platforms**
* macOS 10.15
**Steps to reproduce**
1. Launch Firefox, access about:preferences#search
2. Resize width until text from sections is no longer displayed;
3. Click on the SearchBar buttons for any of the options;
**Expected result**
* no issues occur;
**Actual result**
* on-click effect is truncated (circle not complete);
* as page is resized top circle gets truncated as well;
**Regression range**
* will provide one asap;
**Additional notes**
* attached screenshot with the issue.
|
P3
|
NEW
|
2020-03-24 13:41:08+00:00
|
2020-05-12 00:55:19+00:00
| 175 | 3 |
|
1624608
|
Drop down searched strings are no longer highlighted after following certain steps
|
*Affected versions*
* 76.0a1 (20200323092419)
* 75.0b7 (20200322132212)
* 74.0 (20200309095159)
*Affected platforms*
* Windows 10 x64
* Ubuntu 18.04
* macOS 10.15
*Steps to reproduce*
1. Open Firefox and go to about:preferences#home.
2. Click on “New tabs” dropdown and select “Blank Page”
3. Search for `firefox` in Find in Option.
4. Click again on “New tabs” dropdown and observe the Firefox Home string.
*Expected result*
* `Firefox` string is highlighted.
*Actual result*
* `Firefox` string is not highlighted.
*Regression Range*
* Last good revision: ff20472890a1e3fa12e9b24bd9ef0520faea54da
* First bad revision: 37d758a90ed9fc26c1d09993ddf73823295ea5d0
* Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=ff20472890a1e3fa12e9b24bd9ef0520faea54da&tochange=37d758a90ed9fc26c1d09993ddf73823295ea5d0
*Notes*
* Attached a screen recording with the issue.
|
Drop down searched strings are no longer highlighted after following certain steps *Affected versions*
* 76.0a1 (20200323092419)
* 75.0b7 (20200322132212)
* 74.0 (20200309095159)
*Affected platforms*
* Windows 10 x64
* Ubuntu 18.04
* macOS 10.15
*Steps to reproduce*
1. Open Firefox and go to about:preferences#home.
2. Click on “New tabs” dropdown and select “Blank Page”
3. Search for `firefox` in Find in Option.
4. Click again on “New tabs” dropdown and observe the Firefox Home string.
*Expected result*
* `Firefox` string is highlighted.
*Actual result*
* `Firefox` string is not highlighted.
*Regression Range*
* Last good revision: ff20472890a1e3fa12e9b24bd9ef0520faea54da
* First bad revision: 37d758a90ed9fc26c1d09993ddf73823295ea5d0
* Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=ff20472890a1e3fa12e9b24bd9ef0520faea54da&tochange=37d758a90ed9fc26c1d09993ddf73823295ea5d0
*Notes*
* Attached a screen recording with the issue.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-24 14:33:35+00:00
|
2020-06-05 09:09:28+00:00
| 352 | 1 |
1624614
|
Start download animation played after canceling download and restarting browser
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
Steps to reproduce:
1. begin downloading a file (big enough to have time to complete next steps)
2. close browser
3. confirm canceling pending download
4. open browser
Actual results:
animation of starting download is played (no download starts ofc)
Expected results:
Well... nothing. Nothing should happen.
|
Start download animation played after canceling download and restarting browser User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
Steps to reproduce:
1. begin downloading a file (big enough to have time to complete next steps)
2. close browser
3. confirm canceling pending download
4. open browser
Actual results:
animation of starting download is played (no download starts ofc)
Expected results:
Well... nothing. Nothing should happen.
|
P3
|
NEW
|
2020-03-24 14:57:44+00:00
|
2020-05-12 00:55:36+00:00
| 122 | 3 |
|
1624674
|
Mac touchbar makes it easy to accidentally prepend '+ ', '% ', etc. restriction tokens/characters to the urlbar input
|
This has been happening for a while and I can't reliably reproduce it.
|
Mac touchbar makes it easy to accidentally prepend '+ ', '% ', etc. restriction tokens/characters to the urlbar input This has been happening for a while and I can't reliably reproduce it.
|
P5
|
NEW
|
2020-03-24 18:22:15+00:00
|
2020-07-09 04:45:29+00:00
| 51 | 5 |
|
1624820
|
aboutNetError's setNetErrorMessageFromCode likes to pass empty strings to document.l10n.formatValues which produces errors
|
We apparently don't hit this in automation or it'd cause failures there, I'm pretty sure.
STR:
1. open nightly with a new profile
2. open youtube
ER:
No internal error messages
AR:
```
console.warn: "[fluent] Missing translations in en-US: ."
```
This is because we're falling back to an empty error code string, which we then pass to `formatValue`.
We shouldn't do this - we should avoid calling `formatValue` if we don't have a string to look for. Also, there should be a test for whatever is happening behind the scenes here.
Johann, is there a good component for this stuff?
|
aboutNetError's setNetErrorMessageFromCode likes to pass empty strings to document.l10n.formatValues which produces errors We apparently don't hit this in automation or it'd cause failures there, I'm pretty sure.
STR:
1. open nightly with a new profile
2. open youtube
ER:
No internal error messages
AR:
```
console.warn: "[fluent] Missing translations in en-US: ."
```
This is because we're falling back to an empty error code string, which we then pass to `formatValue`.
We shouldn't do this - we should avoid calling `formatValue` if we don't have a string to look for. Also, there should be a test for whatever is happening behind the scenes here.
Johann, is there a good component for this stuff?
|
P3
|
VERIFIED
|
FIXED
|
2020-03-25 10:45:51+00:00
|
2020-05-11 08:31:34+00:00
| 186 | 3 |
1624855
|
No file extension is appended if no extension is specified by the `download` attribute on a link
|
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
When using the download-attribute, like in
'<a href="/images/myw3schoolsimage.jpg" download="w3logo">'
from: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_a_download2
The downloaded file dosn't get a fileextiention.
Actual results:
The file is downloaded as w3logo
Expected results:
The file is downloaded as w3logo.jpg, as described in the w3schools.com test page.
Ubuntu can open the file fine, without a file extention, as it uses the mime/type to decide what program to open it with, so not a big problem.
|
No file extension is appended if no extension is specified by the `download` attribute on a link User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
When using the download-attribute, like in
'<a href="/images/myw3schoolsimage.jpg" download="w3logo">'
from: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_a_download2
The downloaded file dosn't get a fileextiention.
Actual results:
The file is downloaded as w3logo
Expected results:
The file is downloaded as w3logo.jpg, as described in the w3schools.com test page.
Ubuntu can open the file fine, without a file extention, as it uses the mime/type to decide what program to open it with, so not a big problem.
|
P3
|
NEW
|
2020-03-25 13:38:04+00:00
|
2020-05-12 00:06:55+00:00
| 242 | 3 |
|
1624868
|
Perma linux ccov TEST-UNEXPECTED-TIMEOUT | automation.py | application timed out after 370 seconds with no output [browser/base/content/test/performance/io]
|
See https://bugzilla.mozilla.org/show_bug.cgi?id=1414495#c376 through https://bugzilla.mozilla.org/show_bug.cgi?id=1414495#c393: on linux/ccov, browser-chrome mochitests on browser/base/content/test/performance/io perma-fail with a 370 second timeout because browser startup exceeds the 180 seconds that marionette waits for startup.
browser/base/content/test/performance/io/browser.ini defines extra prefs and environment and we expect the startup to be slow, more so on ccov.
|
Perma linux ccov TEST-UNEXPECTED-TIMEOUT | automation.py | application timed out after 370 seconds with no output [browser/base/content/test/performance/io] See https://bugzilla.mozilla.org/show_bug.cgi?id=1414495#c376 through https://bugzilla.mozilla.org/show_bug.cgi?id=1414495#c393: on linux/ccov, browser-chrome mochitests on browser/base/content/test/performance/io perma-fail with a 370 second timeout because browser startup exceeds the 180 seconds that marionette waits for startup.
browser/base/content/test/performance/io/browser.ini defines extra prefs and environment and we expect the startup to be slow, more so on ccov.
|
P1
|
RESOLVED
|
FIXED
|
2020-03-25 14:38:00+00:00
|
2020-09-30 23:15:28+00:00
| 192 | 1 |
1624878
|
Crash in [@ AsyncShutdownTimeout | profile-before-change | RemoteSettingsClient - finish IDB access.]
|
This bug is for crash report bp-c331ee2e-97b2-47f0-8fc4-679480200325.
```
Top 10 frames of crashing thread:
0 mozglue.dll mozalloc_abort memory/mozalloc/mozalloc_abort.cpp:33
1 xul.dll NS_DebugBreak xpcom/base/nsDebugImpl.cpp
2 xul.dll nsDebugImpl::Abort xpcom/base/nsDebugImpl.cpp:134
3 xul.dll XPTC__InvokebyIndex
4 @0x1d02591d09f
5 xul.dll static XPCWrappedNative::CallMethod js/xpconnect/src/XPCWrappedNative.cpp:1141
6 xul.dll XPC_WN_CallMethod js/xpconnect/src/XPCWrappedNativeJSOps.cpp:947
7 xul.dll js::InternalCallOrConstruct js/src/vm/Interpreter.cpp:568
8 xul.dll Interpret js/src/vm/Interpreter.cpp:3026
9 xul.dll js::InternalCallOrConstruct js/src/vm/Interpreter.cpp:603
```
Only a few reports until now, but this seems to have started with Nightly build 20200324214641.
|
Crash in [@ AsyncShutdownTimeout | profile-before-change | RemoteSettingsClient - finish IDB access.] This bug is for crash report bp-c331ee2e-97b2-47f0-8fc4-679480200325.
```
Top 10 frames of crashing thread:
0 mozglue.dll mozalloc_abort memory/mozalloc/mozalloc_abort.cpp:33
1 xul.dll NS_DebugBreak xpcom/base/nsDebugImpl.cpp
2 xul.dll nsDebugImpl::Abort xpcom/base/nsDebugImpl.cpp:134
3 xul.dll XPTC__InvokebyIndex
4 @0x1d02591d09f
5 xul.dll static XPCWrappedNative::CallMethod js/xpconnect/src/XPCWrappedNative.cpp:1141
6 xul.dll XPC_WN_CallMethod js/xpconnect/src/XPCWrappedNativeJSOps.cpp:947
7 xul.dll js::InternalCallOrConstruct js/src/vm/Interpreter.cpp:568
8 xul.dll Interpret js/src/vm/Interpreter.cpp:3026
9 xul.dll js::InternalCallOrConstruct js/src/vm/Interpreter.cpp:603
```
Only a few reports until now, but this seems to have started with Nightly build 20200324214641.
|
P3
|
REOPENED
|
2020-03-25 15:08:45+00:00
|
2025-02-13 21:22:56+00:00
| 403 | 3 |
|
1624951
|
Menupopup scroll arrows above a certain size make accessible/tests/mochitest/hittest/test_menu.xhtml and accessible/tests/mochitest/states/test_visibility.xhtml fail
|
See bug 1623015 comment 5 and below.
|
Menupopup scroll arrows above a certain size make accessible/tests/mochitest/hittest/test_menu.xhtml and accessible/tests/mochitest/states/test_visibility.xhtml fail See bug 1623015 comment 5 and below.
|
P2
|
NEW
|
2020-03-25 18:34:29+00:00
|
2022-10-12 00:05:34+00:00
| 59 | 2 |
|
1624990
|
app.normandy decreases the security.tls.version.min to 1
|
User Agent: Mozilla/5.0 (Windows NT 10.0; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
1) Go to about:config
2) Change the setting security.tls.version.min to 2
3) Restart Firefox
Actual results:
The settings security.tls.version.min will be changed to 1 due to app.normandy.startupRolloutPrefs.security.tls.version.min updated by Mozilla via server-side to 1
Expected results:
security.tls.version.min should stay set to 2
|
app.normandy decreases the security.tls.version.min to 1 User Agent: Mozilla/5.0 (Windows NT 10.0; rv:74.0) Gecko/20100101 Firefox/74.0
Steps to reproduce:
1) Go to about:config
2) Change the setting security.tls.version.min to 2
3) Restart Firefox
Actual results:
The settings security.tls.version.min will be changed to 1 due to app.normandy.startupRolloutPrefs.security.tls.version.min updated by Mozilla via server-side to 1
Expected results:
security.tls.version.min should stay set to 2
|
P5
|
RESOLVED
|
INACTIVE
|
2020-03-25 20:29:06+00:00
|
2020-10-26 16:17:21+00:00
| 152 | 5 |
1625079
|
Too high speed shown at the beginning of downloads
|
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
while a image is loading, save it.
the URI of the image:
https://files.yande.re/image/34e64202c2d6f1ded668eacb2ad5f9cd/yande.re%20548466%20bikini_top%20moonphase%20yuran.png
Actual results:
the download speed of the image was showed wrongly
Expected results:
the download speed of the image should be show correctly
|
Too high speed shown at the beginning of downloads User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0
Steps to reproduce:
while a image is loading, save it.
the URI of the image:
https://files.yande.re/image/34e64202c2d6f1ded668eacb2ad5f9cd/yande.re%20548466%20bikini_top%20moonphase%20yuran.png
Actual results:
the download speed of the image was showed wrongly
Expected results:
the download speed of the image should be show correctly
|
P5
|
NEW
|
2020-03-26 07:29:17+00:00
|
2022-10-12 00:05:40+00:00
| 163 | 5 |
|
1625226
|
Ctrl+Tab preview thumbnails are weirdly cropped with devtools open
|
When switching tabs when devtools is open on one of the tabs, the tab with devtools will render incorrectly in the tabs switching preview.
STR:
* Open a site and enable devtools
* Open 3 more tabs on different sites
* Press and hold ctrl-tab to show tab preview
Notice that the tab with devtools is rendered incorrectly. It also shows the wrong layout
|
Ctrl+Tab preview thumbnails are weirdly cropped with devtools open When switching tabs when devtools is open on one of the tabs, the tab with devtools will render incorrectly in the tabs switching preview.
STR:
* Open a site and enable devtools
* Open 3 more tabs on different sites
* Press and hold ctrl-tab to show tab preview
Notice that the tab with devtools is rendered incorrectly. It also shows the wrong layout
|
P3
|
NEW
|
2020-03-26 17:01:42+00:00
|
2024-02-21 13:10:13+00:00
| 104 | 3 |
|
1625241
|
Firefox doesn't update to the latest version if the "Restart to update" button is clicked while the update download process is still running
|
**Affected versions**
* Updates on Firefox beta channel (For Fx 75.0b_x)
* Updates on Firefox nightly channel ( For Fx 76.0a_x)
**Unaffected versions**
* Firefox 68.6.0esr (BuildId:20200305175243).
* Firefox 74.0 (disabled).
**Affected platforms**
* macOS 10.14
* Windows 10 64bit
* Ubuntu 18.04 64bit.
**Steps to reproduce**
In order to easily reproduce this issue you can simulate a poor internet connection by using softwares like NetLimiter.
1. Launch an older version of Firefox (ex. 75.0b7).
2. Type “update firefox” inside the Address Bar.
3. Click the “Restart to Update” button while the update download process is still running.
**Expected result**
* Firefox restarts and the latest version is installed.
**Actual result**
* If the update download was not completed when the “Restart to Update” button was pressed Firefox simply restarts and the user doesn’t have the latest Firefox version.
**Notes**
* This may generate user confusion since the intervention card prompts the user that “The latest Firefox is downloaded and ready to install” but the update download process was not finished and Firefox simply restarts with the same (old) version after interacting with the "Restart to Update" button.
|
Firefox doesn't update to the latest version if the "Restart to update" button is clicked while the update download process is still running **Affected versions**
* Updates on Firefox beta channel (For Fx 75.0b_x)
* Updates on Firefox nightly channel ( For Fx 76.0a_x)
**Unaffected versions**
* Firefox 68.6.0esr (BuildId:20200305175243).
* Firefox 74.0 (disabled).
**Affected platforms**
* macOS 10.14
* Windows 10 64bit
* Ubuntu 18.04 64bit.
**Steps to reproduce**
In order to easily reproduce this issue you can simulate a poor internet connection by using softwares like NetLimiter.
1. Launch an older version of Firefox (ex. 75.0b7).
2. Type “update firefox” inside the Address Bar.
3. Click the “Restart to Update” button while the update download process is still running.
**Expected result**
* Firefox restarts and the latest version is installed.
**Actual result**
* If the update download was not completed when the “Restart to Update” button was pressed Firefox simply restarts and the user doesn’t have the latest Firefox version.
**Notes**
* This may generate user confusion since the intervention card prompts the user that “The latest Firefox is downloaded and ready to install” but the update download process was not finished and Firefox simply restarts with the same (old) version after interacting with the "Restart to Update" button.
|
P2
|
VERIFIED
|
FIXED
|
2020-03-26 17:22:52+00:00
|
2020-04-07 12:15:08+00:00
| 354 | 2 |
1625254
|
NVDA screen reader doesn’t read the intervention cards “Get Help” button on mouseover
|
**Affected versions**
* Firefox 76.0a1 (BuildId:20200326093308)
* Firefox 75.0b9 (BuildId:20200325213426)
**Unaffected versions**
* Firefox 68.6.0esr (BuildId:20200305175243).
* Firefox 74.0 (disabled).
**Affected platforms**
* Windows 10 64bit
**Unaffected platforms**
* macOS 10.14
* Ubuntu 18.04 64bit
**Preconditions**
* Install the latest version of NVDA screen reader.
**Steps to reproduce**
1. Launch Firefox.
2. Trigger an intervention card by typing *update firefox* inside the Address Bar.
3. Mouseover the “Get Help” button.
**Expected result**
* NVDA successfully reads the “Get Help” button.
**Actual result**
* NVDA doesn't read the “Get Help” button.
|
NVDA screen reader doesn’t read the intervention cards “Get Help” button on mouseover **Affected versions**
* Firefox 76.0a1 (BuildId:20200326093308)
* Firefox 75.0b9 (BuildId:20200325213426)
**Unaffected versions**
* Firefox 68.6.0esr (BuildId:20200305175243).
* Firefox 74.0 (disabled).
**Affected platforms**
* Windows 10 64bit
**Unaffected platforms**
* macOS 10.14
* Ubuntu 18.04 64bit
**Preconditions**
* Install the latest version of NVDA screen reader.
**Steps to reproduce**
1. Launch Firefox.
2. Trigger an intervention card by typing *update firefox* inside the Address Bar.
3. Mouseover the “Get Help” button.
**Expected result**
* NVDA successfully reads the “Get Help” button.
**Actual result**
* NVDA doesn't read the “Get Help” button.
|
P1
|
RESOLVED
|
WONTFIX
|
2020-03-26 17:36:19+00:00
|
2020-04-29 19:27:56+00:00
| 248 | 1 |
1625425
|
The migration to remove old kinto collection data keeps the db around and requires use of the deprecated kinto-offline-client
|
kinto-offline-client.js is no longer used from within remote settings, but as far as I can tell, normandy runs `applyAll()` migrations every single startup, so it tries to clear the old collection every startup - but this involves writing to the indexeddb database and [saving a last modified timestamp](https://searchfox.org/mozilla-central/rev/b712398b7fae54ef377a558d6f16dede7a7f8530/services/common/kinto-offline-client.js#1422), it seems.
Instead, it seems like we should just check if the requisite files are there and if so, delete them.
More generally, it'd be useful if we tracked which migrations have run so we didn't re-run the same migrations every startup...
|
The migration to remove old kinto collection data keeps the db around and requires use of the deprecated kinto-offline-client kinto-offline-client.js is no longer used from within remote settings, but as far as I can tell, normandy runs `applyAll()` migrations every single startup, so it tries to clear the old collection every startup - but this involves writing to the indexeddb database and [saving a last modified timestamp](https://searchfox.org/mozilla-central/rev/b712398b7fae54ef377a558d6f16dede7a7f8530/services/common/kinto-offline-client.js#1422), it seems.
Instead, it seems like we should just check if the requisite files are there and if so, delete them.
More generally, it'd be useful if we tracked which migrations have run so we didn't re-run the same migrations every startup...
|
P2
|
RESOLVED
|
FIXED
|
2020-03-27 10:09:57+00:00
|
2020-04-23 03:22:04+00:00
| 228 | 2 |
1625785
|
Page info doesn't show "View Certificate" button when FPN is enabled
|
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
1. Go to https://scroll.com/ and click on the Setup tab at the top right hand corner.
2. Then scroll to the "Get the Add-on" button and click it.
3. You'll be prompted with the "Allow scroll.com to to install an add-on?" click "Continue to Installation"
Actual results:
I get prompted with an error "The add-on could not be downloaded due to a connection failure"
Expected results:
The add-on should've been installed.
|
Page info doesn't show "View Certificate" button when FPN is enabled User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:76.0) Gecko/20100101 Firefox/76.0
Steps to reproduce:
1. Go to https://scroll.com/ and click on the Setup tab at the top right hand corner.
2. Then scroll to the "Get the Add-on" button and click it.
3. You'll be prompted with the "Allow scroll.com to to install an add-on?" click "Continue to Installation"
Actual results:
I get prompted with an error "The add-on could not be downloaded due to a connection failure"
Expected results:
The add-on should've been installed.
|
P2
|
RESOLVED
|
DUPLICATE
|
2020-03-29 20:03:20+00:00
|
2020-04-11 17:13:46+00:00
| 172 | 2 |
1625913
|
Card image gets cut off for some widths
|
I think we want the background-size to be `cover` instead.
|
Card image gets cut off for some widths I think we want the background-size to be `cover` instead.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-30 12:39:39+00:00
|
2020-04-21 09:46:29+00:00
| 26 | 1 |
1625938
|
The buttons of the import wizard dialog are incorrectly displayed for the "pave-over"and Reinstall install method (stub installers)
|
**Affected Version:**
Latest Nightly 76.0a1 (2020-03-30)
**Affected Platforms:**
Windows 10 x64
Windows 7 x32
Windows 10 win64-aarch64
**Steps to reproduce:**
STR1:
1. Have an older Nightly (FX73) installed in the default location
2. Open the old Nightly and install some addons and themes, close it after that
3. Download the stub installer for the Latest Nightly and run it with default settings ("pave-over method")
STR2:
1. Install latest Nightly with stub installer
2. Open Nightly, add some addons and themes
3. Uninstall this Nightly
4. Launch the latest Nightly stub installer and go through the process with default settings
**Expected Results:**
When the import wizards dialog appears, the "< Back/Finish/Cancel" buttons should be correctly displayed
**Actual Results:**
The button labels are missing and the dialog closes by itself after 2 seconds
**Regression-Range:**
This is a regression, latest Beta75.0b9 and Release 74 are not affected.
Can't mozregress this issue due to the nature of it..
|
The buttons of the import wizard dialog are incorrectly displayed for the "pave-over"and Reinstall install method (stub installers) **Affected Version:**
Latest Nightly 76.0a1 (2020-03-30)
**Affected Platforms:**
Windows 10 x64
Windows 7 x32
Windows 10 win64-aarch64
**Steps to reproduce:**
STR1:
1. Have an older Nightly (FX73) installed in the default location
2. Open the old Nightly and install some addons and themes, close it after that
3. Download the stub installer for the Latest Nightly and run it with default settings ("pave-over method")
STR2:
1. Install latest Nightly with stub installer
2. Open Nightly, add some addons and themes
3. Uninstall this Nightly
4. Launch the latest Nightly stub installer and go through the process with default settings
**Expected Results:**
When the import wizards dialog appears, the "< Back/Finish/Cancel" buttons should be correctly displayed
**Actual Results:**
The button labels are missing and the dialog closes by itself after 2 seconds
**Regression-Range:**
This is a regression, latest Beta75.0b9 and Release 74 are not affected.
Can't mozregress this issue due to the nature of it..
|
P1
|
VERIFIED
|
FIXED
|
2020-03-30 13:44:47+00:00
|
2020-04-24 14:17:15+00:00
| 296 | 1 |
1625954
|
Dark theme styling overrides High Contrast mode
|
If the Windows 10 dark theme is applied before the user turns on Windows High Contrast mode, the Firefox UI uses our usual dark theme colours.
[STR]
1. In Windows 10, go to Settings > Colors > More options and select the dark theme
2. Go to Settings > Ease of Access > Vision > High contrast and enable High Contrast mode.
3. Open Firefox. Observe the browser UI.
[Expected]: The browser UI is in High Contrast mode.
[Actual]: The browser UI uses the usual dark theme colors.
If you disable High Contrast mode, enable the Windows 10 light theme, re-enable High Contrast mode, and open Firefox, you will observe that the correct high contrast colours are used.
Screenshot attached of Firefox using the dark theme with High Contrast mode enabled.
|
Dark theme styling overrides High Contrast mode If the Windows 10 dark theme is applied before the user turns on Windows High Contrast mode, the Firefox UI uses our usual dark theme colours.
[STR]
1. In Windows 10, go to Settings > Colors > More options and select the dark theme
2. Go to Settings > Ease of Access > Vision > High contrast and enable High Contrast mode.
3. Open Firefox. Observe the browser UI.
[Expected]: The browser UI is in High Contrast mode.
[Actual]: The browser UI uses the usual dark theme colors.
If you disable High Contrast mode, enable the Windows 10 light theme, re-enable High Contrast mode, and open Firefox, you will observe that the correct high contrast colours are used.
Screenshot attached of Firefox using the dark theme with High Contrast mode enabled.
|
P5
|
NEW
|
2020-03-30 14:07:40+00:00
|
2022-10-12 00:06:17+00:00
| 180 | 5 |
|
1625958
|
The "Breached Website" and the "Vulnerable Passwords" notifications are not displayed below the header
|
[Affected versions]:
- Nightly 76.0a1 (Build ID: 20200330094747)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Select a vulnerable login.
3. Observe the top part of the Login view.
[Expected result]:
- The “Vulnerable Password” notification is displayed below the header.
[Actual result]:
- The “Vulnerable Password” notification is displayed above the header.
[Notes]:
- Based on the [mock-ups](https://mozilla.invisionapp.com/share/BEU7ZBJ486Y#/screens/386896727), the "Breached Website" and the "Vulnerable Passwords" notifications should be displayed under the header (under the website, “Edit” and “Remove” buttons.
- The issue is also reproducible on older Firefox versions with the old breached notification.
- Attached a screenshot of the issue.
|
The "Breached Website" and the "Vulnerable Passwords" notifications are not displayed below the header [Affected versions]:
- Nightly 76.0a1 (Build ID: 20200330094747)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Select a vulnerable login.
3. Observe the top part of the Login view.
[Expected result]:
- The “Vulnerable Password” notification is displayed below the header.
[Actual result]:
- The “Vulnerable Password” notification is displayed above the header.
[Notes]:
- Based on the [mock-ups](https://mozilla.invisionapp.com/share/BEU7ZBJ486Y#/screens/386896727), the "Breached Website" and the "Vulnerable Passwords" notifications should be displayed under the header (under the website, “Edit” and “Remove” buttons.
- The issue is also reproducible on older Firefox versions with the old breached notification.
- Attached a screenshot of the issue.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-30 14:11:47+00:00
|
2020-04-01 15:06:22+00:00
| 289 | 1 |
1625959
|
The "Mobile promotion" banner is cut off when "Breached Website" or "Vulnerable Passwords" notification is displayed on small screens
|
[Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
- Have a valid Firefox Account.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Sign in to Sync with the Firefox Account from prerequisites.
3. Select a vulnerable login.
4. Observe the “Mobile promotion” banner from the bottom part of the Login view.
[Expected result]:
- The “Mobile promotion” banner is correctly displayed.
[Actual result]:
- The “Mobile promotion” banner is cut off.
[Notes]:
- This issue is reproducible only on small screens. I have managed to reproduce this issue on a MacBook Pro with 13-inch and on a Dell G5 with 15-inch.
- Attached a screen recording with the issue.
|
The "Mobile promotion" banner is cut off when "Breached Website" or "Vulnerable Passwords" notification is displayed on small screens [Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
- Have a valid Firefox Account.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Sign in to Sync with the Firefox Account from prerequisites.
3. Select a vulnerable login.
4. Observe the “Mobile promotion” banner from the bottom part of the Login view.
[Expected result]:
- The “Mobile promotion” banner is correctly displayed.
[Actual result]:
- The “Mobile promotion” banner is cut off.
[Notes]:
- This issue is reproducible only on small screens. I have managed to reproduce this issue on a MacBook Pro with 13-inch and on a Dell G5 with 15-inch.
- Attached a screen recording with the issue.
|
P1
|
VERIFIED
|
FIXED
|
2020-03-30 14:13:50+00:00
|
2020-04-10 20:27:15+00:00
| 263 | 1 |
1625960
|
An extra scroll bar is displayed when a vulnerable/breached login is selected and the browser is resized
|
[Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
- Have the "signon.management.page.vulnerable-passwords.enabled" pref to "true".
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites.
2. Select a vulnerable login.
3. Resize the browser to less than 50%.
4. Observe the login item.
[Expected result]:
- The login item is correctly displayed and a singe scroll-bar is displayed.
[Actual result]:
- An extra scroll bar is displayed.
[Notes]:
- The issue is reproducible on macOS only if the "Show scroll bars" OS option is set to "Always".
- The issue is also reproducible on older Firefox versions where the old breached notification is displayed.
- Attached a screen recording with the issue.
|
An extra scroll bar is displayed when a vulnerable/breached login is selected and the browser is resized [Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
- Have the "signon.management.page.vulnerable-passwords.enabled" pref to "true".
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites.
2. Select a vulnerable login.
3. Resize the browser to less than 50%.
4. Observe the login item.
[Expected result]:
- The login item is correctly displayed and a singe scroll-bar is displayed.
[Actual result]:
- An extra scroll bar is displayed.
[Notes]:
- The issue is reproducible on macOS only if the "Show scroll bars" OS option is set to "Always".
- The issue is also reproducible on older Firefox versions where the old breached notification is displayed.
- Attached a screen recording with the issue.
|
P3
|
VERIFIED
|
FIXED
|
2020-03-30 14:15:57+00:00
|
2020-03-31 13:13:41+00:00
| 272 | 3 |
1625962
|
The Website address wrongly exceeds the Vulnerable Password notification area if it’s very long
|
[Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 2 saved logins in which one is breached.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Create a vulnerable login with a long website address.
3. Observe the “Go to <webite_name>” link.
[Expected result]:
- The website address link from the “Vulnerable Password” is correctly displayed.
[Actual result]:
- The website address related to the vulnerable login exceeds the notification area.
[Notes]:
- Attached a screenshot of the issue.
|
The Website address wrongly exceeds the Vulnerable Password notification area if it’s very long [Affected versions]:
- Nightly 76.0a1 (Build ID: 20200329214909)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 2 saved logins in which one is breached.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites
2. Create a vulnerable login with a long website address.
3. Observe the “Go to <webite_name>” link.
[Expected result]:
- The website address link from the “Vulnerable Password” is correctly displayed.
[Actual result]:
- The website address related to the vulnerable login exceeds the notification area.
[Notes]:
- Attached a screenshot of the issue.
|
P3
|
VERIFIED
|
FIXED
|
2020-03-30 14:20:04+00:00
|
2023-09-27 17:09:01+00:00
| 197 | 3 |
1625963
|
Remove the extension is controlling the default search engine setting warning notice
|
When an extension is controlling a setting in Firefox, we always show a string (see attachment) and a "Disable Extension..." button next to it. It looks like this button is missing for the default search setting. We could select a different default search engine from the drop down below the string as seen in the attachment, but it doesn't really disable the extension.
Also, looking at the code here[0], the description element is controlling a "disableDefaultSearchExtension" element that doesn't exist AFAICT.
[0] https://searchfox.org/mozilla-central/rev/9c6e7500c0015a2c60be7b1b888261d95095ce27/browser/components/preferences/in-content/search.inc.xhtml#31
|
Remove the extension is controlling the default search engine setting warning notice When an extension is controlling a setting in Firefox, we always show a string (see attachment) and a "Disable Extension..." button next to it. It looks like this button is missing for the default search setting. We could select a different default search engine from the drop down below the string as seen in the attachment, but it doesn't really disable the extension.
Also, looking at the code here[0], the description element is controlling a "disableDefaultSearchExtension" element that doesn't exist AFAICT.
[0] https://searchfox.org/mozilla-central/rev/9c6e7500c0015a2c60be7b1b888261d95095ce27/browser/components/preferences/in-content/search.inc.xhtml#31
|
P3
|
VERIFIED
|
FIXED
|
2020-03-30 14:21:09+00:00
|
2020-12-04 19:18:59+00:00
| 202 | 3 |
1625967
|
The “Learn more” and the “Go to <website_name>” links overlap with the elements from the “Vulnerable Password”/”Breached Website” notification when the browser is resized
|
[Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200330094747)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites.
2. Select a vulnerable login.
3. Resize the browser to less than 50% and observe the link from the “Vulnerable Password” notification.
[Expected result]:
- The “Learn more” and the “Go to <website_name>” links are correctly displayed and rendered.
[Actual result]:
- The “Learn more” and the “Go to <website_name>” links overlap with the elements from the notification.
[Notes]:
- Attached a screen recording with the issue.
|
The “Learn more” and the “Go to <website_name>” links overlap with the elements from the “Vulnerable Password”/”Breached Website” notification when the browser is resized [Affected versions]:
- Firefox Nightly 76.0a1 (Build ID: 20200330094747)
[Affected Platforms]:
- Windows 10 x64
- Mac 10.14.6
- Ubuntu 18.04 x64
[Prerequisites]:
- Have a profile with at least 3 saved logins in which one is vulnerable.
[Steps to reproduce]:
1. Open the Firefox browser with the profile from prerequisites.
2. Select a vulnerable login.
3. Resize the browser to less than 50% and observe the link from the “Vulnerable Password” notification.
[Expected result]:
- The “Learn more” and the “Go to <website_name>” links are correctly displayed and rendered.
[Actual result]:
- The “Learn more” and the “Go to <website_name>” links overlap with the elements from the notification.
[Notes]:
- Attached a screen recording with the issue.
|
P3
|
VERIFIED
|
FIXED
|
2020-03-30 14:29:41+00:00
|
2020-04-02 10:24:59+00:00
| 245 | 3 |
1626009
|
Prefs do mainthread IO on all helper apps off disk when they load
|
https://searchfox.org/mozilla-central/rev/9c6e7500c0015a2c60be7b1b888261d95095ce27/browser/components/preferences/in-content/main.js#2179-2186
```js
_isValidHandlerExecutable(aExecutable) {
let leafName;
if (AppConstants.platform == "win") {
leafName = `${AppConstants.MOZ_APP_NAME}.exe`;
} else if (AppConstants.platform == "macosx") {
leafName = AppConstants.MOZ_MACBUNDLE_NAME;
} else {
leafName = `${AppConstants.MOZ_APP_NAME}-bin`;
}
return (
aExecutable &&
aExecutable.exists() &&
aExecutable.isExecutable() &&
// XXXben - we need to compare this with the running instance executable
// just don't know how to do that via script...
// XXXmano TBD: can probably add this to nsIShellService
aExecutable.leafName != leafName
);
}
```
This does mainthread IO on any files set as custom handler applications. This should be relatively uncommon; it'd require users actually setting these, but it's still bad. Should be using non-mainthread IO, or we should just get rid of the filtering altogether - if any handler app info is outdated it should get ignored when we attempt to invoke it and/or be updated organically. Loading prefs is too late a point to try to accommodate this. The kicker here is that, AFAICT, we do these checks and use them for display (so we'll show "always ask" if there is no OS-default handler app for the type, and the OS default if it exists) but we don't update the local handlers store, so what we show might not match what actually happens...
|
Prefs do mainthread IO on all helper apps off disk when they load https://searchfox.org/mozilla-central/rev/9c6e7500c0015a2c60be7b1b888261d95095ce27/browser/components/preferences/in-content/main.js#2179-2186
```js
_isValidHandlerExecutable(aExecutable) {
let leafName;
if (AppConstants.platform == "win") {
leafName = `${AppConstants.MOZ_APP_NAME}.exe`;
} else if (AppConstants.platform == "macosx") {
leafName = AppConstants.MOZ_MACBUNDLE_NAME;
} else {
leafName = `${AppConstants.MOZ_APP_NAME}-bin`;
}
return (
aExecutable &&
aExecutable.exists() &&
aExecutable.isExecutable() &&
// XXXben - we need to compare this with the running instance executable
// just don't know how to do that via script...
// XXXmano TBD: can probably add this to nsIShellService
aExecutable.leafName != leafName
);
}
```
This does mainthread IO on any files set as custom handler applications. This should be relatively uncommon; it'd require users actually setting these, but it's still bad. Should be using non-mainthread IO, or we should just get rid of the filtering altogether - if any handler app info is outdated it should get ignored when we attempt to invoke it and/or be updated organically. Loading prefs is too late a point to try to accommodate this. The kicker here is that, AFAICT, we do these checks and use them for display (so we'll show "always ask" if there is no OS-default handler app for the type, and the OS default if it exists) but we don't update the local handlers store, so what we show might not match what actually happens...
|
P3
|
NEW
|
2020-03-30 16:35:47+00:00
|
2024-03-20 19:03:05+00:00
| 492 | 3 |
|
1626130
|
Figure out why bug 1625314 broke the accessibility role of search-textbox
|
https://phabricator.services.mozilla.com/D68899 hacked around a a11y test. It'd be nice to figure out why that was needed, and if there's a proper fix to it.
|
Figure out why bug 1625314 broke the accessibility role of search-textbox https://phabricator.services.mozilla.com/D68899 hacked around a a11y test. It'd be nice to figure out why that was needed, and if there's a proper fix to it.
|
P3
|
NEW
|
2020-03-31 00:08:49+00:00
|
2024-02-27 16:36:48+00:00
| 73 | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.