Bug ID
int64 961
1.91M
| Comment ID
int64 3.98k
17.1M
| Author
stringlengths 8
48
| Comment Text
stringlengths 1
64.3k
β |
---|---|---|---|
258,173 | 2,251,092 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040113
Build Identifier: http://lxr.mozilla.org/mozilla/source/configure.in#2570
The "configure.in" script (line 2570) insecurely creates temporary files in /tmp
when Mozilla is compiled under Linux. This allows an attacker to easily replace
these files with his own files. One of these files is a program that is then run
by configure.in, hence you have a local compromise of the account used to
compile Mozilla.
The insecure instruction is "cp -f conftest1.so conftest /tmp". The --force
option is used, but this will not work if Mozilla is being compiled by a normal
user: he cannot overwrite the attacker's file. If Mozilla is compiled by root,
the attacker can block /tmp/conftest with a directory. "cp -f" will not delete
directories, so this still leaves a big race condition.
If Mozilla is then installed (requires root privs) this will even lead to local
root compromise. This is especially dangerous with regard to compile-yourself
Linux distributions like Gentoo: Whenever a new Mozilla is released, you have a
great opportunity to compromise the entire system.
Reproducible: Always
Steps to Reproduce:
1. As user foo, create a shell script called "/tmp/conftest", chmod it to 755.
Fill it with:
#!/bin/bash
echo "this is a mozilla exploit" > /tmp/mozilla.exploit
2. As user bar, build Mozilla with "gamke -f client.mk"
3. Abort the build process after ~1 minute. The file /tmp/mozilla.exploit has
appeared which means the attacker's script got run.
This bug is also present in Thunderbird 0.7.3, where I originally found it. It
may also be present in other related software.
|
|
307,629 | 2,604,720 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; sv-SE; rv:1.8b4) Gecko/20050909 Firefox/1.4
Build Identifier: Tb 1.4
When importing a OPML file that only contains feed we already subscribe to, the
error message "Either FILE is not a valid OPML file or there was an error
importing the file."
It should either be silent or simply say that we were already subscribed to all
feeds in the OPML file.
Reproducible: Always
Steps to Reproduce:
1. From manage subscriptions, export OPML file
2. Import file just exported
Actual Results:
User receives a confusing error message.
Expected Results:
Software should either be silent (as normally after a successful import) or
indicate that there were no feeds to which we weren't already subscribed.
|
|
245,113 | 2,163,331 |
User-Agent: Opera/7.23 (Windows NT 5.1; U) [de]
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040514
If I add a method to a class via prototype, then call that method direct via
"class.prototype.method()", "this instanceof class" is true. In Opera and IE it
is false.
Here is the testcase:
var res="";
Date.prototype.test = function() {
res += (this instanceof Date)+" ";
}
String.prototype.test = function() {
res += (this instanceof String)+" ";
}
res += (Date.prototype.test instanceof Date)+" ";
Date.prototype.test();
String.prototype.test();
(new Date()).test();
(new String()).test();
alert(res);
Reproducible: Always
Steps to Reproduce:
1. Run the testcase
Actual Results:
Alert box displaying "false true true true true"
Expected Results:
Alert box displaying "false false false true true"
|
|
327,482 | 2,778,598 |
If you have buttons added to the bookmark toolbar before using places, the migration to Places does not keep these buttons around.
Steps to reproduce:
(1) Start a non-Places build.
(2) Add the 'New Tab' button to the bookmarks toolbar
(3) Start a Places-enabled build.
Actual results:
The button you added disappears from the toolbar.
Expected results:
The toolbar would be preserved in tact.
|
|
334,807 | 2,833,985 |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040914 (not Googlebot)
Build Identifier: CVS js
Followup to bug 304376:
The arguments object is still affected by assignment to Object.
ECMA 262-3 says (10.1.8):
The value of the internal [[Prototype]] property of the arguments object is
the original Object prototype object, the one that is the initial value of
Object.prototype (section 15.2.3.1).
Reproducible: Always
Steps to Reproduce:
js> 0, function () { return arguments.join() }( 1, 2, 3 );
typein:1: TypeError: arguments.join is not a function
js> Object= Array, function () { return arguments.join() }( 1, 2, 3 );
1,2,3
Expected Results:
Should still throw TypeError.
|
|
43,536 | 338,824 |
Overview:
Found testing bug 42342: after a directory listing appears for a "file:///c:/"
URL or a minimal version ("C:") of the same, it is not possible to select
in the URL bar until focus has been moved elsewhere and back again.
Steps to reproduce:
1. Type file:///c:/ into the URL bar.
2. Wait for directory listing to appear.
3. Attempt to select any part of the URL by dragging the mouse or using
shift+leftarrow.
4. Click in the page.
5. Click back into the URL bar.
6. Attempt to select any part of the URL by dragging the mouse or using
shift+leftarrow.
Actual Results:
In step 3, no selection is made (confirm by using ctrl-x; this is not a display
problem only. In step 6, a normal selection is made.
Expected Results:
A normal selection in steps 3 and 6.
Tested with:
the 2000062008-M17 nightly binary on WinNT
the 20000622...-M17 nightly binary on WinNT
Additional Information:
This may be related to bug 40006, "No caret & No selection highlight in Find
dialog's <textfield>", but it can't be a DUP, because in 40006, a selection
is made despite no highlight.
The fix for bug 42343 can't have cause this problem, as it happens in the
2000-06-20 build as well.
|
|
50,804 | 412,878 |
Build ID: 2000082908
Mac-specific, different expectations apply on other platforms
Steps to reproduce:
1) Click on a link
Actual results:
A focus outline is displayed around the link. It is 1px dotted black. It looks like being from
the monochrome era.
Expected results:
Expected the focus outline to be 2px solid with the proper Appearance color and the
corner pixels rounded off. (The default color is #6666CC.)
Additional information:
The relevant style rules can be found by searching for "focus" in html.css. I'll post to
n.p.m.style to find out whether Mozilla has a suitable outline style. I wasn't able to get the
right corner effect. This also applies to form widgets that are being redesigned.
|
|
37,677 | 278,954 |
Win98SE
Build 43008
Migrating previous 4.xx profile does not add folder to personal toolbar. All
single bookmarks are updated to PT ok.
|
|
46,592 | 371,431 |
Build ID: 2000072608 WinNT 4
Steps to Reproduce:
(1) Show My Sidebar (if not already shown)
(2) Switch to the Search tab (if not already the active tab)
(3) Search for anything (e.g. 'test')
(4) Right click on one of the results in the results tree
Two menu items appear:
"Filter out this URL from all search results"
"Filter out this website from all search res..." (it's too long, gets cut off)
As far as I can tell (unless the second menu item is REALLY long and the rest
of its description is cut off), these two items serve the same purpose, so one
should go. Personally, I think the latter item is more user-friendly (how many
users understand what an "URL" is?), but it looks terrible cut-off like that.
|
|
99,850 | 920,366 |
Steps to reproduce:
1. Drag the personal homepagify bookmarklet from
http://dmoz.org/Bookmarks/R/rpfuller/How_Not_to_Design_a_Web_Site/Bookmarklets/
onto your personal toolbar.
2. Go to http://www.cs.hmc.edu/~jruderma/s/
3. Click the bookmarklet a few times.
Result: the background and text colors keep changing, but the link colors and
visited-link colors get "stuck" on the color they were set to the first time
you activated the bookmarklet.
Changing the background color of a web page always works:
javascript:void(document.bgColor=Math.round(Math.random()*0x1000000));
But changing the link color only works the first time you do it:
javascript:void(document.linkColor=Math.round(Math.random()*0x1000000));
|
|
91,224 | 830,137 |
From Bugzilla Helper:
User-Agent: Mozilla/4.77 [en] (X11; U; SunOS 5.8 sun4u)
BuildID: None
It looks like whatever is generating mozilla/security/nss/lib/freebl/Makefile is
putting in gronky options to ld.
I just updated to the latest versions of autoconf and automake to try and
overcome this; it hasn't worked yet.
Maybe it's detecting and using Sol8's /usr/ccs/bin/ld instead of the GNU
/usr/local/bin/ld [binutils] that is ahead of it in my PATH.
Up until that point, nothing had complained about bad flags/options.
Reproducible: Always
Steps to Reproduce:
1. Get the latest CVS source
2. Configure it with crypto
3. make
Expected Results: built. ;)
I marked this as trivial, since the user only needs to un-install the GNU
binutils, or not configure with --enable-crypto
However, I'd *personally* like it if the configuration script for that part were
more intelligent. :)
|
|
121,085 | 1,123,332 |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.7+)
Gecko/20020120
BuildID: 2002012008
Open a separate bookmark window from Bookmarks -> Manage Bookmarks... and
choose some website with its entry in the separate bookmark window.
Now double click(I wish it's single click) it to open the actual
website view.
It spawns a new navigator window and the site you choosed to see is in it.
In Netscape 4, this doesn't spawn a new navigator window but just overwrite the
content of the navigator window which has window focus at that time.
I'm not sure it's a bug or by design, but anyway I hope it'll be fixed.
If it's by design, please change the design and make it spawn a new
tab in a focused navigator window instead of spawning a new navigator window.
Reproducible: Always
Steps to Reproduce:
1.Open a separate bookmark window from Bookmarks -> Manage Bookmarks...
2.Choose some website with its entry in the separate bookmark window.
3.Double-click it
Actual Results: It spawns a new navigator window for the selected website
Expected Results: Overwrite the content of the navigator window which has
window focus at that time and displays the content of the selected website.
|
|
61,417 | 522,396 |
Clicking on the "search" tab in the sidebar should set focus to the textbox in
the search panel so that the user doesn't have to click on the tab, and then
click on the textbox. My guess is that this would be fixed by setting up the
xul equivalent of a body-onload event to do document.getElementById("sidebar-
search-text").focus.
This bug depends on:
bug 50223 Clicking on Sidebar tab should set focus to sidebar page or widget
This bug probably also depends these bugs, which are present at least for html
dom:
bug 41813 [Linux, normal] and
bug 50665 [Windows, enhancement]
textbox.focus() shouldn't grab focus from other mozilla windows
I need to do this for my "calculator" panel as well
(http://www.cs.hmc.edu/~jruderma/js/calc/).
|
|
1,167,857 | 10,303,641 |
User Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Firefox/31.0
Steps to reproduce:
At first: Many thanks for keeping Thunderbird alive.
----
The latest version does not fully comply with RFC 5751 regarding the S/MIME settings.
I sent S/MIME encrypted emails from Outlook 2010 v14.0.7149 to Thunderbird 31.7, 38, 40 and Seamonkey 2.33, 2.38, requesting in the attribute "SMIMECapabilities" the encryption with AES 256 and the hash SHA512.
I replied to these emails with TB and SM, and checked the applied encryption and hashes in Outlook. There it is possible to set the demanded and display the applied encryption and hashes.
Machines used for check: Mac OS X with TB 31, Linux i386 with all clients.
Actual results:
TB 31 applied always 3DES for content encryption and SHA1 for hashing. TB 38, 40 and SM 2.33, 2.38 used 3DES and SHA256.
Expected results:
Following RFC 5751 the responding clients should use the settings demanded by the sender. In case of an erroneous or missing S/MIME attribute from Outlook ("unknown capabilities") AES 128 should have been applied.
All results and the relevant RFC sections are stored here:
https://github.com/CryptoPartyGraz/Vortraege/tree/master/S-MIME_settings_Thunderbird
|
|
1,822,731 | 16,328,654 |
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0
Steps to reproduce:
#3926891 java.lang.NullPointerException
Attempt to invoke virtual method 'java.lang.String java.lang.String.toLowerCase(java.util.Locale)' on a null object reference
org.mozilla.gecko.util.IntentUtils.normalizeUriScheme(IntentUtils:28)
code isοΌ
final String scheme = uri.getScheme();
scheme may be null, you should try-catch
|
|
1,830,107 | 16,387,377 |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36
Steps to reproduce:
==========test.js==============
function read(a, index) {
for (var i = 0; i < 1; i++) {
a[index + 10];
print(a[index])
}
}
var a = new Int8Array(11);
read(a, 0);
read(a, 0);
for (var i = 0; i > -10; --i) {
read(a, i);
}
==========end of test.js==============
Compile spidermonkey in debug mode.
Run arguments:
./js --no-threads --baseline-warmup-threshold=2 --ion-warmup-threshold=10 test.js
Actual results:
SpiderMonkey Debug build crashes. Assertion failure happened.
LInt32ToIntPtr: unexpected range for value.
Expected results:
SpiderMonkey should print three "1" and nine "undefined".
The problem may be in jit/CodeGenerator.cpp. VisitInt32ToIntPtr verifies non-negative assumption at runtime, if assumption failure, Ion should bailout instead of crashing.
|
|
1,830,687 | 16,390,710 |
Created attachment 9330931
Screenshot of the link issue
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0
Steps to reproduce:
1. Go to about:preferences#privacy on Release or Beta
2. Enable "Allow Nightly to send technical and interaction data to Mozilla" if it isn't already
3. Click the checkbox to then disable it
Actual results:
The Learn more link is outside of the info box
Expected results:
The link should be inside the box
|
|
1,831,497 | 16,397,778 |
Created attachment 9331749
se.mp4
### Steps to reproduce
1. Turn TalkBack (or the available screen reader) on.
2. Tap on the search or address bar with the default search engine selected.
3. Switch to non-default, general search engine from the dropdown menu and tap on the search or address bar.
4. Switch to a topic specific search engine from the dropdown menu and tap on the search or address bar.
5. Switch to Bookmark search engine from the dropdown menu and tap on the search or address bar.
6. Switch to Tabs search engine from the dropdown menu and tap on the search or address bar.
7. Switch to History search engine from the dropdown menu and tap on the search or address bar.
### Expected behavior
The specific text description is read for each of the types of search engine.
### Actual behavior
The previously selected search engine's text description is read instead of the current one.
### Device information
* Firefox version: Nightly 114.0a1
* Android device model: Google Pixel 7
* Android OS version: 13
### Any additional information?
Also reproduced on a Lenovo Yoga Tab 11 (Android 11).
|
|
1,827,716 | 16,367,732 |
Steps to reproduce:
Launch an installed TWA with Firefox set as the default browser.
Actual results:
The TWA client tries to use Firefox as a TWA provider, which either fails to launch (making the app appear hung) or results in a custom tab instead of a TWA.
Expected results:
Firefox should properly report itself as a custom tabs service without TWA support, so the app can decide whether it makes sense to pick a different installed TWA provider, launch as custom tab, fall back to a web view, or direct the user to access the website in their browser (and potentially install it as a PWA instead, which Firefox does support).
The issue seems to be that while full TWA support was never implemented and the TWA intent processor was deprecated (https://github.com/mozilla-mobile/android-components/issues/12024), the app's AndroidManifest.xml still includes `<category android:name="androidx.browser.trusted.category.TrustedWebActivities" />`, which it shouldn't.
|
|
1,817,164 | 16,283,050 |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/110.0
Steps to reproduce:
This is not about the actual encryption error (which is being handled fine), but about Firefox-110 missing details which Firefox-102 showed. (regression)
Open a webpage which requires Client Certificate authentication.
If everything is configured properly Firefox is working fine. But I recently had different problems for which Firefox 102.8.0esr showed very helpful details, but Firefox 110.0 showed no details at all.
Actual results:
=== Firefox 110 (broken) ===
Note: "Authentication Decisions" is in Firefox settings -> "Certificate Manager"
ACTUAL PROBLEM (just one is needed):
- A: either expired Client Certificate configured in "Authentication Decisions"
- B: or "Send no client certificate" was configured in "Authentication Decisions"
- C: or the server did not accept the certificate
FIREFOX MESSAGE:
Secure Connection Failed
An error occurred during a connection to
example.net.
- The page you are trying to view cannot be shown because the
authenticity of the received data could not be verified.
- Please contact the website owners to inform them of this problem.
[Learn more...](https://support.mozilla.org/1/firefox/110.0/Linux/en-US/connection-not-secure)
[Try Again]
Expected results:
=== Firefox 102.8.0esr (working) ===
ACTUAL PROBLEM:
- A: expired Client Certificate configured in "Authentication Decisions"
FIREFOX MESSAGE:
Secure Connection Failed
An error occurred during a connection to
example.net. SSL peer rejected your certificate as
expired.
Error code: SSL_ERROR_EXPIRED_CERT_ALERT
- The page you are trying to view cannot be shown because the
authenticity of the received data could not be verified.
- Please contact the website owners to inform them of this problem.
[Learn more...](https://support.mozilla.org/1/firefox/102.8.0/Linux/en-US/connection-not-secure)
[Try Again]
ACTUAL PROBLEM (just one is needed):
- B: either "Send no client certificate" was configured in "Authentication Decisions"
- C: or the server did not accept the certificate
FIREFOX MESSAGE:
Secure Connection Failed
An error occurred during a connection to example.net.
SSL_ERROR_RX_CERTIFICATE_REQUIRED_ALERT
- The page you are trying to view cannot be shown because the
authenticity of the received data could not be verified.
- Please contact the website owners to inform them of this problem.
[Learn more...](https://support.mozilla.org/1/firefox/102.8.0/Linux/en-US/connection-not-secure)
[Try Again]
In case of A Firefox-110 is missing:
SSL peer rejected your certificate as expired.
Error code: SSL_ERROR_EXPIRED_CERT_ALERT
In case of B and C Firefox-110 is missing:
SSL_ERROR_RX_CERTIFICATE_REQUIRED_ALERT
Although this message might be extended further. Adding a description like "No client certificate choosen." or "The choosen client certificate was not accepted by the server.".
|
|
1,817,192 | 16,283,222 |
**Found in**
* 111.0b1
**Affected versions**
* 112.0a1 (20230216094044)
* 111.0b1
* 110.0
**Tested platforms**
* Affected platforms: Windows 10x64, Ubuntu 20.04, macOS 12
* Unaffected platforms:
**Steps to reproduce**
1. Open Firefox and about:preferences#privacy..
2. Scroll down to the Certificates section and click View Certificates.
3. Select the Authorities tab and click on a random certificate.
4. Click on Delete or Distrust button and observe the window.
**Expected result**
* Delete or Distrust CA Certificates window is correctly displayed.
**Actual result**
* Delete or Distrust CA Certificates window has increased height.
**Regression range**
* Last good revision: bf1bc477f95d9ca0686bf22e577727d11be616fc
First bad revision: 1e4afe94c89bf0d123accce7f6fe4565be09d5c0
Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=bf1bc477f95d9ca0686bf22e577727d11be616fc&tochange=1e4afe94c89bf0d123accce7f6fe4565be09d5c0
**Additional notes**
* Attached a screenshot.
|
|
1,818,198 | 16,293,392 |
We record credit card detect event telemetry even when a credit card section is invalid.
|
|
1,826,040 | 16,354,207 |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/111.0
Steps to reproduce:
* Start firefox on a device with "AMD Ryzen 9 6900HS" CPU / GPU
* Go to `about:support`
* Scroll to "graphics > failure log"
* See "Couldn't sanitize RENDERER device: REMBRANDT"
Actual results:
Firefox logs "Couldn't sanitize RENDERER device: REMBRANDT" in `about:support` and on the console. `HARDWARE_VIDEO_DECODING` is disabled.
Expected results:
Firefox should recognise the device and enable `HARDWARE_VIDEO_DECODING`.
|
|
1,826,072 | 16,355,533 |
Created attachment 9326589
image.png
**Found in**
* 113.0a1 (2023-04-02)
**Affected versions**
* 113.0a1 (2023-04-02)
**Tested platforms**
* Affected platforms: Windows 10x64, macOS 12, Ubuntu 20.04
* Unaffected platforms: none
**Steps to reproduce**
1. Open a camera or microphone permission page (e.g https://www.onlinemictest.com/) and allow or block microphone access.
2. Open the permission panel from the URL bar.
3. Observe the Allowed/ Blocked Temporarily permission string.
**Expected result**
* The permission string is correctly arranged.
**Actual result**
* The permission string is on two rows.
**Regression range**
* Last good revision: 2cc925315ab4bc13d89167646695eece8d6f6a63
First bad revision: b50655fcce3faf31b2c1779c263ac7c1bca94863
Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=2cc925315ab4bc13d89167646695eece8d6f6a63&tochange=b50655fcce3faf31b2c1779c263ac7c1bca94863
Potential regressor: bug 1822578.
**Additional notes**
* Attached a screenshot.
|
|
1,824,723 | 16,344,641 |
ObliviousHttpChannel::SetContentType currently forwards the content type to the inner channel, and we overwrite that with "message/ohttp-req" in AsyncOpen anyway.
|
|
1,819,172 | 16,302,376 |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/110.0
Steps to reproduce:
I programmed a web server that returns an HSTS header with max-age calculated like this:
max-age = (2**64 - currentUnixTimestampInMillis - 1000)/1000
I visited the server with Firefox. The following header was transferred:
Strict-Transport-Security max-age=18446742396180544
Actual results:
The SiteSecurityServiceState.txt file now contains a negative expiry date:
$ grep "hsts.local" ~/.mozilla/firefox/iy6semmg.default-release/SiteSecurityServiceState.txt
0000.hsts.local^partitionKey=%28http%2Chsts.local%29:HSTS 0 19415 -1051,1,0
This value is calculated as follows:
1. Firefox takes the max-age and multiplies it by 1000 to convert it into milliseconds, i.e. 18446742396180544000
2. Firefox adds the current timestamp in milliseconds to the value. This currently is a value around 1677529277474.
3. Firefox stores the result (~ 2**64 - 1000) as a **signed** integer into SiteSecurityServiceState.txt. The two's complement of that value is -1000.
Expected results:
1. The expiry date should have been stored as an unsigned integer.
2. Regardless of 1., within the calculation (multiplying by 1000 and adding the current time stamp) it should be checked whether an overflow is going to occur.
|
|
1,820,334 | 16,310,238 |
**Filed by:** chorotan [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer?job_id=407811971&repo=mozilla-central
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FnJne8T0RhKxQb9j4EfmJA/runs/0/artifacts/public/logs/live_backing.log
---
```
[task 2023-03-04T11:21:11.695Z] |########################## | 98% ETA: 0:00:00
[task 2023-03-04T11:21:11.700Z] |########################## | 98% a/xpcom/xpcom-config.h ETA: 0:00:00
[task 2023-03-04T11:21:11.700Z] |###########################| 100% ETA: 0:00:00
[task 2023-03-04T11:21:11.700Z] |###########################| 100% ETA: 0:00:00
[task 2023-03-04T11:21:11.700Z] |###########################| 100% ETA: 0:00:00
[task 2023-03-04T11:21:47.742Z] |###########################| 100% Time: 0:00:26
[task 2023-03-04T11:21:47.742Z] ++ dirname /builds/worker/bin/get_and_diffoscope
[task 2023-03-04T11:21:47.743Z] + /builds/worker/bin/report_error diff
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/EventExtraGIFFTMaps.cpp differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/EventGIFFTMap.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/GleanJSMetricsLookup.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/GleanJSPingsLookup.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/GleanMetrics.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/GleanPings.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/HistogramGIFFTMap.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/ScalarGIFFTMap.h differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/api/src/factory.rs differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/api/src/metrics.rs differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.759Z] TEST-UNEXPECTED-FAIL | toolkit/components/glean/api/src/pings.rs differs. See the diff.html or diff.txt artifact
[task 2023-03-04T11:21:47.761Z] + fail
[task 2023-03-04T11:21:47.761Z] + exit 1
[taskcluster 2023-03-04 11:21:48.035Z] === Task Finished ===
[taskcluster 2023-03-04 11:21:48.857Z] Unsuccessful task run with exit code: 1 completed in 90.904 seconds
```
|
|
1,854,187 | 16,586,389 |
This is something I must verify yet, it is affecting alternative frecency of origins and autofill when alternative frecency is enabled.
We're likely calculating the score across www and non-www as an average, rather than a total. That means the origin may end up with a much lower score, and not clear the threshold.
e.g. adidas.com has score 50, while www.adidas.com has score 4000, we'll calculate the score as 2025 instead of 4050, if the threshold is 3000, adidas.com while www.adidas.com will.
|
|
1,854,930 | 16,592,190 |
It looks like the change in bug 1838939 has regressed the styling for these headers for each section of Firefox View ("Recent Browsing" for example, on the default section) which are now the same size as the side navigation items and now not according to [spec](https://www.figma.com/file/wP9MY9KJn9xqPf140lTvTv/Fx-View-Specs-2023?type=design&node-id=2304-37007&mode=design&t=GVTXQ3vNpuc9li6Z-0).
I understand the reasoning behind the change was to unite different header sizes but I think we'll need to override the h2 font-size from `text-and-typography.css` to what we were using from `common.css`, which was 1.5em (in the firefoxview-next style `.page-header`).
|
|
1,854,997 | 16,592,711 |
This was not added in bug 1833671, but we should do that here since we have done it for recently closed tabs and open tabs (and it was an ask from product/UX).
|
|
1,855,353 | 16,594,952 |
Created attachment 9355235
System theme
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0
Steps to reproduce:
1. Select the light mode in Windows.
2. Select the System theme in Firefox.
3. Make the Bookmarks Toolbar visible.
Actual results:
* Text on the Bookmarks Toolbar is lighter and New Tab button is darker than in Firefox 118.
* When the Light theme is enabled in Firefox, these colors are the same as before.
Expected results:
* These colors should match the Light theme.
|
|
1,852,170 | 16,567,523 |
Crash report: https://crash-stats.mozilla.org/report/index/0ed8f502-e50a-4f60-b410-c3d8d0230907
MOZ_CRASH Reason: ```MOZ_DIAGNOSTIC_ASSERT(mIsValid) (Invalid checked integer (division by zero or integer overflow))```
Top 10 frames of crashing thread:
```
0 xul.dll mozilla::CheckedInt<long long>::value const mfbt/CheckedInt.h:560
0 xul.dll mozilla::media::TimeUnit::IsPositiveOrZero const dom/media/TimeUnits.cpp:129
0 xul.dll mozilla::OggCodecState::PacketOutAsMediaRawData dom/media/ogg/OggCodecState.cpp:280
1 xul.dll mozilla::OggTrackDemuxer::NextSample dom/media/ogg/OggDemuxer.cpp:1444
2 xul.dll mozilla::OggTrackDemuxer::GetSamples dom/media/ogg/OggDemuxer.cpp:1518
3 xul.dll mozilla::MediaFormatReader::DemuxerProxy::Wrapper::GetSamples::<lambda_1>::operator const dom/media/MediaFormatReader.cpp:668
3 xul.dll mozilla::detail::ProxyFunctionRunnable<`lambda at /builds/worker/checkouts/gecko/dom/media/MediaFormatReader.cpp:667:24', mozilla::MozPromise<RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult, 1> >::Run xpcom/threads/MozPromise.h:1690
4 xul.dll mozilla::TaskQueue::Runner::Run xpcom/threads/TaskQueue.cpp:257
5 xul.dll nsThreadPool::Run xpcom/threads/nsThreadPool.cpp:343
6 xul.dll nsThread::ProcessNextEvent xpcom/threads/nsThread.cpp:1193
```
This looks like a Nightly regression, first showing up in the 20230906091315 build.
3 of the crashes have URLs from some game site poki.com, including this one: https://poki.com/pl/g/doodle-god
|
|
1,852,218 | 16,567,842 |
The following testcase crashes on mozilla-central revision 20230907-f829a45e2207 (debug build, run with --fuzzing-safe --no-threads --disable-oom-functions --baseline-eager --ion-warmup-threshold=0):
function patchSrc(src, exc) {
try {
let srcParts = src.split("\n");
let srcLine = "d262 = undefined;"
srcParts.splice(exc.lineNumber - 1, 0, srcLine);
return srcParts.join("\n");
} catch(exc) {}
}
initGlobals = new Set(Object.keys(this));
loadFile(`
//xorefuzz-dcd-selectmode
/*---
description: SingleNameBinding does assign name
defines: [DETACHBUFFER]
---*/
function DETACHBUFFER(buffer) {
d262.detachArrayBuffer(buffer);
}
assert = initGlobals;
assert.sameValue = DETACHBUFFER;
`);
loadFile(`
//xorefuzz-dcd-evaluate
// GENERATED, DO NOT EDIT
// file: temporalHelpers.js
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
---*/
C55 = class {
[1 * 1] = () => {};
};
c29 = new C55();
assert.sameValue();
`);
function loadFile(lfVarx) {
try {
evaluate(lfVarx);
} catch (lfVare) {
if (lfVare.toString().indexOf("is not defined") >= 0 || lfVare.toString().indexOf("is undefined") >= 0) {
newSrc = patchSrc(lfVarx, lfVare);
loadFile(newSrc);
}
}
}
Backtrace:
received signal SIGSEGV, Segmentation fault.
#0 0x00005555580a0d59 in bool mozilla::detail::HashTable<mozilla::HashMapEntry<unsigned int, js::jit::JitHintsMap::IonHint*>, mozilla::HashMap<unsigned int, js::jit::JitHintsMap::IonHint*, mozilla::DefaultHasher<unsigned int, void>, js::SystemAllocPolicy>::MapHashPolicy, js::SystemAllocPolicy>::add<unsigned int&, js::jit::JitHintsMap::IonHint*&>(mozilla::detail::HashTable<mozilla::HashMapEntry<unsigned int, js::jit::JitHintsMap::IonHint*>, mozilla::HashMap<unsigned int, js::jit::JitHintsMap::IonHint*, mozilla::DefaultHasher<unsigned int, void>, js::SystemAllocPolicy>::MapHashPolicy, js::SystemAllocPolicy>::AddPtr&, unsigned int&, js::jit::JitHintsMap::IonHint*&) ()
#1 0x000055555809b6a4 in js::jit::JitHintsMap::addIonHint(unsigned int, mozilla::detail::HashTable<mozilla::HashMapEntry<unsigned int, js::jit::JitHintsMap::IonHint*>, mozilla::HashMap<unsigned int, js::jit::JitHintsMap::IonHint*, mozilla::DefaultHasher<unsigned int, void>, js::SystemAllocPolicy>::MapHashPolicy, js::SystemAllocPolicy>::AddPtr&) ()
#2 0x000055555809bc11 in js::jit::JitHintsMap::recordIonCompilation(JSScript*) ()
#3 0x0000555557f6536d in js::jit::CodeGenerator::link(JSContext*, js::jit::WarpSnapshot const*) ()
#4 0x0000555557f9d522 in js::jit::Compile(JSContext*, JS::Handle<JSScript*>, js::jit::BaselineFrame*, unsigned char*) ()
#5 0x0000555557f9c7c8 in js::jit::CanEnterIon(JSContext*, js::RunState&) ()
#6 0x000055555808bc3c in js::jit::MaybeEnterJit(JSContext*, js::RunState&) ()
#7 0x0000555557040e2f in js::RunScript(JSContext*, js::RunState&) ()
#8 0x0000555557041811 in js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, js::MaybeConstruct, js::CallReason) ()
#9 0x0000555557043a27 in InternalConstruct(JSContext*, js::AnyConstructArgs const&, js::CallReason) ()
#10 0x0000555557b95bd5 in js::jit::DoCallFallback(JSContext*, js::jit::BaselineFrame*, js::jit::ICFallbackStub*, unsigned int, JS::Value*, JS::MutableHandle<JS::Value>) ()
#11 0x0000003afc1c0f07 in ?? ()
[...]
#22 0x0000000000000000 in ?? ()
rax 0x55555583caad 93824995281581
rbx 0x7ffff33fc000 140737274429440
rcx 0x5555588e7888 93825046313096
rdx 0x0 0
rsi 0x7ffff6abd770 140737331844976
rdi 0x7ffff6abc540 140737331840320
rbp 0x7ffffff85850 140737487853648
rsp 0x7ffffff85820 140737487853600
r8 0x7ffff6abd770 140737331844976
r9 0x7ffff7fe3840 140737354020928
r10 0x2 2
r11 0x0 0
r12 0x7ffffff85874 140737487853684
r13 0xffffffffffffff 72057594037927935
r14 0x7ffffff858b0 140737487853744
r15 0xeb674046c8035882 -1484146879447738238
rip 0x5555580a0d59 <bool mozilla::detail::HashTable<mozilla::HashMapEntry<unsigned int, js::jit::JitHintsMap::IonHint*>, mozilla::HashMap<unsigned int, js::jit::JitHintsMap::IonHint*, mozilla::DefaultHasher<unsigned int, void>, js::SystemAllocPolicy>::MapHashPolicy, js::SystemAllocPolicy>::add<unsigned int&, js::jit::JitHintsMap::IonHint*&>(mozilla::detail::HashTable<mozilla::HashMapEntry<unsigned int, js::jit::JitHintsMap::IonHint*>, mozilla::HashMap<unsigned int, js::jit::JitHintsMap::IonHint*, mozilla::DefaultHasher<unsigned int, void>, js::SystemAllocPolicy>::MapHashPolicy, js::SystemAllocPolicy>::AddPtr&, unsigned int&, js::jit::JitHintsMap::IonHint*&)+1177>
=> 0x5555580a0d59 <_ZN7mozilla6detail9HashTableINS_12HashMapEntryIjPN2js3jit11JitHintsMap7IonHintEEENS_7HashMapIjS7_NS_13DefaultHasherIjvEENS3_17SystemAllocPolicyEE13MapHashPolicyESC_E3addIJRjRS7_EEEbRNSF_6AddPtrEDpOT_+1177>: movl $0x859,0x0
0x5555580a0d64 <_ZN7mozilla6detail9HashTableINS_12HashMapEntryIjPN2js3jit11JitHintsMap7IonHintEEENS_7HashMapIjS7_NS_13DefaultHasherIjvEENS3_17SystemAllocPolicyEE13MapHashPolicyESC_E3addIJRjRS7_EEEbRNSF_6AddPtrEDpOT_+1188>: callq 0x555556f36513 <abort>
The testcase here reproduces reliably for me after 6-10 seconds but it does not reduce further and is comment-sensitive (so don't be rude around it ;)).
To me, this looks like a subtle form of memory corruption going on in JITs, marking s-s.
|
|
1,852,354 | 16,568,964 |
If you keep clicking "Show less frequently" on an addon suggestion until the cap is reached without closing the urlbar panel, the command should disappear from the menu but it doesn't. This bug isn't possible to trigger right now due to the fact there is no cap (bug 1852353).
This is the same as bug 1832826 except for addon suggestions, and the fix is the same.
|
|
1,852,391 | 16,569,229 |
`browser.tabs.update(tabId, { pinned: true })` fails if the specified tab is discarded (pending).
# Steps to reproduce
1. Install an extension with `tabs` permission.
2. Call `browser.tabs.update(tabId, { discarded: true })` for a tab.
3. Call `browser.tabs.update(tabId, { pinned: true })` for the tab same to the step 2.
# Actual result
An error is reported in the browser console, as:
```
can't access property "isAppTab", aTab.linkedBrowser.browsingContext is null tabbrowser.js:716
_notifyPinnedStatus chrome://browser/content/tabbrowser.js:716
pinTab chrome://browser/content/tabbrowser.js:732
update chrome://browser/content/parent/ext-tabs.js:934
result resource://gre/modules/ExtensionParent.sys.mjs:1127
withCallContextData resource://gre/modules/ExtensionParent.sys.mjs:607
result resource://gre/modules/ExtensionParent.sys.mjs:1126
withPendingBrowser resource://gre/modules/ExtensionParent.sys.mjs:617
result resource://gre/modules/ExtensionParent.sys.mjs:1125
callAndLog resource://gre/modules/ExtensionParent.sys.mjs:1086
recvAPICall resource://gre/modules/ExtensionParent.sys.mjs:1124
InterpretGeneratorResume self-hosted:1469
AsyncFunctionNext self-hosted:852
```
# Expected result
The tab become pinned with discarded state.
# Environment
* Windows 10
* Firefox ESR115
* Nightly 119.0a1 (build ID: 20230908211202)
# Bisection result
The mozregression says that the first bad build is:
```
build_date: 2023-03-14
build_type: nightly
build_url: https://archive.mozilla.org/pub/firefox/nightly/2023/03/2023-03-14-16-14-05-mozilla-central/firefox-113.0a1.en-US.win64.zip
changeset: c47b3b28fb48c01c33585b46650249b182cabe00
pushlog_url: https://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=a8939ff5236dad956af827235ceed7104e5e92c2&tochange=c47b3b28fb48c01c33585b46650249b182cabe00
repo_name: mozilla-central
repo_url: https://hg.mozilla.org/mozilla-central
```
|
|
1,852,522 | 16,572,016 |
Created attachment 9352461
Screenshot_20.png
**Found in**
* 119.0a1 (2023-09-10)
**Affected versions**
* 119.0a1 (2023-09-10)
**Tested platforms**
* Affected platforms:macOS 12, Windows 10x64, Ubuntu 20
* Unaffected platforms: none
**Preconditions**
* browser.shopping.experience2023.enabled: true
* browser.shopping.experience2023.optedIn: 1
* browser.shopping.experience2023.survey.hasSeen:false
* browser.shopping.experience2023.survey.pdpVisits:5
**Steps to reproduce**
1. Restart Firefox after settings the above preferences and open a random Amazon product.
2. Observe the `Helo Improve Firefox` survey.
**Expected result**
* The message and options are correctly aligned.
**Actual result**
* The `Very satisfied` option is too close to the above message.
**Regression range**
* Not a regression
**Additional notes**
* Attached a screenshot.
|
|
1,852,524 | 16,572,023 |
Created attachment 9352462
survery_keyboard_tab.gif
**Found in**
* 119.0a1 (2023-09-10)
**Affected versions**
* 119.0a1 (2023-09-10)
**Tested platforms**
* Affected platforms:macOS 12, Windows 10x64, Ubuntu 20
* Unaffected platforms: none
**Preconditions**
* browser.shopping.experience2023.enabled: true
* browser.shopping.experience2023.optedIn: 1
* browser.shopping.experience2023.survey.hasSeen:false
* browser.shopping.experience2023.survey.pdpVisits:5
**Steps to reproduce**
1. Restart Firefox after settings the above preferences and open a random Amazon product.
2. Use the `Tab` and arrow keys to navigate the options on both survey pages.
**Expected result**
* The focus ring is correctly displayed.
**Actual result**
* The focus ring is clipped for the first and last options.
**Regression range**
* Not a regression
**Additional notes**
* Attached a screen recording.
|
|
1,852,778 | 16,574,070 |
Created attachment 9352692
title bar customize mode.png
**Found in**
- Firefox 119.0a1
**Affected versions**
- Firefox 119.0a1
**Tested platforms**
- Affected platforms: Windows 11, macOS 13.5.2
- Unaffected platforms: Ubuntu 22.04
**Preconditions**
- Have the system theme set to dark
**Steps to reproduce**
1. Launch Firefox with a clean profile
2. Access customize mode
3. Look over the Title bar option
**Expected result**
- The Title bar option is visible
**Actual result**
- The Title bar option is barely visible
**Regression range**
- Will see for a regression
**Additional notes**
- The issue can be seen in the attachment
- This only happens if the system theme is set to Dark and Firefox has the Auto theme. Will not reproduce if dark is manually selected from Themes within Firefox.
|
|
1,853,860 | 16,584,196 |
Perfherder has detected a browsertime performance regression from push [417d0e36611853051fc5c400b14455b9a7c22868](https://github.com/mozilla-mobile/firefox-android/commit/417d0e36611853051fc5c400b14455b9a7c22868). As author of one of the patches included in that push, we need your help to address this regression.
### Regressions:
| **Ratio** | **Test** | **Platform** | **Options** | **Absolute values (old vs new)** |
|--|--|--|--|--|
| [6%](https://treeherder.mozilla.org/perfherder/graphs?timerange=1209600&series=firefox-android,4654340,1,13) | [booking](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#booking-m) FirstVisualChange | android-hw-a51-11-0-aarch64-shippable-qr | warm webrender | [269.75](https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CuWQRJ1xTu6aAEhHKFmcbg/runs/0/artifacts/public/test_info/browsertime-results.tgz) -> [284.78](https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SDupsW8HR8aOeV3aORq6Cg/runs/0/artifacts/public/test_info/browsertime-results.tgz) |
Details of the alert can be found in the [alert summary](https://treeherder.mozilla.org/perfherder/alerts?id=39576), including links to graphs and comparisons for each of the affected tests. Please follow our [guide to handling regression bugs](https://wiki.mozilla.org/TestEngineering/Performance/Handling_regression_bugs) and **let us know your plans within 3 business days, or the offending patch(es) may be backed out** in accordance with our [regression policy](https://www.mozilla.org/en-US/about/governance/policies/regressions/).
If you need the profiling jobs you can trigger them yourself from treeherder job view or ask a sheriff to do that for you.
For more information on performance sheriffing please see our [FAQ](https://wiki.mozilla.org/TestEngineering/Performance/FAQ).
|
|
1,853,979 | 16,584,988 |
**Filed by:** csabou [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer?job_id=429691749&repo=autoland
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VS8V6j8WTEO2FwpKRzsMgA/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/VS8V6j8WTEO2FwpKRzsMgA/runs/0/artifacts/public/logs/live_backing.log&only_show_unexpected=1
---
```
[task 2023-09-19T16:37:21.720Z] 16:37:21 INFO - TEST-PASS | browser/components/shopping/tests/browser/browser_shopping_onboarding.js | multi-stage-message-slot showing opt-in message rendered - "multi-stage-message-slot" == "multi-stage-message-slot" -
[task 2023-09-19T16:37:21.721Z] 16:37:21 INFO - Buffered messages finished
[task 2023-09-19T16:37:21.724Z] 16:37:21 INFO - TEST-UNEXPECTED-FAIL | browser/components/shopping/tests/browser/browser_shopping_onboarding.js | message is shown - false == true - got false, expected true (operator ==)
[task 2023-09-19T16:37:21.725Z] 16:37:21 INFO - Stack trace:
[task 2023-09-19T16:37:21.725Z] 16:37:21 INFO - ok@resource://testing-common/SpecialPowersSandbox.sys.mjs:85:21
[task 2023-09-19T16:37:21.726Z] 16:37:21 INFO - @chrome://mochitests/content/browser/browser/components/shopping/tests/browser/browser_shopping_onboarding.js:128:11
[task 2023-09-19T16:37:21.726Z] 16:37:21 INFO - async*execute@resource://testing-common/SpecialPowersSandbox.sys.mjs:139:12
[task 2023-09-19T16:37:21.727Z] 16:37:21 INFO - _spawnTask@resource://testing-common/SpecialPowersChild.sys.mjs:1654:15
[task 2023-09-19T16:37:21.728Z] 16:37:21 INFO - receiveMessage@resource://testing-common/SpecialPowersChild.sys.mjs:257:21
[task 2023-09-19T16:37:21.728Z] 16:37:21 INFO - JSActor query*receiveMessage@resource://testing-common/SpecialPowersParent.sys.mjs:1385:14
[task 2023-09-19T16:37:21.729Z] 16:37:21 INFO - JSActor query*spawn@resource://testing-common/SpecialPowersChild.sys.mjs:1583:17
[task 2023-09-19T16:37:21.730Z] 16:37:21 INFO - test_showOnboarding_notOptedIn/<@chrome://mochitests/content/browser/browser/components/shopping/tests/browser/browser_shopping_onboarding.js:108:27
[task 2023-09-19T16:37:21.731Z] 16:37:21 INFO - withNewTab@resource://testing-common/BrowserTestUtils.sys.mjs:146:22
[task 2023-09-19T16:37:21.731Z] 16:37:21 INFO - async*test_showOnboarding_notOptedIn@chrome://mochitests/content/browser/browser/components/shopping/tests/browser/browser_shopping_onboarding.js:95:26
[task 2023-09-19T16:37:21.732Z] 16:37:21 INFO - handleTask@chrome://mochikit/content/browser-test.js:1131:26
[task 2023-09-19T16:37:21.733Z] 16:37:21 INFO - _runTaskBasedTest@chrome://mochikit/content/browser-test.js:1203:18
[task 2023-09-19T16:37:21.735Z] 16:37:21 INFO - async*Tester_execTest@chrome://mochikit/content/browser-test.js:1345:14
[task 2023-09-19T16:37:21.735Z] 16:37:21 INFO - nextTest/<@chrome://mochikit/content/browser-test.js:1120:14
[task 2023-09-19T16:37:21.736Z] 16:37:21 INFO - SimpleTest.waitForFocus/<@chrome://mochikit/content/tests/SimpleTest/SimpleTest.js:1058:13
[task 2023-09-19T16:37:21.737Z] 16:37:21 INFO - Leaving test bound test_showOnboarding_notOptedIn
[task 2023-09-19T16:37:21.738Z] 16:37:21 INFO - Entering test bound test_hideOnboarding_optedIn
[task 2023-09-19T16:37:23.399Z] 16:37:23 INFO - TEST-PASS | browser/components/shopping/tests/browser/browser_shopping_onboarding.js | message is hidden - true == true -
```
|
|
1,856,944 | 16,606,906 |
Created attachment 9356594
JumpingAnimation.mp4
### Preconditions
Make sure you have VPN connected to US.
Make sure you have developer's option enabled, and the "Shopping experience" toggle is ON.
Enroll in the Fakespot shopping experience.
### Steps to reproduce
1. Go to a product detailed page from amazon.com, bestbuy.com, or walmart.com.
2. Tap the price tag icon in the URL.
3. Observe the bottom sheet opening.
### Expected behavior
The bottom sheet opens smoothly, visual visual defects.
### Actual behavior
The bottom sheet displays a jumping animation when opened.
Additionally, the jumping animation can also be observed in the following scenarios:
- after tapping the "Check review quality" button for a product without analysis;
- after tapping the "Check now" button for a product with outdated analysis;
- once the analysis/re-analysis is completed and the bottom sheet updated;
- when collapsing sections on the bottom sheet (How we determine review quality, Settings);
### Device information
* Firefox version: Nightly 120.0a1 from 10/04
* Android device: any device
### Any additional information?
|
|
1,858,879 | 16,621,013 |
Created attachment 9358253
Message.png
### Preconditions
Enroll in the https://stage.experimenter.nonprod.dataops.mozgcp.net/nimbus/dpop-simplified-nav/summary Experiment using Nimbus-cli.
### Steps to reproduce
1. Launch the application and enter the private browsing mode.
2. Observe the hyperlink displayed in the "Leave no trace on this device" message on homepage.
### Expected behavior
According to the [Figma](https://www.figma.com/file/Ha2T4I0nX0h7B95GYxH6wV/Simplified-UI-for-Private-Mode?type=design&node-id=3333-22585&mode=design&t=lOlA5FdmGfVLq6rj-0) design, the "Who might be able to see my activity?" link color should be white, as the rest of the message.
### Actual behavior
The "Who might be able to see my activity?" link color is light purple.
### Device information
* Firefox version: 120.0a1 from 10/13
* Android device model & Android OS version: Samsung Galaxy A53 5G (Android 13)
|
|
1,858,882 | 16,621,020 |
### Preconditions
Enroll in the https://stage.experimenter.nonprod.dataops.mozgcp.net/nimbus/dpop-simplified-nav/summary Experiment using Nimbus-cli.
### Steps to reproduce
1. Launch the application and enter the private browsing mode.
2. Tap on the "Who might be able to see my activity?" link from the "Leave no trace on this device" message displayed on homepage.
3. Observe the URL.
### Expected behavior
According to the [Figma](https://www.figma.com/file/Ha2T4I0nX0h7B95GYxH6wV/Simplified-UI-for-Private-Mode?type=design&node-id=3333-22585&mode=design&t=lOlA5FdmGfVLq6rj-0) design, the "Who might be able to see my activity?" URL should be https://support.mozilla.org/en-US/kb/common-myths-about-private-browsing?as=u&utm_source=inproduct
### Actual behavior
When entering the "Who might be able to see my activity?" link, the URL https://support.mozilla.org/en-US/kb/common-myths-about-private-browsing is missing the "?as=u&utm_source=inproduct" parameter.
### Device information
* Firefox version: 120.0a1 from 10/13
* Android device model & Android OS version: Samsung Galaxy A53 5G (Android 13)
|
|
1,850,358 | 16,553,586 |
Created attachment 9350461
Screenshot 2023-08-28 at 16.34.28.png
**[Affected versions]:**
- Firefox RC 117.0 - Build ID: 20230824132758
**[Affected Platforms]:**
- Windows 10 x64
- macOS 13.4.1
- Ubuntu 22.04 x64
**[Prerequisites]:**
- Have the following prefs in the βabout:configβ page:
- `nimbus.debug` set to `true`
- `browser.newtabpage.activity-stream.asrouter.devtoolsEnabled` set to `true`
**[Steps to reproduce]:**
1. Open the browser using the profile from prerequisites.
2. Navigate to βabout:studies?optin_slug=newtab-pocket-topics-microsurvey&optin_branch=treatment-a&optin_collection=nimbus-previewβ.
3. Navigate to the βabout:newtab#asrouterβ page and scroll to the βMessagesβ section.
4. On the βShow messages fromβ section select the βmessagin-experimentsβ option.
5. Under the βNEWTAB_POCKET_SURVEYβ message section click the βShowβ button.
6. Select any of the options on the displayed survey message.
7. Click the βSubmitβ button.
8. Observe the βThank youβ message.
**[Expected result]:**
- A green checkmark icon is displayed in front of the message.
**[Actual result]:**
- The βFirefoxβ icon is displayed instead of the green checkmark.
**[Notes]:**
- According to the received β[Figma](https://www.figma.com/file/z4vprKpq3LdTfkpaxoLuRn/Microsurveys?type=design&node-id=1055-13102&mode=design&t=rBgpeRpcTlXYrKKi-0)β, a green checkmark icon is displayed in front of the message.
- Attached is a screenshot of the issue:
|
|
1,850,856 | 16,556,964 |
In the console there's an exception:
```
NS_ERROR_ILLEGAL_VALUE: Invalid index: not in the closed tabs SessionStore.sys.mjs:3829
ssi_undoCloseTab resource:///modules/sessionstore/SessionStore.sys.mjs:3829
ss_undoCloseTab resource:///modules/sessionstore/SessionStore.sys.mjs:480
onRestoreAllTabsCommand resource:///modules/sessionstore/RecentlyClosedTabsAndWindowsMenuUtils.sys.mjs:130
```
This is a regression from bug 1819675. We pass in the index, but as each tab is re-opened, it gets removed from the `_closedTabs` array so the index gets out of bounds. We should just pass `0` so we successively open the first in the array until the array is empty.
Marking as low severity as this isn't a commonly used feature.
|
|
1,865,067 | 16,670,167 |
### Steps to reproduce
1. Find a product that has "New info to check"
2. Press the check now button
3. Close the review checker sheet
4. Open it back
You can repeat steps 3 and 4, the actual behavior reproduces every time.
### Expected behavior
The shopping.surface_reanalyze_clicked is sent only once, when the "Check now" button is tapped
### Actual behavior
The shopping.surface_reanalyze_clicked is sent every time the sheet is opened and the product is being analyzed.
### Device information
* Firefox version: Nightly 121.0a1, 120.0b9
* Android device model: Pixel 7
* Android OS version: 13
### Any additional information?
This can be reproduced on both beta and nightly. Below is a recording and the event pings sent during the recording.
```
"events": [
{
"timestamp": 0,
"category": "shopping",
"name": "address_bar_icon_clicked"
},
{
"timestamp": 43,
"category": "shopping",
"name": "surface_displayed",
"extra": {
"view": "half"
}
},
{
"timestamp": 398,
"category": "shopping",
"name": "surface_stale_analysis_shown"
},
{
"timestamp": 1971,
"category": "shopping",
"name": "surface_reanalyze_clicked"
},
{
"timestamp": 3606,
"category": "shopping",
"name": "surface_closed",
"extra": {
"source": "click_outside"
}
},
{
"timestamp": 4638,
"category": "shopping",
"name": "address_bar_icon_clicked"
},
{
"timestamp": 4672,
"category": "shopping",
"name": "surface_displayed",
"extra": {
"view": "half"
}
},
{
"timestamp": 5010,
"category": "shopping",
"name": "surface_reanalyze_clicked"
},
{
"timestamp": 7080,
"category": "shopping",
"name": "surface_closed",
"extra": {
"source": "click_outside"
}
},
{
"timestamp": 8010,
"category": "shopping",
"name": "address_bar_icon_clicked"
},
{
"timestamp": 8055,
"category": "shopping",
"name": "surface_displayed",
"extra": {
"view": "half"
}
},
{
"timestamp": 8388,
"category": "shopping",
"name": "surface_reanalyze_clicked"
},
{
"timestamp": 10787,
"category": "shopping",
"name": "surface_closed",
"extra": {
"source": "click_outside"
}
},
{
"timestamp": 11637,
"category": "shopping",
"name": "address_bar_icon_clicked"
},
{
"timestamp": 11673,
"category": "shopping",
"name": "surface_displayed",
"extra": {
"view": "half"
}
},
{
"timestamp": 11971,
"category": "shopping",
"name": "surface_reanalyze_clicked"
},
{
"timestamp": 37047,
"category": "shopping",
"name": "surface_closed",
"extra": {
"source": "click_outside"
}
},
{
"timestamp": 38061,
"category": "shopping",
"name": "address_bar_icon_clicked"
},
{
"timestamp": 38117,
"category": "shopping",
"name": "surface_displayed",
"extra": {
"view": "half"
}
},
{
"timestamp": 38494,
"category": "shopping",
"name": "surface_reanalyze_clicked"
}
]
}
```
|
|
1,882,248 | 16,816,716 |
**Found in**
* Nightly 125.0a1 (2024-02-27)
**Affected versions**
* Nightly 125.0a1 (2024-02-27)
* Beta 124.0b3
* Release 123
**Affected platforms**
* All
**Steps to reproduce**
1. Open a PDF in Firefox.
2. Highlight any text or free highlight anything.
3. Use the Tab key in order to reach the Delete button.
4. Use the Space key on the keyboard in order to select the Delete button.
**Expected result**
* The Highlight should be deleted.
**Actual result**
* The Space key will not select the Delete button.
The Space key can be used to select the Colors but not the Delete button.
**Regression range**
Not a regression.
|
|
1,883,337 | 16,828,204 |
Created attachment 9389023
media indicator.webm
**Found in**
- Firefox 124.0b6
**Affected versions**
- Firefox 124.0b6
- Firefox 125.0a1
**Tested platforms**
- Affected platforms: Ubuntu 22.04, macOS 13.6.4, Windows 10
**Precondition**
- Have multiple windows with ongoing media from Youtube
**Steps to reproduce**
1. Restart Firefox after setting up the precondition
2. Access Open Tabs in Firefox View
3. Tab through the websites in the Window list
4. Select a media indicator and press space/enter
**Expected result**
- The media icon mutes/unmutes (depends on the case)
**Actual result**
- The media icon disappears, focus is lost and the websites on that respective window cannot be browsed anymore by keyboard
**Additional notes**
- The issue can be seen in the attachment
- Autoplay is blocking the websites from starting after a restart, so maybe there shouldn't be any media indicator in these cases? (some Youtube sessions will retain the indicator and some don't, as seen in the attachment too).
|
|
1,884,435 | 16,835,050 |
From https://mozilla-hub.atlassian.net/browse/SNG-1387:
> A box UI element around the Yelp logo was erroneously included in the designs for the higher placement/top pick version of Yelp Suggestions:
|
|
1,873,683 | 16,742,830 |
Created attachment 9371767
history-list-state-after-maximized.png
**Found in**
* Firefox 122.0b7
**Affected versions**
* Firefox 123.0a1 (2024.01.09)
* Firefox 122.0b7
**Unaffected versions**
* Firefox 120.0
* Firefox 121.0.1
**Tested platforms**
* Affected platforms: macOS 12, Ubuntu 22, Windows 10
**Preconditions**
* Firefox profile with history records
**Steps to reproduce**
1. Open Firefox View Next Tab and focus the History, History card is displayed and all items are sorted by date
2. Click on up arrow to hide list
3. Interact with browser maximize and minimize buttons, check the History card state.
**Expected result**
* History card lists state remains in the collapsed state while minimized and maximized the browser with browser buttons.
**Actual result**
* History card lists items expands while minimized and maximized the browser with browser buttons.
**Regression range**
* I will come back with regression range ASAP.
**Additional notes**
* Attached a screenshot with the issue.
* On Windows and Ubuntu the issue is reproducing only partially, when interacting with minimize button, clicking on maximize button the list remain in collapsible state.
|
|
1,885,280 | 16,842,856 |
Created attachment 9391189
az_recorder_20240314_112152.mp4
### Prerequisites
1. Go to the three-dot menu - Settings - About Firefox Nightly, and tap 5 times on the logo.
2. Exit the About Firefox Nightly, and go to the Secret Settings.
3. Enable the "Enable Firefox Translations" toggle.
4. Set your device's OS to English - US.
### Steps to reproduce
1. Open a translatable page (i.e. yr.no), and tap on the translation icon from the toolbar.
2. Tap on the dropdown arrow from the "Translate from" section.
3. Select a language.
### Expected behavior
The language is selected without issues.
### Actual behavior
A visual glitch with the languages list is displayed above the translation sheet for a second.
### Device information
* Firefox version: Firefox 125 (2024-03-13)
* Android device model: Realm C35 (Android 12), Google Pixel 6 (Android 14), Samsung Galaxy S24 (Android 14)
### Any additional information?
* This issue also reproduces while selecting a language from "Translate to" list.
|
|
1,886,694 | 16,854,084 |
Created attachment 9392461
weather UI.png
**[Affected versions]:**
- Firefox Release 124.0 (Build ID: 20240311145044)
- Firefox Beta 125.0b1 (Build ID: 20240318085508)
- Firefox Nightly 126.0a1 (Build ID: 20240319093523)
**[Affected Platforms]:**
- Windows 10
- macOS 13.1
- Linux Mint 20.1
[Prerequisites]:
- Have the following prefs set:
browser.urlbar.quicksuggest.enabled = true
browser.urlbar.suggest.weather = true
browser.urlbar.weather.featureGate = true
browser.urlbar.weather.ignoreVPN = true
browser.search.region = US
**[Steps to reproduce]:**
1. Open the Firefox with the profile from prerequisites.
2. Type in the urlbar a keyword that triggers the Weather suggestions (eg: weather).
3. Resize the browser until the weather suggestions content is displayed on 4 rows while the "Feedback" button is also displayed.
4. Observe the weather suggestion.
**[Expected result]:**
- The weather suggestions content is centered (the text + the icon).
**[Actual result]:**
- The weather suggestions content (the icon and the text) are not centered.
**[Notes]:**
- Attached is a screenshot of the issue.
|
|
1,886,964 | 16,855,754 |
**Found in**
* 126.0a1 (2024-03-21)
**Affected versions**
* 126.0a1 (2024-03-21)
* Beta 125.0b3
**Affected platforms**
* ALL
**Preconditions:**
pdfjs.enableHighlightEditor - true
pdfjs.enableHighlightFloatingButton - true
Enable NVDA.
**Steps to reproduce**
1. Have a PDF opened in Firefox.
2. Select any text.
3. Hover the mouse cursor over the Highlight Floating button.
**Expected result**
* The FLoating button should be read out loud by NVDA
**Actual result**
* The Highlight Floating button is not read by the NVDA.
**Regression range**
Not a Regression
|
|
1,870,805 | 16,718,799 |
Created attachment 9369389
ONboarding.png
**Found in**
* Nightly 123.0a1 (2023-12-18)
**Affected versions**
* Nightly 123.0a1 (2023-12-18)
* Beta 122.0b1
**Affected platforms**
* MacOS
* This Issue affects Window as well but its a less noticeable issue there.
**Preconditions:**
Set the browser.shopping.experience2023.enabled - TRUE
Set the browser.shopping.experience2023.optedIn - 0
Have a DE build.
**Steps to reproduce**
1. Reach Amazon.com/p
2. Select the first available item in order to reach the product details page.
3. Resize the Review Checker to the smallest size
**Expected result**
* The Onboarding card text should move on the next rows when resized to the smallest size.
**Actual result**
* The Onboarding card shrinks a bit but the text is still not fully visible after resizing it to the smallest size.
Please note that En-US and FR builds do not have this issue, (On those versions it was fixed with Bug 1866501 )
**Regression range**
N/A
|
|
1,871,040 | 16,720,737 |
Created attachment 9369648
2023-12-20_14h44_02.png
**Found in**
* Nightly 123.0a1 (2023-12-20)
**Affected versions**
* Nightly 123.0a1 (2023-12-20)
* Beta 122.0b1
**Affected platforms**
* ALL
**Preconditions:**
Set the browser.shopping.experience2023.enabled - TRUE
Set the browser.shopping.experience2023.optedIn - 1
Have a DE build.
**Steps to reproduce**
1. Reach enough Product details pages until the micro Survey is triggered.
2. Select any option and reach the second slide.
3. Resize the Review Checker to a smaller size.
**Expected result**
* The Text should move to a second row before it reaches the X Close button.
**Actual result**
* The X Close button overlaps the text when the Review checker is at a smaller size.
**Regression range**
N/A
|
|
1,872,851 | 16,734,961 |
**Found in**
- Firefox 123.0a1
**Affected versions**
- Firefox 123.0a1
**Tested platforms**
- Affected platforms: macOS 13.6.3, Windows 11, Ubuntu 22.04
**Steps to reproduce**
1. Launch Firefox and access Firefox View
2. Open the History section
3. Focus search and type any word/website
4. Copy the typed word and paste it multiple times inside search
**Expected result**
- The search results box / import history message retains their width in page when longer strings are typed
**Actual result**
- Both the search results box and import history message gets stretched out of view
**Additional notes**
- The issue can be seen in the [attachment](https://drive.google.com/file/d/1XoxbqnEn14Pyi0txzdT0gUne-v9RRb0P/view?usp=sharing)
|
|
1,880,223 | 16,796,674 |
Created attachment 9380114
scroll_0.gif
**Found in**
* 124.0a1 (2024-02-13)
**Affected versions**
* 124.0a1 (2024-02-13)
**Tested platforms**
* Affected platforms: Ubuntu 22, Windows 10x64
* Unaffected platforms: macOS 12
**Steps to reproduce**
1. Open about:preferences#general and scroll down to Network Settings.
2. Click on Settings and add some text until the text field overflows.
**Expected result**
* A scrollbar is displayed.
**Actual result**
* No scrollbar is displayed.
**Regression range**
* Last good revision: 6b7c9fbc0ffaf2a78cc6f22c34dfab000f8aeaaf
First bad revision: cd42800e011bd3c11cc8c3191a48081d3b4d12a6
Pushlog:
https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=6b7c9fbc0ffaf2a78cc6f22c34dfab000f8aeaaf&tochange=cd42800e011bd3c11cc8c3191a48081d3b4d12a6
**Additional notes**
* Attached a screen recording.
* The scrollbar is displayed if the text field has a certain height, for example opening the window while Firefox is fullscreen will show the scrollbar.
|
|
1,880,637 | 16,799,693 |
Created attachment 9380605
Screenshot (20).png
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0
Steps to reproduce:
about:support and scroll down to the section: Media.
Actual results:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0
All fields there are too wide.
Expected results:
Same width
|
|
1,880,865 | 16,802,832 |
Created attachment 9380871
misaligned message.jpg
**[Affected versions]:**
- Firefox Nightly 125.0a1 - Build ID: 20240219095613
**[Affected Platforms]:**
- Windows 10 x64
- macOS 12.6.1
- Linux Ubuntu 20.04 x64
**[Prerequisites]:**
- Have the following prefs set with the values to enable the feature:
`browser.search.region` = US (connect to a VPN server if outside US)
`browser.urlbar.quicksuggest.rustEnabled` = true
`browser.urlbar.suggest.yelp` = true
`browser.urlbar.yelp.featureGate` = true
`browser.urlbar.yelp.priority` = true
**[Steps to reproduce]:**
1. Open the browser with the profile from the prerequisites.
2. Type the βpet shopβ string in the Address Bar.
3. Click the βFeedbackβ button from the Yelp suggestion.
4. Click the βShow less frequentlyβ option.
5. Observe the message that appears under the Yelp suggestion.
**[Expected result]:**
- The Firefox logo and text of the message are correctly aligned with the rest of the favicons and results.
**[Actual result]:**
- The Firefox logo and text of the message are not aligned with the rest of the favicons and results.
**[Notes]:**
- This issue affects Yelp results displayed on both Top Pick and Firefox Suggest locations.
- Attached is a screenshot of the issue.
|
|
1,868,567 | 16,699,473 |
Created attachment 9367253
fx view search long string.png
**Found in**
- Firefox 122.0a1
**Affected versions**
- Firefox 122.0a1
**Tested platforms**
- Affected platforms: macOS 14.1.2, Windows 11, Ubuntu 22.04
**Preconditions**
- Have browser.firefox-view.search.enabled set to true
**Steps to reproduce**
1. Launch Firefox and access Firefox View
2. Open any of the sections available besides Open Tabs
3. Focus search and type any word/website
4. Copy the typed word and paste it multiple times inside search
5. Look at the "No results for ..." message in the page
**Expected result**
- The searched string is kept inside the message box
**Actual result**
- The searched string will overflow the message box
**Additional notes**
- The issue can be seen in the attachment
- Strangely enough, if a website link is pasted multiple times, it will not behave the same as a manually typed string
- The issue is not reproducible in Open Tabs
|
|
1,838,321 | 16,454,325 |
```
org.mozilla.geckoview.GeckoResult$UncaughtException: java.lang.NullPointerException
at org.mozilla.geckoview.GeckoResult.dispatchLocked(GeckoResult.java:22)
at org.mozilla.geckoview.GeckoResult.completeExceptionally(GeckoResult.java:13)
at org.mozilla.geckoview.GeckoResult.lambda$thenInternal$6(GeckoResult.java:63)
at org.mozilla.geckoview.GeckoResult.$r8$lambda$CtmBkNQN_okuE2MBIfsimJFUi6Q(GeckoResult.java:1)
at org.mozilla.geckoview.GeckoResult$$ExternalSyntheticLambda4.run(R8$$SyntheticClass:9)
at org.mozilla.geckoview.GeckoResult.lambda$dispatchLocked$7(GeckoResult.java:17)
at org.mozilla.geckoview.GeckoResult.$r8$lambda$JYfUuhIZf5JetbZ-qCaWvlWcPeE(GeckoResult.java:1)
at org.mozilla.geckoview.GeckoResult$$ExternalSyntheticLambda0.run(R8$$SyntheticClass:3)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6823)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1563)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1451)
Caused by: java.lang.NullPointerException
at org.mozilla.fenix.addons.InstalledAddonDetailsFragment$bindAllowInPrivateBrowsingSwitch$1$1.invoke(InstalledAddonDetailsFragment.kt:26)
at mozilla.components.feature.addons.AddonManager$setAddonAllowedInPrivateBrowsing$3.invoke(AddonManager.kt:33)
at mozilla.components.browser.engine.gecko.GeckoEngine$$ExternalSyntheticLambda17.onValue(R8$$SyntheticClass:35)
at org.mozilla.geckoview.GeckoResult.lambda$thenInternal$6(GeckoResult.java:11)
```
|
|
1,838,435 | 16,455,242 |
Created attachment 9339065
device-2023-06-14-164452.webm
### Steps to reproduce
1. A compatible android extension from AMO stage addons.allizom.org (the addon version is part of the recommended for Android promoted group + included in the fenix collection) which has in manifest.json the gecko_android key set with strict_min_version > 113.0
2. Click the install button
### Expected behavior
Installation is complete.
### Actual behavior
Installation fails with message " Add-on is not supported"
### Device information
Pixel 6 pro API33 -> AS emulator
Pixel 1 with Android 10.0
* Firefox version: 116.0 debug build
* Android device model: Pixel
* Android OS version: 10.0
### Any additional information?
Extensions with gecko_android and strict_min_version = 113.0 can be installed.
Extensions with gecko_android and strict_min_version < 113.0 or > 113.0 fail at installation. Scenario with FF < 113.0 should not be of great concern since AMO enforced the minimum to be 113.0 https://github.com/mozilla/addons-server/issues/20530
|
|
1,847,179 | 16,524,107 |
### Steps to reproduce
1. Go to `about:config` and set the `extensions.webapi.enabled` pref to `true` in Nightly
2. Configure a custom AMO user collection in Fenix, it should NOT have Privacy Badger
3. Open addons.mozilla.org in a new tab
4. Go to the Privacy Badger detail page and try to install the add-on
### Expected behavior
An error message saying: "Add-on is not supported" because users (of a custom collection) can only install the add-ons in the custom AMO user collection.
### Actual behavior
An error message saying: "Add-on already installed", which is incorrect.
|
|
1,847,622 | 16,528,879 |
Steps to reproduce:
Right click a message in a message list and choose Open Message in New Window.
Actual results:
A new window with the message is opened, with a window title of Mozilla Thunderbird.
Expected results:
The window title should be the subject of the message, as it was in 112 and earlier.
|
|
1,849,365 | 16,543,849 |
Created attachment 9349579
NotNow.mp4
**Found in**
* Nightly 118.0a1 (2023-08-18)
**Affected versions**
* Nightly 118.0a1 (2023-08-18)
**Affected platforms**
* ALL
**Preconditions:**
Set the browser.shopping.experience2023.enabled - TRUE
Set the toolkit.shopping.useOHTTP - TRUE
**Steps to reproduce**
1. Reach about:preferences and turn off feature recommendations.
2. Reach the Amazon https://www.amazon.com/dp/B09B6ZXD2V/ref=sbl_dpx_office-desks_B0B4CYW8FB_0 link
3. Click and Hold the Not Now button from the Onboarding Shopping sidebar.
**Expected result**
* The Not now button from the Onboarding Shopping sidebar should change its state when Clicked.
**Actual result**
* The Not now button from the Onboarding Shopping sidebar is missing the Clicked state.
**Regression range**
Not Applicable
|
|
1,849,571 | 16,546,743 |
Created attachment 9349766
vertical_shoppping.gif
**Found in**
* 118.0a1 (2023-08-19)
**Affected versions**
* 118.0a1 (2023-08-19)
**Tested platforms**
* Affected platforms: Windows 10x64, macOS 12, Ubuntu 20
* Unaffected platforms: none
**Preconditions**
* browser.shopping.experience2023.enabled: true
* browser.shopping.experience2023.optedIn: 0
**Steps to reproduce**
1. Open the https://www.amazon.com/dp/B08D73C9FH link.
**Expected result**
* Vertical scrollbar shouldn't be displayed without enough content.
**Actual result**
* A vertical scrollbar is displayed even if itβs not necessary.
**Regression range**
* Not Applicable. New feature.
**Additional notes**
* Attached a screen recording.
|
|
1,839,827 | 16,466,471 |
Created attachment 9340460
Wrong error.png
**Found in**
* Nightly 116.0a1
**Affected versions**
* 116.0a1
**Tested platforms**
Affected platforms:
* Ubuntu 22
* Windows 10
* macOS 12
**Preconditions**
* ensure `signon.management.page.fileImport.enabled` is set on True in about:config.
* empty or invalid .csv file
**Steps to reproduce**
1. Open Firefox and choose to import Passwords from CSV file.
2. Select the file from the preconditions.
3. Observe the error displayed.
**Expected result**
"The file doesn't include any valid password data. Pick another file" error is displayed, according to the Figma spec.
**Actual result**
"FILE_FORMAT_ERROR" is displayed.
**Regression range**
* Not a regression. Started with implementation of CSV in new migration wizard.
**Notes**
* Screenshot attached.
|
|
1,841,806 | 16,483,069 |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Steps to reproduce:
1. Install AdGuard extension (uses indexed db under the hood)
2. Switch to the private browsing mode
3. Reload browser
related issue
https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2391
Actual results:
Filters were not saved
Expected results:
Filters are saved
|
|
1,845,400 | 16,511,417 |
Not sure how this happened or escaped review, but I'm glad we're catching it now.
This bug is a one-line YAML fix for `send_in_pings` plus an annotation in Glean Dictionary to note when it was reporting, noticed, fixed, and shipped.
|
|
1,845,698 | 16,513,427 |
Steps to reproduce:
On git commit 50588a0b728b365afdd298debd35e8302efe7850 the attached sample triggers an assertion violation when invoked as `obj-x86_64-pc-linux-gnu/dist/bin/js --fuzzing-safe crash.js`
```
function f4() {
delete this.g;
Object.defineProperty(this, "g", {enumerable: true});
const o38 = {
...this,
valueOf: f4,
toString() {
return this;
},
};
const v39 = o38.createShapeSnapshot(o38);
try { let v42 = this.ReferenceError(o38); } catch (e) {}
this.checkShapeSnapshot(v39);
}
f4();
f4();
```
```
#0 0x5652a8d37f61 in js::LinkedPropMap::getPropertyInfo(unsigned int) const js/src/vm/PropMap.h:827:5
#1 0x5652a949a115 in ShapeSnapshot::PropertySnapshot::PropertySnapshot(js::PropMap*, unsigned int) js/src/builtin/TestingFunctions.cpp:5660:21
#2 0x5652a949a115 in ShapeSnapshot::checkSelf(JSContext*) const js/src/builtin/TestingFunctions.cpp:5806:9
#3 0x5652a949ab00 in ShapeSnapshot::check(JSContext*, ShapeSnapshot const&) const js/src/builtin/TestingFunctions.cpp:5834:3
#4 0x5652a94e5415 in CheckShapeSnapshot(JSContext*, unsigned int, JS::Value*) js/src/builtin/TestingFunctions.cpp:5961:13
#5 0x5652a8d58b16 in CallJSNative(JSContext*, bool (*)(JSContext*, unsigned int, JS::Value*), js::CallReason, JS::CallArgs const&) js/src/vm/Interpreter.cpp:486:13
#6 0x5652a8d57dba in js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, js::MaybeConstruct, js::CallReason) js/src/vm/Interpreter.cpp:580:12
#7 0x5652a8d6ea32 in js::CallFromStack(JSContext*, JS::CallArgs const&, js::CallReason) js/src/vm/Interpreter.cpp:652:10
#8 0x5652a8d6ea32 in js::Interpret(JSContext*, js::RunState&) js/src/vm/Interpreter.cpp:3395:16
#9 0x5652a8d57019 in js::RunScript(JSContext*, js::RunState&) js/src/vm/Interpreter.cpp:458:13
#10 0x5652a8d5be61 in js::ExecuteKernel(JSContext*, JS::Handle<JSScript*>, JS::Handle<JSObject*>, js::AbstractFramePtr, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp:845:13
#11 0x5652a8d5c5cc in js::Execute(JSContext*, JS::Handle<JSScript*>, JS::Handle<JSObject*>, JS::MutableHandle<JS::Value>) js/src/vm/Interpreter.cpp:877:10
#12 0x5652a8f40289 in ExecuteScript(JSContext*, JS::Handle<JSObject*>, JS::Handle<JSScript*>, JS::MutableHandle<JS::Value>) js/src/vm/CompilationAndEvaluation.cpp:493:10
#13 0x5652a8f4055f in JS_ExecuteScript(JSContext*, JS::Handle<JSScript*>) js/src/vm/CompilationAndEvaluation.cpp:517:10
#14 0x5652a8c8b3d5 in RunFile(JSContext*, char const*, _IO_FILE*, CompileUtf8, bool, bool) js/src/shell/js.cpp:1102:10
#15 0x5652a8c8a8cc in Process(JSContext*, char const*, bool, FileKind) js/src/shell/js.cpp
#16 0x5652a8c44dd2 in ProcessArgs(JSContext*, js::cli::OptionParser*) js/src/shell/js.cpp:10743:10
#17 0x5652a8c44dd2 in Shell(JSContext*, js::cli::OptionParser*) js/src/shell/js.cpp:10967:12
#18 0x5652a8c3eba0 in main js/src/shell/js.cpp:11399:12
#19 0x7f34fd823a8f in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16
#20 0x7f34fd823b48 in __libc_start_main csu/../csu/libc-start.c:360:3
#21 0x5652a8c0b088 in _start (obj-x86_64-pc-linux-gnu/dist/bin/js+0x19df088) (BuildId: e8bfa67540a9002e1fe314d092c1b43b)
```
|
|
1,846,290 | 16,518,440 |
Created attachment 9346501
message not aligned.jpg
**[Affected versions]:**
- Firefox Nightly 117.0a1 - Build ID: 20230730210800
**[Affected Platforms]:**
- Windows 10 x64
- Linux Ubuntu 20.04 x64
- macOS 12.6.1
**[Prerequisites]:**
- Set `browser.urlbar.pocket.featureGate` to βtrueβ.
- Set `browser.urlbar.bestMatch.enabled` to βtrueβ.
- Set `browser.search.region` to βUSβ.
**[Steps to reproduce]:**
1. Open the browser with the profile from the prerequisites.
2. Type βbreakfastβ in the Address Bar.
3. Click the βFeedbackβ button from the Pocket suggestion.
4. Click the βShow less frequentlyβ option.
4. Observe the message that appears under the Pocket suggestion.
**[Expected result]:**
- The Firefox logo and text of the message are correctly aligned with the rest of the favicons and results.
**[Actual result]:**
- The Firefox logo and text of the message are not aligned with the rest of the favicons and results.
**[Notes]:**
- The issue is not reproducible on Firefox Beta 116 (Build ID: 20230724170120)
- Attached is a screenshot of the issue.
|
|
1,846,291 | 16,518,441 |
Created attachment 9346502
pocket favicons difference.jpg
**[Affected versions]:**
- Firefox Nightly 117.0a1 - Build ID: 20230730210800
- Firefox RC 116 - Build ID: 20230724170120
**[Affected Platforms]:**
- Windows 10 x64
- Linux Ubuntu 20.04 x64
- macOS 12.6.1
**[Prerequisites]:**
- Set `browser.urlbar.pocket.featureGate` to βtrueβ.
- Set `browser.urlbar.bestMatch.enabled` to βtrueβ.
- Set `browser.search.region` to βUSβ.
**[Steps to reproduce]:**
1. Open the browser with the profile from the prerequisites.
2. Type βbreakfastβ in the Address Bar.
3. Click the βCat Coraβ Pocket suggestion.
4. Open a new tab and type βbreakfastβ in the Address Bar.
4. Observe the favicons of the results displayed in the Firefox Suggest section.
**[Expected result]:**
- Both Pocket favicons are the same size.
**[Actual result]:**
- The Pocket favicon of the βSwitch to tabβ result is bigger than the Pocket suggestionβs favicon.
**[Notes]:**
- Attached is a screenshot of the issue.
|
|
1,846,515 | 16,519,662 |
### Steps to reproduce
1. Open Firefox application.
2. Enter the URL of the large website that takes time to load (e.g: https://www.commoninja.com/widgets/charts or https://statscharts.com/).
3. Wait for the website to load partially but not completely, and tap on the Print button from 3dot menu (to trigger the error snack bar).
### Expected behavior
The error snack bar "Unable to print this pageβ is shown on the screen, with the text displayed in red to indicate its severity or importance. Adjacent to the error message, positioned on the same row towards the right side of the screen, there is a βDismissβ button.
### Actual behavior
Figma: The error snack bar "Unable to print this pageβ is shown on the screen, with the text displayed in red to indicate its severity or importance. Adjacent to the error message, positioned on the same row towards the right side of the screen, there is a βDismissβ button.
Fenix: The error snack bar "Unable to printβ is shown on the screen, with the text displayed in red to indicate its severity or importance. Adjacent to the error message, positioned on the same row towards the right side of the screen, there is a βDismissβ button.
### Device information
* Firefox version: 118.0a1 from 01.08.2023
* Android device model: Google Pixel 7 Pro, Motorola Moto G9 plus
* Android OS version: Android 14, Android 11
### Any additional information?
|
|
1,837,366 | 16,445,384 |
Steps to reproduce:
build on git commit:
01bb51fa3c6524293d75cb37b0fbdd750f9f89f7
mozconfig file:
ac_add_options --enable-project=js
ac_add_options --enable-build-backends=CompileDB,RecursiveMake
ac_add_options --enable-debug
ac_add_options --disable-optimize
run args:
gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js test.js
testcase:
```
function foo() {
try {
foo();
/a/.exec();
} catch (e) {
}
}
foo();
```
Actual results:
```
Assertion failure: isThrowingOutOfMemory(), at gecko-dev/js/src/vm/JSContext.cpp:736
#01: JSContext::recoverFromOutOfMemory()[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x22ffc69]
#02: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x31864e3]
#03: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x318606f]
#04: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x3193efe]
#05: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x319a1dd]
#06: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x319b2d8]
#07: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x319ca53]
#08: ???[gecko-dev/obj-x86_64-pc-linux-gnu/dist/bin/js +0x2ee9490]
#09: ??? (???:???)
Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
```
According to lldb's call stack, this is inside the `GetOrCreateRegExpStub` function, so I think it might be a problem about jit.
Expected results:
Should not crash. An oom exception should be captured by the try-catch.
|
|
1,833,161 | 16,412,259 |
**[Affected versions]:**
- Firefox Nightly 115.0a1 (Build ID: 20230515094256)
- Firefox Beta 114.0b4 (Build ID: 20230514175823)
**[Affected Platforms]:**
- Windows 10 x64
- Linux Ubuntu 20.04 x64
- macOS 12.4
**[Prerequisites]:**
- Have a VPN client connected to a US server ( make sure the `browser.search.region` pref is set accordingly).
- Have the Firefox Nightly 115.0a1 or Beta 114.0b4 installed.
- Set the following prefs:
`browser.urlbar.weather.featureGate` = `true`
(Windows only) `browser.urlbar.weather.ignoreVPN` = `true`
**[Steps to reproduce]:**
1. Open the browser from the prerequisites.
2. Type the βweatherβ string in the Address Bar.
3. Press the βTabβ key twice in order to focus the βFeedbackβ menu button.
4. Press the βEnterβ key.
5. Press the βDownβ arrow key 3 times in order to focus the βDonβt show thisβ option.
6. Press the βEnterβ key in order to open the sub-menu.
7. Press the βEnterβ key again in order to remove the weather result.
8. Press the βTabβ key several times.
9. Observe the behavior.
**[Expected result]:**
- The focus shifts over the results (and menu buttons if applicable) of the Address Bar drop down.
**[Actual result]:**
- Nothing happens, the focus remains on the "Thank you" message.
**[Notes]:**
- The focus correctly shifts to the results if using the βUpβ and βDown" arrow keys instead of the βTabβ one.
- Here is the [screen recording](https://drive.google.com/file/d/1an10snb-MXafnf3xr5cDffE4tqr6g9XY/view?usp=sharing) of the issue.
|
|
1,843,278 | 16,494,556 |
Affected versions:
- Nightly (117.0a1/20230712214907)
- Beta (116.0b4/20230711183052)
Description:
When a user grants/revokes access to an add-on to restricted sites via the controls on the add-on detail page, a pref is created in about:config `extensions.quarantineIgnoredByUser.EXTENSION_ID` which is set to either true or false.
If the add-on is uninstalled, the pref will remain listed in about:config.
Steps to reproduce:
1. Install a non-recommended add-on, for example https://addons.mozilla.org/en-US/firefox/addon/honey/
2. Access the add-on detail page in about:addons and from the βRun on sites with restrictionsβ section allow the add-on access to restricted sites by selecting βAllowβ
3. Access about:config and check to see that the pref - βextensions.quarantineIgnoredByUser.jid1-93CWPmRbVPjRQA@jetpackβ β has been created
4. Uninstall the add-on
5. Return to about:config and check for the presence of the above pref
6. Notice the pref has not been cleared upon removing the add-on
Actual:
The `extensions.quarantineIgnoredByUser.EXTENSION_ID` pref persists in about:config after uninstalling the add-on.
Expected:
Clear the `extensions.quarantineIgnoredByUser.EXTENSION_ID` pref upon add-on removal.
|
|
1,895,573 | 16,925,431 |
### Steps to reproduce
precondition: a lower end device or a debug mode to slow down animations
1. open a website
2. click the address bar
### Expected behavior
The navbar gets replaced by the search bar
### Actual behavior
For a short moment, they both are visible and only then the nav bar gets hidden
### Device information
* Firefox version: 127
* Android device model: mid-range samsung
* Android OS version: android 14
### Any additional information?
|
|
1,889,374 | 16,874,252 |
**Found in**
* 126.0a1 (2024-04-02)
**Affected versions**
* 126.0a1 (2024-04-02)
**Tested platforms**
* Affected platforms: Windows 10x64, Ubuntu 22
* Unaffected platforms: macOS 12
**Preconditions**
* browser.tabs.cardPreview.enabled: true
**Steps to reproduce**
1. Open some random tabs, focus the URL bar, and press the Esc key (the focus line is visible)
2. Quickly hover over consecutive tabs and observe the URL bar.
**Expected result**
* The Tab hover is changed and the URL bar elements are not flashing between tab hover transitions.
**Actual result**
* The URL bar elements can be seen when transitioning from one tab to another.
**Regression range**
* This happens after fixing the tab preview delay with bug 1876522.
**Additional notes**
* Attached a screen recording.
|
|
1,909,832 | 17,040,962 |
Created attachment 9414800
about:support warning regarding user namespaces on flatpak
Bug 1909616 suppressed the user namespaces warning message on flatpak but there is still a warning in `about:support` which is not relevant and confusing:
> This feature is not allowed by your system. This can restrict security features of Nightly. [Learn more](https://support.mozilla.org/1/firefox/130.0a1/Linux/en-US/install-firefox-linux#w_install-firefox-from-mozilla-builds).
|
|
1,899,674 | 16,959,443 |
### Steps to reproduce
1. Install an extension with runtime permission changes or do as state [in this description](https://bugzilla.mozilla.org/show_bug.cgi?id=1896871#c0) from related ticket
2. Add a runtime permission
3. Navigate to the optional permissions screen
4. Toggle off a runtime permission
### Expected behavior
The toggle is turned off and remains across navigation changes to the screen (although this does differ from Desktop which works by toggling off and is removed if the user navigates away from the screen) or the UI icon to represent that it will destroy the row.
### Actual behavior
When a user toggles off a runtime permission it destroys the row and cannot be recovered.
### Any additional information?
If it's not clear to the user that some toggles when left off will disappear forever I believe this to be a UX anti-pattern so I expect the UI to actually represent that it's destroying the row with an appropriate icon.
|
|
1,900,258 | 16,962,966 |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0
Steps to reproduce:
In the Certificate Manager, in the tab Authentication Decisions, delete an entry.
Actual results:
The entry is modified to:
- No Host
- Certificate Name = Send no client certificate
- No Serial Number
These "empty" entries remain after closing and reopening the Certificate Manager and also after restarting Firefox.
Expected results:
The entry should have been deleted completely.
|
|
1,900,366 | 16,965,926 |
Created attachment 9405246
extensions.highlight.mp4
|
|
1,900,588 | 16,967,390 |
Created attachment 9405499
fxview.callout.fr.png
**[Affected versions]:**
- Firefox Release 126.0.1 - Build ID: 20240526221752
- Firefox Beta 127.0b9 - Build ID: 20240531105723
- Firefox Nightly 128.0a1 - Build ID: 20240603093418
**[Affected Platforms]:**
- Windows 10
- Ubuntu 22.04
**[Prerequisites]:**
- Have a Firefox build in french locale installed and use a new profile.
- Be enrolled in Treatment B branch of the βFeature callout: Firefox Viewβ experiment ([early day](https://experimenter.services.mozilla.com/nimbus/fx-view-discoverability-early-day-users/summary) / [existing](https://experimenter.services.mozilla.com/nimbus/fx-view-discoverability-existing-users/summary)) through forced enrollment.
- Have the βbrowser.newtabpage.activity-stream.asrouter.devtoolsEnabledβ pref set to βtrueβ.
- Unenroll from any experiment or rollout that the profile might be in using the about:studies page.
**[Steps to reproduce]:**
1. Open the browser with the profile from prerequisites.
4. Open a New Tab and navigate to the βabout:asrouterβ page.
5. Search for the βFX_VIEW_DISCOVERABILITY_EARLY_DAY_USERSβ or βFX_VIEW_DISCOVERABILITY_EXISTING_USERSβ message ID.
6. Click the βShowβ button and observe the callout.
**[Expected result]:**
- The text and punctuation are properly aligned.
**[Actual result]:**
- The question mark is displayed on a different line than the text.
**[Additional Notes]:**
- We are aware of the French language rule of non breaking space which makes the question mark to be moved on the second row.
|
|
1,904,747 | 17,000,180 |
Bug 1786494 rewritten `JS_Utf8BufferIsCompilableUnit` to use `AutoReportFrontendContext`, but the error handling remains using `cx`,
which results in not clearing errors and reporting errors when the input is not compilable unit.
https://searchfox.org/mozilla-central/rev/67956a15835fc397334668525d528d471b19b273/js/src/vm/CompilationAndEvaluation.cpp#169-172,195-196,223
```cpp
JS_PUBLIC_API bool JS_Utf8BufferIsCompilableUnit(JSContext* cx,
HandleObject obj,
const char* utf8,
size_t length) {
...
AutoReportFrontendContext fc(cx,
AutoReportFrontendContext::Warning::Suppress);
...
cx->clearPendingException();
```
|
|
1,907,380 | 17,020,897 |
Created attachment 9412312
The Navigation Bar CFR is pushed to the top of the screen by keyboard_NewUser.mp4
### Preconditions
Have an older version of Nightly installed, older than 130.0a1 from 07/10.
Make sure to have at least one tab open, and the opening screen set to "Last tab" in Settings > Homepage.
### Steps to reproduce
1. Update and open the latest Nightly 130.0a1 from 07/11.
2. Once the app is opened on the last visited page, tap the "+" button on the navigation bar.
3. Observe that the Navigation Bar CFR is displayed at the top of the screen when the keyboard is invoked.
4. Without dismissing the keyboard, attempt to dismiss the Navigation Bar CFR by tapping it's "X" close button.
5. Observe if the CFR is dismissed.
### Expected behavior
The Navigation Bar CFR should not be displayed/move its position when the keyboard is invoked.
### Actual behavior
After step 2, the Navigation Bar CFR is displayed at the top of the screen when the keyboard is invoked.
In Step 2, on certain devices with smaller screen size, the navigation bar CFR overlaps the PBM button, and when attempting to dismiss the Navigation Bar CFR by tapping it's "X" close button, the PBM button is tapped instead.
The keyboard has to be dismissed in order to close/dismiss the navigation bar CFR.
On devices with bigger screen size, the CFR can be dismissed since it does not overlap the PBM button.
### Device information
* Firefox version: Nightly 130.0a1 from 07/11
* Android device model: Samsung Galaxy S24, Samsung GalaxyZ Fold 4
* Android OS version: Android 14, Android 13
### Expected behavior
For new users, this issue can be reproduced due to 1907365. Since the Navigation bar CFR is not displayed in landscape mode, a new tab can be opened, after which Steps 2-5 can be performed/the search bar can be tapped to invoke the keyboard, then change back the orientation to portrait mode to reproduce the issue.
Fixing the issue in 1907365 will also fix the workaround for new users to experience this issue.
For upgrading users, this issue should only be encountered once, after updating the browser to the latest version.
|
|
1,907,419 | 17,021,109 |
Created attachment 9412341
image(28).png
If you hover over a topsite with browser.newtabpage.activity-stream.discoverystream.thumbsUpDown.searchTopsitesCompact set to true, there is a bit of padding work that could be done to improve it.
|
|
1,601,678 | 14,529,527 |
This bug is for crash report bp-ce0b31ac-8428-4957-8cf7-98f5a0191205.
```
Top 10 frames of crashing thread:
0 mozglue.dll mozalloc_abort memory/mozalloc/mozalloc_abort.cpp:33
1 xul.dll static void Abort xpcom/base/nsDebugImpl.cpp:442
2 xul.dll NS_DebugBreak xpcom/base/nsDebugImpl.cpp
3 xul.dll nsresult nsDebugImpl::Abort xpcom/base/nsDebugImpl.cpp:134
4 xul.dll XPTC__InvokebyIndex
5 @0x23d477763ff
6 xul.dll trunc
7 xul.dll trunc
8 xul.dll trunc
9 xul.dll static bool XPCWrappedNative::CallMethod js/xpconnect/src/XPCWrappedNative.cpp:1149
```
This appears to be an AsyncShutdownTimeout crash. Here's one of the AsyncShutdown status payloads:
```
{"phase":"AddonManager: Waiting to start provider shutdown.","conditions":[{"name":"EnvironmentAddonBuilder","state":"(none)","filename":"resource://gre/modules/TelemetryEnvironment.jsm","lineNumber":608,"stack":["resource://gre/modules/TelemetryEnvironment.jsm:init:608","resource://gre/modules/TelemetryEnvironment.jsm:EnvironmentCache:1049","resource://gre/modules/TelemetryEnvironment.jsm:getGlobal:99","resource://gre/modules/TelemetryEnvironment.jsm:get currentEnvironment:106","resource://gre/modules/TelemetryStartup.jsm:annotateEnvironment:47","resource://gre/modules/TelemetryStartup.jsm:TelemetryStartup.prototype.observe:34"]}]}
```
|
|
1,669,097 | 15,066,734 |
Created attachment 9179468
emoji-pdf-bug-actual.pdf
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:81.0) Gecko/20100101 Firefox/81.0
Steps to reproduce:
1. Go to https://pdf.ninja/interactiveform_enabled.pdf
2. Fill in an emoji in a text field. In my case π
Actual results:
The emoji is β¦
* correctly shown (in preview)
* shown as an = (in print preview)
* shown as an = (in printed PDF)
See emoji-pdf-bug-actual.pdf
Expected results:
The emoji should be β¦
* correctly shown (in preview)
* correctly shown (in print preview)
* correctly shown (in printed PDF)
See emoji-pdf-bug-expected.png
|
|
1,662,845 | 15,019,270 |
The sheet count is no longer being hidden when the dialog is initializing. Adding a `rendering` attribute to the `body` should fix this.
|
|
1,660,734 | 15,001,400 |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15
Steps to reproduce:
In nss 3.56 in coreconf/arch.mk there is a typo in a warning message. The message reads:
$(warning Unable to find gcc 4.8 or greater, disabling -Werror)
The message should read:
$(warning Unable to find gcc 4.8 or greater, disabling -mavx2)
|
|
1,660,735 | 15,001,402 |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15
Steps to reproduce:
In nss 3.56 in coreconf/arch.mk there is a typo in a comment. The comment reads:
# CPU_ARCH (from unmame -m or -p, ONLY on WINNT)
The comment should read:
# CPU_ARCH (from uname -m or -p, ONLY on WINNT)
(I'm not sure why it says "ONLY on WINNT" since the build system does use CPU_ARCH on other operating systems too.)
|
|
1,661,378 | 15,007,841 |
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
Steps to reproduce:
Building with clang-11 results in the following failure
Clang finds this error
pkix_logger.c:316:32: error: cast to smaller integer type 'PKIX_ERRORCLASS' from 'void *' [-Werror,-Wvoid-pointer-to-enum-cast]
logger->logComponent = (PKIX_ERRORCLASS)NULL;
^~~~~~~~~~~~~~~~~~~~~
pkix_logger.c:617:32: error: cast to smaller integer type 'PKIX_ERRORCLASS' from 'void *' [-Werror,-Wvoid-pointer-to-enum-cast]
logger->logComponent = (PKIX_ERRORCLASS)NULL;
^~~~~~~~~~~~~~~~~~~~~
2 errors generated.
Actual results:
resulted in error
Clang finds this error
pkix_logger.c:316:32: error: cast to smaller integer type 'PKIX_ERRORCLASS' from 'void *' [-Werror,-Wvoid-pointer-to-enum-cast]
logger->logComponent = (PKIX_ERRORCLASS)NULL;
^~~~~~~~~~~~~~~~~~~~~
pkix_logger.c:617:32: error: cast to smaller integer type 'PKIX_ERRORCLASS' from 'void *' [-Werror,-Wvoid-pointer-to-enum-cast]
logger->logComponent = (PKIX_ERRORCLASS)NULL;
^~~~~~~~~~~~~~~~~~~~~
2 errors generated.
Expected results:
successful compilation.
|
|
1,664,728 | 15,033,203 |
Crash report: https://crash-stats.mozilla.org/report/index/5154be17-0869-42bb-b632-47d730200912
Top 10 frames of crashing thread:
```
0 @0x18
1 xul.dll mozCreateComponent<nsITelemetry> toolkit/components/telemetry/core/Telemetry.cpp:2252
2 xul.dll mozilla::xpcom::CreateInstanceImpl xpcom/components/StaticComponents.cpp:12489
3 xul.dll mozilla::xpcom::StaticModule::CreateInstance const xpcom/components/StaticComponents.cpp:13379
4 xul.dll nsComponentManagerImpl::GetServiceLocked xpcom/components/nsComponentManager.cpp:1372
5 xul.dll nsComponentManagerImpl::GetServiceByContractID xpcom/components/nsComponentManager.cpp:1559
6 xul.dll nsGetServiceByContractID::operator const xpcom/components/nsComponentManagerUtils.cpp:243
7 xul.dll nsCOMPtr_base::assign_from_gs_contractid xpcom/base/nsCOMPtr.cpp:82
8 xul.dll mozilla::Telemetry::Init toolkit/components/telemetry/core/Telemetry.cpp:2108
9 xul.dll NS_InitXPCOM xpcom/build/XPCOMInit.cpp:478
```
|
|
1,665,106 | 15,037,112 |
The following testcase crashes on mozilla-central revision 20200915-8c8f6d93ade3 (debug build, run with --fuzzing-safe --ion-offthread-compile=off test.js):
See attachment.
Backtrace:
received signal SIGSEGV, Segmentation fault.
#0 AppendName (namePayload=..., name=..., bytes=<optimized out>) at js/src/wasm/WasmCode.cpp:1015
#1 0x0000555557cc58dd in js::wasm::Metadata::getFuncName (this=0x7ffff4145680, ctx=js::wasm::Metadata::BeforeLocation, funcIndex=1, name=0x7fffffff9b30) at js/src/wasm/WasmCode.cpp:1038
#2 0x0000555557d3145e in js::wasm::Metadata::getFuncNameBeforeLocation (this=0x7ffff6abc540 <_IO_2_1_stderr_>, funcIndex=0, name=0x7fffffff9b30) at js/src/wasm/WasmCode.h:414
#3 js::wasm::Instance::getFuncDisplayAtom (this=<optimized out>, cx=cx@entry=0x7ffff5747000, funcIndex=0) at js/src/wasm/WasmInstance.cpp:2264
#4 0x0000555557d31170 in js::wasm::WasmFrameIter::functionDisplayAtom (this=0x7fffffff9d40) at js/src/wasm/WasmFrameIter.cpp:227
#5 0x00005555570cbd88 in js::SavedStacks::insertFrames(JSContext*, JS::MutableHandle<js::SavedFrame*>, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) (this=this@entry=0x7ffff41775f8, cx=cx@entry=0x7ffff5747000, frame=frame@entry=..., capture=capture@entry=<unknown type>) at js/src/vm/SavedStacks.cpp:1482
#6 0x00005555570cb705 in js::SavedStacks::saveCurrentStack(JSContext*, JS::MutableHandle<js::SavedFrame*>, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) (this=0x7ffff41775f8, cx=0x7ffff5747000, frame=..., capture=<unknown type>) at js/src/vm/SavedStacks.cpp:1307
#7 0x0000555556dfdbb1 in JS::CaptureCurrentStack(JSContext*, JS::MutableHandle<JSObject*>, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) (cx=cx@entry=0x7ffff5747000, stackp=stackp@entry=..., capture=capture@entry=<unknown type>) at js/src/jsapi.cpp:5797
#8 0x0000555556e0322e in js::CaptureStack (cx=0x7ffff5747000, stack=...) at js/src/jsexn.cpp:221
#9 js::ErrorToException (cx=cx@entry=0x7ffff5747000, reportp=reportp@entry=0x7fffffffa720, callback=<optimized out>, callback@entry=0x555556eedfa0 <js::GetErrorMessage(void*, unsigned int)>, userRef=userRef@entry=0x0) at js/src/jsexn.cpp:331
#10 0x0000555556ef3f1f in ReportError (cx=0x7ffff5747000, reportp=0x7fffffffa720, callback=0x555556eedfa0 <js::GetErrorMessage(void*, unsigned int)>, userRef=0x0) at js/src/vm/ErrorReporting.cpp:164
#11 js::ReportErrorNumberVA (cx=cx@entry=0x7ffff5747000, isWarning=isWarning@entry=js::IsWarning::No, callback=callback@entry=0x555556eedfa0 <js::GetErrorMessage(void*, unsigned int)>, userRef=userRef@entry=0x0, errorNumber=errorNumber@entry=1, argumentsType=<optimized out>, argumentsType@entry=js::ArgumentsAreUTF8, ap=0x7fffffffa880) at js/src/vm/ErrorReporting.cpp:477
#12 0x0000555556dd596f in JS_ReportErrorNumberUTF8VA (cx=<optimized out>, errorCallback=<optimized out>, userRef=<optimized out>, errorNumber=<optimized out>, ap=0x7fffffffa880) at js/src/jsapi.cpp:4752
#13 JS_ReportErrorNumberUTF8 (cx=cx@entry=0x7ffff5747000, errorCallback=0x555556eedfa0 <js::GetErrorMessage(void*, unsigned int)>, userRef=userRef@entry=0x0, errorNumber=errorNumber@entry=1) at js/src/jsapi.cpp:4742
#14 0x0000555556fd0b45 in js::ReportIsNotDefined (cx=0x7ffff5747000, id=...) at js/src/vm/JSContext.cpp:518
#15 js::ReportIsNotDefined (cx=cx@entry=0x7ffff5747000, name=...) at js/src/vm/JSContext.cpp:525
#16 0x0000555556cd2974 in js::FetchName<(js::GetNameMode)0> (cx=cx@entry=0x7ffff5747000, receiver=receiver@entry=..., holder=..., holder@entry=..., name=..., name@entry=..., prop=..., prop@entry=..., vp=...) at js/src/vm/Interpreter-inl.h:145
#17 0x0000555556d04772 in js::GetEnvironmentName<(js::GetNameMode)0> (cx=cx@entry=0x7ffff5747000, envChain=..., envChain@entry=..., name=name@entry=..., vp=..., vp@entry=...) at js/src/vm/Interpreter-inl.h:220
#18 0x0000555556cde96d in GetNameOperation (cx=0x7ffff5747000, fp=0x7ffff5773108, pc=0x7ffff44e2176 "\273\002", vp=...) at js/src/vm/Interpreter.cpp:247
#19 Interpret (cx=cx@entry=0x7ffff5747000, state=...) at js/src/vm/Interpreter.cpp:3475
#20 0x0000555556cd43f5 in js::RunScript (cx=0x7ffff5747000, state=...) at js/src/vm/Interpreter.cpp:469
#21 0x0000555556ce8293 in js::InternalCallOrConstruct (cx=cx@entry=0x7ffff5747000, args=..., construct=construct@entry=js::NO_CONSTRUCT, reason=<optimized out>, reason@entry=js::CallReason::Call) at js/src/vm/Interpreter.cpp:637
#22 0x0000555556ce9aa2 in InternalCall (cx=0x7ffff5747000, args=..., reason=reason@entry=js::CallReason::Call) at js/src/vm/Interpreter.cpp:665
#23 0x0000555556ce9ce0 in js::Call (cx=0x7ffff6abc540 <_IO_2_1_stderr_>, fval=fval@entry=..., thisv=thisv@entry=..., args=..., rval=..., reason=reason@entry=js::CallReason::Call) at js/src/vm/Interpreter.cpp:682
#24 0x0000555557d44227 in js::wasm::Instance::callImport (this=<optimized out>, this@entry=0x7ffff4141a60, cx=0x7ffff6abc540 <_IO_2_1_stderr_>, funcImportIndex=funcImportIndex@entry=0, argc=argc@entry=0, argv=0x7ffff57863e0, argv@entry=0x7fffffffb400, rval=rval@entry=...) at js/src/wasm/WasmInstance.cpp:466
#25 0x0000555557d45a65 in js::wasm::Instance::callImport_void (instance=0x7ffff6abc540 <_IO_2_1_stderr_>, funcImportIndex=0, argc=1481553752, argv=0x7ffff6abd770 <_IO_stdfile_2_lock>) at js/src/wasm/WasmInstance.cpp:606
#26 0x000007115c36914c in ?? ()
#27 0x0000000000000000 in ?? ()
rax 0x555555937cf6 93824996310262
rbx 0x7ffff4145680 140737288361600
rcx 0x5555584eb758 93825042134872
rdx 0x0 0
rsi 0x7ffff6abd770 140737331844976
rdi 0x7ffff6abc540 140737331840320
rbp 0x7fffffff9a90 140737488329360
rsp 0x7fffffff9a90 140737488329360
r8 0x7ffff6abd770 140737331844976
r9 0x7ffff7fe3e00 140737354022400
r10 0x58 88
r11 0x7ffff67647a0 140737328334752
r12 0x1 1
r13 0x1 1
r14 0x7fffffff9b30 140737488329520
r15 0x1 1
rip 0x555557cc5b58 <AppendName(mozilla::Vector<unsigned char, 0ul, js::SystemAllocPolicy> const&, js::wasm::Name const&, mozilla::Vector<char, 0ul, js::SystemAllocPolicy>*)+88>
=> 0x555557cc5b58 <AppendName(mozilla::Vector<unsigned char, 0ul, js::SystemAllocPolicy> const&, js::wasm::Name const&, mozilla::Vector<char, 0ul, js::SystemAllocPolicy>*)+88>: movl $0x3f7,0x0
0x555557cc5b63 <AppendName(mozilla::Vector<unsigned char, 0ul, js::SystemAllocPolicy> const&, js::wasm::Name const&, mozilla::Vector<char, 0ul, js::SystemAllocPolicy>*)+99>: callq 0x555556bed862 <abort()>
Marking s-s because this is a range assertion.
|
|
1,665,213 | 15,038,013 |
Created attachment 9175904
ff.png
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0
Steps to reproduce:
>open firefox (start tab or any other you want that no play sounds)
>open windows mixer (sndvol.exe)
>see the sound bar of firefox process
Actual results:
volume bar indicator in windows mixer stay mooving in a silent firefox
Expected results:
volume bar move only when firefox play sounds
|
|
1,665,497 | 15,039,959 |
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
Steps to reproduce:
upgraded to TB 78
Migrated my enigmail data to the new e2ee
enabled openpgp for account [email protected]
try to send an encrypted test message to [email protected]
Actual results:
I am getting a "Sending of the message failed" message box with no indication WHAT might have gone wrong. This setup had worked with the previous version of TB and Enigmail.
Expected results:
the message is encrypted and sent to the recipient, or at least more information is given what might have gone wrong.
|
|
1,689,796 | 15,240,662 |
Steps to reproduce:
1. Create new profile
2. Restart several times
3. Click Wikipedia button from Top Sites
Actual Results:
Page loading is slow after click the button.
Profiler log Nightly: https://share.firefox.dev/39t5H4y
Expected Results:
Page loading is fast after click the button.
Profiler log Firefox85: https://share.firefox.dev/3cpPFKw
|
|
1,690,728 | 15,248,628 |
**Filed by:** abutkovits [at] mozilla.com
**Parsed log:** https://treeherder.mozilla.org/logviewer?job_id=328801176&repo=autoland
**Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Srg73khVSu6a1OL5m03n2A/runs/0/artifacts/public/logs/live_backing.log
---
```
[task 2021-02-04T06:36:33.489Z] 06:36:33 INFO - TEST-START | telemetry/marionette/tests/client/test_fog_user_activity.py TestClientActivity.test_user_activity
[task 2021-02-04T06:36:33.489Z] 06:36:33 INFO - Application command: /builds/worker/workspace/build/application/firefox/firefox -no-remote -marionette -profile /builds/worker/workspace/build/tmpLsgKYL.mozrunner
[task 2021-02-04T06:36:33.859Z] 06:36:33 INFO - 1612420593858 Toolkit.Telemetry TRACE TelemetryController::observe - profile-after-change notified.
[task 2021-02-04T06:36:33.860Z] 06:36:33 INFO - 1612420593858 Toolkit.Telemetry TRACE TelemetryController::setupTelemetry
[task 2021-02-04T06:36:33.864Z] 06:36:33 INFO - 1612420593859 Toolkit.Telemetry TRACE TelemetryReportingPolicy::setup
[task 2021-02-04T06:36:33.864Z] 06:36:33 INFO - 1612420593859 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:33.864Z] 06:36:33 INFO - 1612420593860 Toolkit.Telemetry TRACE TelemetrySession::earlyInit
[task 2021-02-04T06:36:33.872Z] 06:36:33 INFO - 1612420593866 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:33.872Z] 06:36:33 INFO - 1612420593866 Toolkit.Telemetry TRACE UpdatePing::init - enabled: true
[task 2021-02-04T06:36:33.873Z] 06:36:33 INFO - 1612420593870 Toolkit.Telemetry TRACE TelemetryEnvironment::constructor
[task 2021-02-04T06:36:33.933Z] 06:36:33 INFO - 1612420593930 Toolkit.Telemetry TRACE TelemetryEnvironment::_getGFXData - Only one display adapter detected.
[task 2021-02-04T06:36:33.935Z] 06:36:33 INFO - 1612420593932 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateSearchEngine - ignoring early call
[task 2021-02-04T06:36:33.935Z] 06:36:33 INFO - 1612420593932 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateAddons
[task 2021-02-04T06:36:33.942Z] 06:36:33 INFO - 1612420593938 Toolkit.Telemetry TRACE TelemetryEnvironment::registerChangeListener for CrashAnnotator
[task 2021-02-04T06:36:33.950Z] 06:36:33 INFO - 1612420593948 Marionette TRACE Marionette enabled
[task 2021-02-04T06:36:34.033Z] 06:36:34 INFO - 1612420594027 Marionette TRACE Received observer notification toplevel-window-ready
[task 2021-02-04T06:36:34.048Z] 06:36:34 INFO - 1612420594041 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateAddons: addons differ
[task 2021-02-04T06:36:34.431Z] 06:36:34 INFO - 1612420594430 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: compositor:created, aData: null
[task 2021-02-04T06:36:34.487Z] 06:36:34 INFO - 1612420594482 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:34.487Z] 06:36:34 INFO - 1612420594483 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:34.571Z] 06:36:34 INFO - 1612420594569 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:34.572Z] 06:36:34 INFO - 1612420594570 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:35.537Z] 06:36:35 INFO - 1612420595533 Toolkit.Telemetry TRACE TelemetrySession::observe - xul-window-visible notified.
[task 2021-02-04T06:36:35.739Z] 06:36:35 INFO - console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
[task 2021-02-04T06:36:35.776Z] 06:36:35 INFO - 1612420595765 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: sessionstore-windows-restored, aData: null
[task 2021-02-04T06:36:35.776Z] 06:36:35 INFO - 1612420595768 Toolkit.Telemetry TRACE TelemetrySession::observe - sessionstore-windows-restored notified.
[task 2021-02-04T06:36:35.778Z] 06:36:35 INFO - 1612420595768 Toolkit.Telemetry TRACE TelemetrySession::gatherStartup
[task 2021-02-04T06:36:35.779Z] 06:36:35 INFO - 1612420595768 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:35.779Z] 06:36:35 INFO - 1612420595768 Toolkit.Telemetry TRACE TelemetryReportingPolicy::_shouldNotify - User already notified or bypassing the policy.
[task 2021-02-04T06:36:35.961Z] 06:36:35 INFO - 1612420595957 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: settings-update-complete
[task 2021-02-04T06:36:36.201Z] 06:36:36 INFO - 1612420596191 Toolkit.Telemetry TRACE TelemetryEnvironment::_startWatchingPrefs - [object Map]
[task 2021-02-04T06:36:36.201Z] 06:36:36 INFO - 1612420596193 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:36.202Z] 06:36:36 INFO - 1612420596196 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.databaseSchema
[task 2021-02-04T06:36:36.224Z] 06:36:36 INFO - 1612420596222 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:36.268Z] 06:36:36 INFO - 1612420596266 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:36.291Z] 06:36:36 INFO - 1612420596285 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:36.307Z] 06:36:36 INFO - 1612420596303 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: init-complete
[task 2021-02-04T06:36:36.308Z] 06:36:36 INFO - 1612420596303 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateSearchEngine - isInitialized: true
[task 2021-02-04T06:36:36.309Z] 06:36:36 INFO - 1612420596305 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.urlbar.placeholderName
[task 2021-02-04T06:36:36.310Z] 06:36:36 INFO - 1612420596307 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.storageVersion
[task 2021-02-04T06:36:36.317Z] 06:36:36 INFO - 1612420596312 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.pinned
[task 2021-02-04T06:36:36.317Z] 06:36:36 INFO - 1612420596313 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned
[task 2021-02-04T06:36:36.333Z] 06:36:36 INFO - 1612420596329 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: distribution-customization-complete, aData: null
[task 2021-02-04T06:36:36.333Z] 06:36:36 INFO - 1612420596329 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.bookmarks.restore_default_bookmarks
[task 2021-02-04T06:36:36.352Z] 06:36:36 INFO - 1612420596342 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: network.trr.blocklist_cleanup_done
[task 2021-02-04T06:36:36.353Z] 06:36:36 INFO - 1612420596342 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.region-update-timer
[task 2021-02-04T06:36:36.359Z] 06:36:36 INFO - 1612420596356 Toolkit.Telemetry TRACE TelemetryEnvironment::_onEnvironmentChange for system-info
[task 2021-02-04T06:36:36.361Z] 06:36:36 INFO - 1612420596358 Toolkit.Telemetry DEBUG TelemetryEnvironment::_onEnvironmentChange - calling CrashAnnotator
[task 2021-02-04T06:36:36.361Z] 06:36:36 INFO - 1612420596359 Toolkit.Telemetry TRACE ClientID::_doLoadClientIDs
[task 2021-02-04T06:36:36.365Z] 06:36:36 INFO - 1612420596361 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: toolkit.telemetry.cachedClientID
[task 2021-02-04T06:36:36.365Z] 06:36:36 INFO - 1612420596362 Toolkit.Telemetry TRACE ClientID::_saveClientIDs
[task 2021-02-04T06:36:36.368Z] 06:36:36 INFO - 1612420596367 Toolkit.Telemetry TRACE ClientID::_doLoadClientIDs: New client IDs loaded and persisted.
[task 2021-02-04T06:36:36.370Z] 06:36:36 INFO - 1612420596367 Toolkit.Telemetry TRACE TelemetrySend::setup
[task 2021-02-04T06:36:36.370Z] 06:36:36 INFO - 1612420596368 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:36.390Z] 06:36:36 INFO - 1612420596377 Toolkit.Telemetry TRACE TelemetryStorage::_scanPendingPings
[task 2021-02-04T06:36:36.390Z] 06:36:36 INFO - 1612420596377 Toolkit.Telemetry TRACE TelemetryStorage::_migrateAppDataPings
[task 2021-02-04T06:36:36.390Z] 06:36:36 INFO - 1612420596377 Toolkit.Telemetry TRACE TelemetryStorage::_iterateAppDataPings
[task 2021-02-04T06:36:36.446Z] 06:36:36 INFO - 1612420596444 Toolkit.Telemetry INFO TelemetrySend::_checkPendingPings - pending ping count: 0
[task 2021-02-04T06:36:36.447Z] 06:36:36 INFO - 1612420596444 Toolkit.Telemetry TRACE TelemetrySend::_checkPendingPings - no pending pings
[task 2021-02-04T06:36:36.448Z] 06:36:36 INFO - 1612420596444 Toolkit.Telemetry TRACE TelemetryStorage::_enforcePendingPingsQuota
[task 2021-02-04T06:36:36.448Z] 06:36:36 INFO - 1612420596444 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::triggerSendingPings - active send task: false, immediately: true
[task 2021-02-04T06:36:36.449Z] 06:36:36 INFO - 1612420596444 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask iteration
[task 2021-02-04T06:36:36.450Z] 06:36:36 INFO - 1612420596445 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - pending: 0, current: 0
[task 2021-02-04T06:36:36.451Z] 06:36:36 INFO - 1612420596445 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - can send - pending: 0, current: 0
[task 2021-02-04T06:36:36.451Z] 06:36:36 INFO - 1612420596445 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - no pending pings, bailing out
[task 2021-02-04T06:36:36.452Z] 06:36:36 INFO - 1612420596445 Toolkit.Telemetry TRACE TelemetrySession::delayedInit
[task 2021-02-04T06:36:36.452Z] 06:36:36 INFO - 1612420596445 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:36.455Z] 06:36:36 INFO - 1612420596453 Toolkit.Telemetry INFO TelemetryStorage::_loadSessionData - can not load session data file: {"operation":"open","path":"/builds/worker/workspace/build/tmpLsgKYL.mozrunner/datareporting/session-state.json","unixErrno":2}
[task 2021-02-04T06:36:36.456Z] 06:36:36 INFO - 1612420596453 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:36.553Z] 06:36:36 INFO - 1612420596547 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:36.554Z] 06:36:36 INFO - 1612420596549 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:36.554Z] 06:36:36 INFO - 1612420596549 Toolkit.Telemetry TRACE TelemetryStorage::loadPingfile - unreadable ping /builds/worker/workspace/build/tmpLsgKYL.mozrunner/datareporting/aborted-session-ping: {"operation":"open","path":"/builds/worker/workspace/build/tmpLsgKYL.mozrunner/datareporting/aborted-session-ping","unixErrno":2}
[task 2021-02-04T06:36:36.555Z] 06:36:36 INFO - 1612420596549 Toolkit.Telemetry TRACE TelemetryStorage::loadAbortedSessionPing - no such file
[task 2021-02-04T06:36:36.556Z] 06:36:36 INFO - 1612420596549 Toolkit.Telemetry TRACE TelemetryController::checkAbortedSessionPing - found aborted-session ping: false
[task 2021-02-04T06:36:36.557Z] 06:36:36 INFO - 1612420596550 Toolkit.Telemetry TRACE TelemetrySession::_saveAbortedSessionPing
[task 2021-02-04T06:36:36.557Z] 06:36:36 INFO - 1612420596550 Toolkit.Telemetry TRACE TelemetrySession::getSessionPayload - reason: aborted-session, clearSubsession: false
[task 2021-02-04T06:36:36.558Z] 06:36:36 INFO - 1612420596550 Toolkit.Telemetry TRACE TelemetrySession::assemblePayloadWithMeasurements - reason: aborted-session, submitting subsession data: true
[task 2021-02-04T06:36:36.575Z] 06:36:36 INFO - 1612420596564 Toolkit.Telemetry TRACE TelemetryController::saveAbortedSessionPing
[task 2021-02-04T06:36:36.578Z] 06:36:36 INFO - 1612420596565 Toolkit.Telemetry TRACE TelemetryController::assemblePing - Type main, aOptions {"addClientId":true,"addEnvironment":true}
[task 2021-02-04T06:36:36.580Z] 06:36:36 INFO - 1612420596569 Toolkit.Telemetry TRACE TelemetryStorage::saveAbortedSessionPing - ping path: /builds/worker/workspace/build/tmpLsgKYL.mozrunner/datareporting/aborted-session-ping
[task 2021-02-04T06:36:36.589Z] 06:36:36 INFO - 1612420596583 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:36.592Z] 06:36:36 INFO - 1612420596583 Toolkit.Telemetry TRACE TelemetryStorage::savePingToFile - path: /builds/worker/workspace/build/tmpLsgKYL.mozrunner/datareporting/aborted-session-ping
[task 2021-02-04T06:36:36.594Z] 06:36:36 INFO - 1612420596585 Toolkit.Telemetry TRACE TelemetryEnvironment::registerChangeListener for TelemetrySession::onEnvironmentChange
[task 2021-02-04T06:36:36.610Z] 06:36:36 INFO - 1612420596599 Toolkit.Telemetry TRACE TelemetryScheduler::init
[task 2021-02-04T06:36:36.613Z] 06:36:36 INFO - 1612420596600 Toolkit.Telemetry TRACE TelemetryScheduler::_rescheduleTimeout - isUserIdle: false
[task 2021-02-04T06:36:36.615Z] 06:36:36 INFO - 1612420596600 Toolkit.Telemetry TRACE TelemetryScheduler::_rescheduleTimeout - scheduling next tick for Thu Feb 04 2021 06:41:36 GMT+0000 (Coordinated Universal Time)
[task 2021-02-04T06:36:36.626Z] 06:36:36 INFO - 1612420596618 Toolkit.Telemetry TRACE TelemetryController::scheduleNewProfilePing
[task 2021-02-04T06:36:36.629Z] 06:36:36 INFO - 1612420596618 Toolkit.Telemetry TRACE TelemetryStorage::cleanArchiveTask
[task 2021-02-04T06:36:36.632Z] 06:36:36 INFO - 1612420596618 Toolkit.Telemetry TRACE TelemetryStorage::removeFHRDatabase
[task 2021-02-04T06:36:36.635Z] 06:36:36 INFO - 1612420596619 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.telemetry_modules_ping
[task 2021-02-04T06:36:36.647Z] 06:36:36 INFO - 1612420596644 Toolkit.Telemetry TRACE TelemetryEventPing::::Starting up.
[task 2021-02-04T06:36:36.650Z] 06:36:36 INFO - 1612420596645 Toolkit.Telemetry TRACE TelemetryPrioPing::Extended collection disabled. Prio ping disabled.
[task 2021-02-04T06:36:36.672Z] 06:36:36 INFO - 1612420596668 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.migrationVersion
[task 2021-02-04T06:36:36.682Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.cursorToolOnLoad
[task 2021-02-04T06:36:36.682Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.defaultZoomValue
[task 2021-02-04T06:36:36.683Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disablePageLabels
[task 2021-02-04T06:36:36.683Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enablePermissions
[task 2021-02-04T06:36:36.683Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enablePrintAutoRotate
[task 2021-02-04T06:36:36.684Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enableScripting
[task 2021-02-04T06:36:36.684Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enableWebGL
[task 2021-02-04T06:36:36.684Z] 06:36:36 INFO - 1612420596669 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.externalLinkTarget
[task 2021-02-04T06:36:36.688Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.historyUpdateUrl
[task 2021-02-04T06:36:36.688Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.ignoreDestinationZoom
[task 2021-02-04T06:36:36.688Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.pdfBugEnabled
[task 2021-02-04T06:36:36.689Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.renderer
[task 2021-02-04T06:36:36.689Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.sidebarViewOnLoad
[task 2021-02-04T06:36:36.689Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.scrollModeOnLoad
[task 2021-02-04T06:36:36.690Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.spreadModeOnLoad
[task 2021-02-04T06:36:36.690Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.textLayerMode
[task 2021-02-04T06:36:36.690Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.useOnlyCssZoom
[task 2021-02-04T06:36:36.690Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.viewerCssTheme
[task 2021-02-04T06:36:36.692Z] 06:36:36 INFO - 1612420596670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.viewOnLoad
[task 2021-02-04T06:36:36.692Z] 06:36:36 INFO - 1612420596671 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableAutoFetch
[task 2021-02-04T06:36:36.692Z] 06:36:36 INFO - 1612420596671 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableFontFace
[task 2021-02-04T06:36:36.693Z] 06:36:36 INFO - 1612420596671 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableRange
[task 2021-02-04T06:36:36.693Z] 06:36:36 INFO - 1612420596671 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableStream
[task 2021-02-04T06:36:36.707Z] 06:36:36 INFO - 1612420596672 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.xml
[task 2021-02-04T06:36:36.707Z] 06:36:36 INFO - 1612420596673 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.svg
[task 2021-02-04T06:36:36.708Z] 06:36:36 INFO - 1612420596674 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.webp
[task 2021-02-04T06:36:36.710Z] 06:36:36 INFO - 1612420596675 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.avif
[task 2021-02-04T06:36:36.712Z] 06:36:36 INFO - 1612420596692 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.uiCustomization.state
[task 2021-02-04T06:36:36.714Z] 06:36:36 INFO - 1612420596694 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.bookmarks.addedImportButton
[task 2021-02-04T06:36:36.764Z] 06:36:36 INFO - 1612420596752 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: gfx.blacklist.layers.opengl
[task 2021-02-04T06:36:36.766Z] 06:36:36 INFO - 1612420596753 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: gfx.blacklist.layers.opengl.failureid
[task 2021-02-04T06:36:36.783Z] 06:36:36 INFO - 1612420596773 Marionette TRACE Received observer notification marionette-startup-requested
[task 2021-02-04T06:36:36.783Z] 06:36:36 INFO - 1612420596773 Marionette TRACE Waiting until startup recorder finished recording startup scripts...
[task 2021-02-04T06:36:36.871Z] 06:36:36 INFO - 1612420596862 Marionette TRACE All scripts recorded.
[task 2021-02-04T06:36:36.872Z] 06:36:36 INFO - 1612420596863 Marionette INFO Listening on port 2828
[task 2021-02-04T06:36:36.872Z] 06:36:36 INFO - 1612420596864 Marionette DEBUG Marionette is listening
[task 2021-02-04T06:36:37.374Z] 06:36:37 INFO - 1612420597369 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: write-settings-to-disk-complete
[task 2021-02-04T06:36:37.913Z] 06:36:37 INFO - 1612420597910 Marionette DEBUG Accepted connection 0 from 127.0.0.1:48184
[task 2021-02-04T06:36:37.929Z] 06:36:37 INFO - 1612420597920 Marionette DEBUG Closed connection 0
[task 2021-02-04T06:36:39.021Z] 06:36:39 INFO - 1612420599019 Toolkit.Telemetry TRACE TelemetrySession::observe - user-interaction-inactive notified.
[task 2021-02-04T06:36:39.932Z] 06:36:39 INFO - 1612420599928 Marionette DEBUG Accepted connection 1 from 127.0.0.1:48190
[task 2021-02-04T06:36:39.933Z] 06:36:39 INFO - 1612420599931 Marionette DEBUG Closed connection 1
[task 2021-02-04T06:36:40.946Z] 06:36:40 INFO - 1612420600941 Marionette DEBUG Accepted connection 2 from 127.0.0.1:48196
[task 2021-02-04T06:36:40.947Z] 06:36:40 INFO - 1612420600942 Marionette DEBUG Closed connection 2
[task 2021-02-04T06:36:41.956Z] 06:36:41 INFO - 1612420601954 Marionette DEBUG Accepted connection 3 from 127.0.0.1:48200
[task 2021-02-04T06:36:41.957Z] 06:36:41 INFO - 1612420601955 Marionette DEBUG Closed connection 3
[task 2021-02-04T06:36:42.057Z] 06:36:42 INFO - 1612420602055 Marionette DEBUG Accepted connection 4 from 127.0.0.1:48216
[task 2021-02-04T06:36:42.059Z] 06:36:42 INFO - 1612420602056 Marionette DEBUG Accepted connection 5 from 127.0.0.1:48218
[task 2021-02-04T06:36:42.063Z] 06:36:42 INFO - 1612420602061 Marionette DEBUG Closed connection 4
[task 2021-02-04T06:36:42.083Z] 06:36:42 INFO - 1612420602078 Marionette DEBUG 5 -> [0,1,"WebDriver:NewSession",{"strictFileInteractability":true}]
[task 2021-02-04T06:36:42.103Z] 06:36:42 INFO - 1612420602093 Marionette DEBUG 5 <- [1,1,null,{"sessionId":"8002cff1-3391-4826-950c-b06c33962bee","capabilities":{"browserName":"firefox","browserVersion":"87.0a ... ld/tmpLsgKYL.mozrunner","moz:shutdownTimeout":60000,"moz:useNonSpecCompliantPointerOrigin":false,"moz:webdriverClick":true}}]
[task 2021-02-04T06:36:42.107Z] 06:36:42 INFO - 1612420602102 Marionette DEBUG 5 -> [0,2,"WebDriver:SetTimeouts",{"script":30000}]
[task 2021-02-04T06:36:42.108Z] 06:36:42 INFO - 1612420602102 Marionette DEBUG 5 <- [1,2,null,{"value":null}]
[task 2021-02-04T06:36:42.115Z] 06:36:42 INFO - 1612420602111 Marionette DEBUG 5 -> [0,3,"WebDriver:SetTimeouts",{"pageLoad":300000}]
[task 2021-02-04T06:36:42.116Z] 06:36:42 INFO - 1612420602112 Marionette DEBUG 5 <- [1,3,null,{"value":null}]
[task 2021-02-04T06:36:42.116Z] 06:36:42 INFO - 1612420602113 Marionette DEBUG 5 -> [0,4,"WebDriver:SetTimeouts",{"implicit":0}]
[task 2021-02-04T06:36:42.118Z] 06:36:42 INFO - 1612420602114 Marionette DEBUG 5 <- [1,4,null,{"value":null}]
[task 2021-02-04T06:36:42.118Z] 06:36:42 INFO - 1612420602114 Marionette DEBUG 5 -> [0,5,"WebDriver:GetChromeWindowHandle",{}]
[task 2021-02-04T06:36:42.118Z] 06:36:42 INFO - 1612420602115 Marionette DEBUG 5 <- [1,5,null,{"value":"6"}]
[task 2021-02-04T06:36:42.119Z] 06:36:42 INFO - 1612420602118 Marionette DEBUG 5 -> [0,6,"WebDriver:GetChromeWindowHandles",{}]
[task 2021-02-04T06:36:42.120Z] 06:36:42 INFO - 1612420602119 Marionette DEBUG 5 <- [1,6,null,["6"]]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602121 Marionette DEBUG 5 -> [0,7,"WebDriver:GetWindowHandle",{}]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602121 Marionette DEBUG 5 <- [1,7,null,{"value":"17"}]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602122 Marionette DEBUG 5 -> [0,8,"WebDriver:GetWindowHandles",{}]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602122 Marionette DEBUG 5 <- [1,8,null,["17"]]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602122 Marionette DEBUG 5 -> [0,9,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:42.124Z] 06:36:42 INFO - 1612420602122 Marionette DEBUG 5 <- [1,9,null,{"value":"content"}]
[task 2021-02-04T06:36:42.125Z] 06:36:42 INFO - 1612420602123 Marionette DEBUG 5 -> [0,10,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:42.125Z] 06:36:42 INFO - 1612420602124 Marionette DEBUG 5 <- [1,10,null,{"value":null}]
[task 2021-02-04T06:36:42.130Z] 06:36:42 INFO - 1612420602126 Marionette DEBUG 5 -> [0,11,"WebDriver:Navigate",{"url":"about:about"}]
[task 2021-02-04T06:36:42.132Z] 06:36:42 INFO - 1612420602131 Marionette TRACE [17] MarionetteCommands actor created for window id 2147483649
[task 2021-02-04T06:36:42.135Z] 06:36:42 INFO - 1612420602133 Marionette TRACE [17] MarionetteEvents actor created for window id 2147483649
[task 2021-02-04T06:36:42.136Z] 06:36:42 INFO - 1612420602134 Marionette TRACE Received event beforeunload for about:blank
[task 2021-02-04T06:36:42.144Z] 06:36:42 INFO - 1612420602140 Marionette TRACE Remoteness change detected. Set new top-level browsing context to 36
[task 2021-02-04T06:36:42.159Z] 06:36:42 INFO - 1612420602156 Marionette TRACE [36] MarionetteEvents actor created for window id 25
[task 2021-02-04T06:36:42.201Z] 06:36:42 INFO - 1612420602200 Marionette TRACE Received event beforeunload for about:blank
[task 2021-02-04T06:36:42.205Z] 06:36:42 INFO - 1612420602201 Marionette TRACE Received event pagehide for about:blank
[task 2021-02-04T06:36:42.229Z] 06:36:42 INFO - 1612420602227 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.safebrowsing.provider.mozilla.lastupdatetime
[task 2021-02-04T06:36:42.234Z] 06:36:42 INFO - 1612420602228 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.safebrowsing.provider.mozilla.nextupdatetime
[task 2021-02-04T06:36:42.253Z] 06:36:42 INFO - 1612420602241 Marionette TRACE [36] MarionetteEvents actor created for window id 26
[task 2021-02-04T06:36:42.255Z] 06:36:42 INFO - 1612420602241 Marionette TRACE Received event DOMContentLoaded for about:about
[task 2021-02-04T06:36:42.273Z] 06:36:42 INFO - 1612420602266 Marionette TRACE Received event pageshow for about:about
[task 2021-02-04T06:36:42.274Z] 06:36:42 INFO - 1612420602267 Marionette DEBUG 5 <- [1,11,null,{"value":null}]
[task 2021-02-04T06:36:42.290Z] 06:36:42 INFO - 1612420602282 Marionette DEBUG 5 -> [0,12,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:42.292Z] 06:36:42 INFO - 1612420602285 Marionette DEBUG 5 <- [1,12,null,{"value":null}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602297 Marionette DEBUG 5 -> [0,13,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602298 Marionette DEBUG 5 <- [1,13,null,{"value":"content"}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602298 Marionette DEBUG 5 -> [0,14,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602299 Marionette DEBUG 5 <- [1,14,null,{"value":null}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602301 Marionette DEBUG 5 -> [0,15,"WebDriver:ExecuteScript",{"script":"return AppConstants.MOZ_GLEAN;","newSandbox":true,"args":[],"filename":"venv/lib/python2.7/site-packages/telemetry_harness/fog_testcase.py","sandbox":"default","line":27}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602302 Marionette TRACE [6] MarionetteCommands actor created for window id 2
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602305 Marionette DEBUG 5 <- [1,15,null,{"value":true}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602306 Marionette DEBUG 5 -> [0,16,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:42.309Z] 06:36:42 INFO - 1612420602306 Marionette DEBUG 5 <- [1,16,null,{"value":null}]
[task 2021-02-04T06:36:42.311Z] 06:36:42 INFO - FOGTestCase Submitting to FOG ping server at http://localhost:38378/
[task 2021-02-04T06:36:42.312Z] 06:36:42 INFO - 1612420602311 Marionette DEBUG 5 -> [0,17,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:42.313Z] 06:36:42 INFO - 1612420602311 Marionette DEBUG 5 <- [1,17,null,{"value":"content"}]
[task 2021-02-04T06:36:42.315Z] 06:36:42 INFO - 1612420602312 Marionette DEBUG 5 -> [0,18,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:36:42.316Z] 06:36:42 INFO - 1612420602312 Marionette DEBUG 5 <- [1,18,null,{"value":null}]
[task 2021-02-04T06:36:42.318Z] 06:36:42 INFO - 1612420602314 Marionette DEBUG 5 -> [0,19,"WebDriver:ExecuteScript",{"script":"let prefInterface = Components.classes[\"@mozilla.org/preferences-service;1\"]\n ... true,"args":[],"filename":"venv/lib/python2.7/site-packages/marionette_driver/marionette.py","sandbox":"default","line":895}]
[task 2021-02-04T06:36:42.322Z] 06:36:42 INFO - 1612420602318 Marionette DEBUG 5 <- [1,19,null,{"value":false}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602319 Marionette DEBUG 5 -> [0,20,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602319 Marionette DEBUG 5 <- [1,20,null,{"value":null}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602320 Marionette DEBUG 5 -> [0,21,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602320 Marionette DEBUG 5 <- [1,21,null,{"value":"content"}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602321 Marionette DEBUG 5 -> [0,22,"WebDriver:DeleteSession",{}]
[task 2021-02-04T06:36:42.324Z] 06:36:42 INFO - 1612420602322 Marionette DEBUG 5 <- [1,22,null,{"value":null}]
[task 2021-02-04T06:36:42.400Z] 06:36:42 INFO - Application command: /builds/worker/workspace/build/application/firefox/firefox -no-remote -marionette -profile /builds/worker/workspace/build/tmp21enth.mozrunner
[task 2021-02-04T06:36:42.783Z] 06:36:42 INFO - 1612420602773 Toolkit.Telemetry TRACE TelemetryController::observe - profile-after-change notified.
[task 2021-02-04T06:36:42.783Z] 06:36:42 INFO - 1612420602773 Toolkit.Telemetry TRACE TelemetryController::setupTelemetry
[task 2021-02-04T06:36:42.783Z] 06:36:42 INFO - 1612420602775 Toolkit.Telemetry TRACE TelemetryReportingPolicy::setup
[task 2021-02-04T06:36:42.783Z] 06:36:42 INFO - 1612420602775 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:42.783Z] 06:36:42 INFO - 1612420602775 Toolkit.Telemetry TRACE TelemetrySession::earlyInit
[task 2021-02-04T06:36:42.785Z] 06:36:42 INFO - 1612420602779 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:42.786Z] 06:36:42 INFO - 1612420602779 Toolkit.Telemetry TRACE UpdatePing::init - enabled: true
[task 2021-02-04T06:36:42.788Z] 06:36:42 INFO - 1612420602784 Toolkit.Telemetry TRACE TelemetryEnvironment::constructor
[task 2021-02-04T06:36:42.829Z] 06:36:42 INFO - 1612420602828 Toolkit.Telemetry TRACE TelemetryEnvironment::_getGFXData - Only one display adapter detected.
[task 2021-02-04T06:36:42.833Z] 06:36:42 INFO - 1612420602829 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateSearchEngine - ignoring early call
[task 2021-02-04T06:36:42.834Z] 06:36:42 INFO - 1612420602830 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateAddons
[task 2021-02-04T06:36:42.836Z] 06:36:42 INFO - 1612420602835 Toolkit.Telemetry TRACE TelemetryEnvironment::registerChangeListener for CrashAnnotator
[task 2021-02-04T06:36:42.852Z] 06:36:42 INFO - 1612420602845 Marionette TRACE Marionette enabled
[task 2021-02-04T06:36:42.928Z] 06:36:42 INFO - 1612420602924 Marionette TRACE Received observer notification toplevel-window-ready
[task 2021-02-04T06:36:42.944Z] 06:36:42 INFO - 1612420602932 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateAddons: addons differ
[task 2021-02-04T06:36:43.322Z] 06:36:43 INFO - 1612420603318 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: compositor:created, aData: null
[task 2021-02-04T06:36:43.359Z] 06:36:43 INFO - 1612420603353 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:43.361Z] 06:36:43 INFO - 1612420603355 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:43.482Z] 06:36:43 INFO - 1612420603480 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:43.483Z] 06:36:43 INFO - 1612420603481 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:44.428Z] 06:36:44 INFO - 1612420604426 Toolkit.Telemetry TRACE TelemetrySession::observe - xul-window-visible notified.
[task 2021-02-04T06:36:44.631Z] 06:36:44 INFO - 1612420604629 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: sessionstore-windows-restored, aData: null
[task 2021-02-04T06:36:44.639Z] 06:36:44 INFO - 1612420604634 Toolkit.Telemetry TRACE TelemetrySession::observe - sessionstore-windows-restored notified.
[task 2021-02-04T06:36:44.639Z] 06:36:44 INFO - 1612420604634 Toolkit.Telemetry TRACE TelemetrySession::gatherStartup
[task 2021-02-04T06:36:44.639Z] 06:36:44 INFO - 1612420604635 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:44.639Z] 06:36:44 INFO - 1612420604635 Toolkit.Telemetry TRACE TelemetryReportingPolicy::_shouldNotify - User already notified or bypassing the policy.
[task 2021-02-04T06:36:44.695Z] 06:36:44 INFO - console.warn: SearchSettings: "get: No settings file exists, new profile?" (new Error("", "(unknown module)"))
[task 2021-02-04T06:36:44.859Z] 06:36:44 INFO - 1612420604858 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: settings-update-complete
[task 2021-02-04T06:36:45.083Z] 06:36:45 INFO - 1612420605079 Toolkit.Telemetry TRACE TelemetryEnvironment::_startWatchingPrefs - [object Map]
[task 2021-02-04T06:36:45.084Z] 06:36:45 INFO - 1612420605081 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:45.090Z] 06:36:45 INFO - 1612420605084 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.normandy.first_run
[task 2021-02-04T06:36:45.133Z] 06:36:45 INFO - 1612420605132 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:45.181Z] 06:36:45 INFO - 1612420605176 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:45.202Z] 06:36:45 INFO - 1612420605196 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.webextensions.uuids
[task 2021-02-04T06:36:45.203Z] 06:36:45 INFO - 1612420605197 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: extensions.databaseSchema
[task 2021-02-04T06:36:45.219Z] 06:36:45 INFO - 1612420605210 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: init-complete
[task 2021-02-04T06:36:45.220Z] 06:36:45 INFO - 1612420605210 Toolkit.Telemetry TRACE TelemetryEnvironment::_updateSearchEngine - isInitialized: true
[task 2021-02-04T06:36:45.222Z] 06:36:45 INFO - 1612420605213 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.urlbar.placeholderName
[task 2021-02-04T06:36:45.222Z] 06:36:45 INFO - 1612420605214 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.storageVersion
[task 2021-02-04T06:36:45.224Z] 06:36:45 INFO - 1612420605218 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.pinned
[task 2021-02-04T06:36:45.225Z] 06:36:45 INFO - 1612420605218 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts.havePinned
[task 2021-02-04T06:36:45.240Z] 06:36:45 INFO - 1612420605235 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: distribution-customization-complete, aData: null
[task 2021-02-04T06:36:45.241Z] 06:36:45 INFO - 1612420605235 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.bookmarks.restore_default_bookmarks
[task 2021-02-04T06:36:45.261Z] 06:36:45 INFO - 1612420605249 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: network.trr.blocklist_cleanup_done
[task 2021-02-04T06:36:45.264Z] 06:36:45 INFO - 1612420605262 Toolkit.Telemetry TRACE TelemetryEnvironment::_onEnvironmentChange for system-info
[task 2021-02-04T06:36:45.265Z] 06:36:45 INFO - 1612420605263 Toolkit.Telemetry DEBUG TelemetryEnvironment::_onEnvironmentChange - calling CrashAnnotator
[task 2021-02-04T06:36:45.266Z] 06:36:45 INFO - 1612420605263 Toolkit.Telemetry TRACE ClientID::_doLoadClientIDs
[task 2021-02-04T06:36:45.270Z] 06:36:45 INFO - 1612420605265 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: toolkit.telemetry.cachedClientID
[task 2021-02-04T06:36:45.270Z] 06:36:45 INFO - 1612420605266 Toolkit.Telemetry TRACE ClientID::_saveClientIDs
[task 2021-02-04T06:36:45.273Z] 06:36:45 INFO - 1612420605271 Toolkit.Telemetry TRACE ClientID::_doLoadClientIDs: New client IDs loaded and persisted.
[task 2021-02-04T06:36:45.273Z] 06:36:45 INFO - 1612420605271 Toolkit.Telemetry TRACE TelemetrySend::setup
[task 2021-02-04T06:36:45.273Z] 06:36:45 INFO - 1612420605271 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:36:45.291Z] 06:36:45 INFO - 1612420605280 Toolkit.Telemetry TRACE TelemetryStorage::_scanPendingPings
[task 2021-02-04T06:36:45.291Z] 06:36:45 INFO - 1612420605280 Toolkit.Telemetry TRACE TelemetryStorage::_migrateAppDataPings
[task 2021-02-04T06:36:45.292Z] 06:36:45 INFO - 1612420605280 Toolkit.Telemetry TRACE TelemetryStorage::_iterateAppDataPings
[task 2021-02-04T06:36:45.292Z] 06:36:45 INFO - 1612420605285 Toolkit.Telemetry INFO TelemetrySend::_checkPendingPings - pending ping count: 0
[task 2021-02-04T06:36:45.292Z] 06:36:45 INFO - 1612420605285 Toolkit.Telemetry TRACE TelemetrySend::_checkPendingPings - no pending pings
[task 2021-02-04T06:36:45.293Z] 06:36:45 INFO - 1612420605285 Toolkit.Telemetry TRACE TelemetryStorage::_enforcePendingPingsQuota
[task 2021-02-04T06:36:45.293Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::triggerSendingPings - active send task: false, immediately: true
[task 2021-02-04T06:36:45.294Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask iteration
[task 2021-02-04T06:36:45.294Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - pending: 0, current: 0
[task 2021-02-04T06:36:45.294Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - can send - pending: 0, current: 0
[task 2021-02-04T06:36:45.295Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySend::Scheduler::_doSendTask - no pending pings, bailing out
[task 2021-02-04T06:36:45.295Z] 06:36:45 INFO - 1612420605286 Toolkit.Telemetry TRACE TelemetrySession::delayedInit
[task 2021-02-04T06:36:45.296Z] 06:36:45 INFO - 1612420605287 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:45.296Z] 06:36:45 INFO - 1612420605287 Toolkit.Telemetry INFO TelemetryStorage::_loadSessionData - can not load session data file: {"operation":"open","path":"/builds/worker/workspace/build/tmp21enth.mozrunner/datareporting/session-state.json","unixErrno":2}
[task 2021-02-04T06:36:45.296Z] 06:36:45 INFO - 1612420605287 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:45.331Z] 06:36:45 INFO - 1612420605324 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.region-update-timer
[task 2021-02-04T06:36:45.392Z] 06:36:45 INFO - 1612420605384 Toolkit.Telemetry TRACE TelemetryStorage::loadPingfile - unreadable ping /builds/worker/workspace/build/tmp21enth.mozrunner/datareporting/aborted-session-ping: {"operation":"open","path":"/builds/worker/workspace/build/tmp21enth.mozrunner/datareporting/aborted-session-ping","unixErrno":2}
[task 2021-02-04T06:36:45.393Z] 06:36:45 INFO - 1612420605386 Toolkit.Telemetry TRACE TelemetryStorage::loadAbortedSessionPing - no such file
[task 2021-02-04T06:36:45.394Z] 06:36:45 INFO - 1612420605386 Toolkit.Telemetry TRACE TelemetryController::checkAbortedSessionPing - found aborted-session ping: false
[task 2021-02-04T06:36:45.395Z] 06:36:45 INFO - 1612420605386 Toolkit.Telemetry TRACE TelemetrySession::_saveAbortedSessionPing
[task 2021-02-04T06:36:45.396Z] 06:36:45 INFO - 1612420605386 Toolkit.Telemetry TRACE TelemetrySession::getSessionPayload - reason: aborted-session, clearSubsession: false
[task 2021-02-04T06:36:45.396Z] 06:36:45 INFO - 1612420605387 Toolkit.Telemetry TRACE TelemetrySession::assemblePayloadWithMeasurements - reason: aborted-session, submitting subsession data: true
[task 2021-02-04T06:36:45.397Z] 06:36:45 INFO - 1612420605389 Toolkit.Telemetry TRACE TelemetryController::saveAbortedSessionPing
[task 2021-02-04T06:36:45.397Z] 06:36:45 INFO - 1612420605389 Toolkit.Telemetry TRACE TelemetryController::assemblePing - Type main, aOptions {"addClientId":true,"addEnvironment":true}
[task 2021-02-04T06:36:45.398Z] 06:36:45 INFO - 1612420605390 Toolkit.Telemetry TRACE TelemetryStorage::saveAbortedSessionPing - ping path: /builds/worker/workspace/build/tmp21enth.mozrunner/datareporting/aborted-session-ping
[task 2021-02-04T06:36:45.398Z] 06:36:45 INFO - 1612420605391 Toolkit.Telemetry TRACE TelemetryStorage::_popAndPerformQueuedOperation - Performing queued operation.
[task 2021-02-04T06:36:45.398Z] 06:36:45 INFO - 1612420605391 Toolkit.Telemetry TRACE TelemetryStorage::savePingToFile - path: /builds/worker/workspace/build/tmp21enth.mozrunner/datareporting/aborted-session-ping
[task 2021-02-04T06:36:45.400Z] 06:36:45 INFO - 1612420605392 Toolkit.Telemetry TRACE TelemetryEnvironment::registerChangeListener for TelemetrySession::onEnvironmentChange
[task 2021-02-04T06:36:45.400Z] 06:36:45 INFO - 1612420605396 Toolkit.Telemetry TRACE TelemetryScheduler::init
[task 2021-02-04T06:36:45.400Z] 06:36:45 INFO - 1612420605396 Toolkit.Telemetry TRACE TelemetryScheduler::_rescheduleTimeout - isUserIdle: false
[task 2021-02-04T06:36:45.400Z] 06:36:45 INFO - 1612420605396 Toolkit.Telemetry TRACE TelemetryScheduler::_rescheduleTimeout - scheduling next tick for Thu Feb 04 2021 06:41:45 GMT+0000 (Coordinated Universal Time)
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605406 Toolkit.Telemetry TRACE TelemetryController::scheduleNewProfilePing
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605406 Toolkit.Telemetry TRACE TelemetryStorage::cleanArchiveTask
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605406 Toolkit.Telemetry TRACE TelemetryStorage::removeFHRDatabase
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605408 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.telemetry_modules_ping
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605414 Toolkit.Telemetry TRACE TelemetryEventPing::::Starting up.
[task 2021-02-04T06:36:45.417Z] 06:36:45 INFO - 1612420605414 Toolkit.Telemetry TRACE TelemetryPrioPing::Extended collection disabled. Prio ping disabled.
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605488 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.migrationVersion
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605489 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.cursorToolOnLoad
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605489 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.defaultZoomValue
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605490 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disablePageLabels
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605490 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enablePermissions
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605491 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enablePrintAutoRotate
[task 2021-02-04T06:36:45.494Z] 06:36:45 INFO - 1612420605492 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enableScripting
[task 2021-02-04T06:36:45.495Z] 06:36:45 INFO - 1612420605493 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.enableWebGL
[task 2021-02-04T06:36:45.499Z] 06:36:45 INFO - 1612420605496 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.externalLinkTarget
[task 2021-02-04T06:36:45.499Z] 06:36:45 INFO - 1612420605496 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.historyUpdateUrl
[task 2021-02-04T06:36:45.501Z] 06:36:45 INFO - 1612420605497 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.ignoreDestinationZoom
[task 2021-02-04T06:36:45.501Z] 06:36:45 INFO - 1612420605498 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.pdfBugEnabled
[task 2021-02-04T06:36:45.504Z] 06:36:45 INFO - 1612420605500 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.renderer
[task 2021-02-04T06:36:45.504Z] 06:36:45 INFO - 1612420605502 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.sidebarViewOnLoad
[task 2021-02-04T06:36:45.505Z] 06:36:45 INFO - 1612420605503 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.scrollModeOnLoad
[task 2021-02-04T06:36:45.506Z] 06:36:45 INFO - 1612420605503 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.spreadModeOnLoad
[task 2021-02-04T06:36:45.509Z] 06:36:45 INFO - 1612420605504 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.textLayerMode
[task 2021-02-04T06:36:45.509Z] 06:36:45 INFO - 1612420605506 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.useOnlyCssZoom
[task 2021-02-04T06:36:45.510Z] 06:36:45 INFO - 1612420605507 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.viewerCssTheme
[task 2021-02-04T06:36:45.510Z] 06:36:45 INFO - 1612420605507 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.viewOnLoad
[task 2021-02-04T06:36:45.510Z] 06:36:45 INFO - 1612420605508 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableAutoFetch
[task 2021-02-04T06:36:45.513Z] 06:36:45 INFO - 1612420605511 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableFontFace
[task 2021-02-04T06:36:45.513Z] 06:36:45 INFO - 1612420605511 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableRange
[task 2021-02-04T06:36:45.514Z] 06:36:45 INFO - 1612420605512 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: pdfjs.disableStream
[task 2021-02-04T06:36:45.517Z] 06:36:45 INFO - 1612420605516 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.xml
[task 2021-02-04T06:36:45.519Z] 06:36:45 INFO - 1612420605517 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.svg
[task 2021-02-04T06:36:45.522Z] 06:36:45 INFO - 1612420605519 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.webp
[task 2021-02-04T06:36:45.523Z] 06:36:45 INFO - 1612420605520 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.download.viewableInternally.typeWasRegistered.avif
[task 2021-02-04T06:36:45.558Z] 06:36:45 INFO - 1612420605554 Toolkit.Telemetry TRACE TelemetryController::observe - app-startup notified.
[task 2021-02-04T06:36:45.558Z] 06:36:45 INFO - 1612420605555 Toolkit.Telemetry CONFIG TelemetryController::enableTelemetryRecording - canRecordBase:true, canRecordExtended: false
[task 2021-02-04T06:36:45.660Z] 06:36:45 INFO - 1612420605658 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.uiCustomization.state
[task 2021-02-04T06:36:45.662Z] 06:36:45 INFO - 1612420605659 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.bookmarks.addedImportButton
[task 2021-02-04T06:36:45.680Z] 06:36:45 INFO - 1612420605677 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: gfx.blacklist.layers.opengl
[task 2021-02-04T06:36:45.680Z] 06:36:45 INFO - 1612420605677 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: gfx.blacklist.layers.opengl.failureid
[task 2021-02-04T06:36:45.723Z] 06:36:45 INFO - 1612420605721 Marionette TRACE Received observer notification marionette-startup-requested
[task 2021-02-04T06:36:45.723Z] 06:36:45 INFO - 1612420605721 Marionette TRACE Waiting until startup recorder finished recording startup scripts...
[task 2021-02-04T06:36:45.805Z] 06:36:45 INFO - 1612420605802 Marionette TRACE All scripts recorded.
[task 2021-02-04T06:36:45.805Z] 06:36:45 INFO - 1612420605803 Marionette INFO Listening on port 2828
[task 2021-02-04T06:36:45.807Z] 06:36:45 INFO - 1612420605804 Marionette DEBUG Marionette is listening
[task 2021-02-04T06:36:45.832Z] 06:36:45 INFO - 1612420605829 Marionette DEBUG Accepted connection 0 from 127.0.0.1:48326
[task 2021-02-04T06:36:45.836Z] 06:36:45 INFO - 1612420605833 Marionette DEBUG Accepted connection 1 from 127.0.0.1:48328
[task 2021-02-04T06:36:45.845Z] 06:36:45 INFO - 1612420605839 Marionette DEBUG Closed connection 0
[task 2021-02-04T06:36:45.861Z] 06:36:45 INFO - 1612420605852 Marionette DEBUG 1 -> [0,1,"WebDriver:NewSession",{"strictFileInteractability":true}]
[task 2021-02-04T06:36:45.864Z] 06:36:45 INFO - 1612420605861 Marionette DEBUG 1 <- [1,1,null,{"sessionId":"77539066-2f13-4edd-aedb-72d03a6168c5","capabilities":{"browserName":"firefox","browserVersion":"87.0a ... ld/tmp21enth.mozrunner","moz:shutdownTimeout":60000,"moz:useNonSpecCompliantPointerOrigin":false,"moz:webdriverClick":true}}]
[task 2021-02-04T06:36:45.873Z] 06:36:45 INFO - 1612420605871 Marionette DEBUG 1 -> [0,2,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:45.874Z] 06:36:45 INFO - 1612420605871 Marionette DEBUG 1 <- [1,2,null,{"value":null}]
[task 2021-02-04T06:36:46.473Z] 06:36:46 INFO - 1612420606463 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: browser-search-service, aData: write-settings-to-disk-complete
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607882 Marionette DEBUG 1 -> [0,3,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607882 Marionette DEBUG 1 <- [1,3,null,{"value":"content"}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607884 Marionette DEBUG 1 -> [0,4,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607884 Marionette DEBUG 1 <- [1,4,null,{"value":null}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607887 Marionette DEBUG 1 -> [0,5,"WebDriver:ExecuteScript",{"script":"Services.prefs.setIntPref(\"telemetry.fog.test.inactivity_limit\", 0);\n ... true,"args":[],"filename":"tests/telemetry/marionette/tests/client/test_fog_user_activity.py","sandbox":"default","line":19}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607888 Marionette TRACE [6] MarionetteCommands actor created for window id 2
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607890 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: telemetry.fog.test.inactivity_limit
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607890 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: telemetry.fog.test.activity_limit
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - 1612420607890 Marionette DEBUG 1 <- [1,5,null,{"value":null}]
[task 2021-02-04T06:36:47.895Z] 06:36:47 INFO - wait_for_pings running action '<lambda>'.
[task 2021-02-04T06:36:47.896Z] 06:36:47 INFO - 1612420607893 Marionette DEBUG 1 -> [0,6,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:47.898Z] 06:36:47 INFO - 1612420607893 Marionette DEBUG 1 <- [1,6,null,{"value":null}]
[task 2021-02-04T06:36:47.898Z] 06:36:47 INFO - 1612420607894 Marionette DEBUG 1 -> [0,7,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:47.898Z] 06:36:47 INFO - 1612420607894 Marionette DEBUG 1 <- [1,7,null,{"value":"content"}]
[task 2021-02-04T06:36:47.904Z] 06:36:47 INFO - 1612420607899 Marionette DEBUG 1 -> [0,8,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:36:47.905Z] 06:36:47 INFO - 1612420607899 Marionette DEBUG 1 <- [1,8,null,{"value":null}]
[task 2021-02-04T06:36:47.905Z] 06:36:47 INFO - 1612420607900 Marionette DEBUG 1 -> [0,9,"WebDriver:ExecuteScript",{"script":"Services.obs.notifyObservers(null, 'user-interaction-active')","newSandbox":true,"args":[],"filename":"tests/telemetry/marionette/tests/client/test_fog_user_activity.py","sandbox":"default","line":26}]
[task 2021-02-04T06:36:47.906Z] 06:36:47 INFO - 1612420607902 Toolkit.Telemetry TRACE TelemetrySession::observe - user-interaction-active notified.
[task 2021-02-04T06:36:47.907Z] 06:36:47 INFO - 1612420607903 Marionette DEBUG 1 <- [1,9,null,{"value":null}]
[task 2021-02-04T06:36:47.907Z] 06:36:47 INFO - 1612420607904 Marionette DEBUG 1 -> [0,10,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:47.908Z] 06:36:47 INFO - 1612420607904 Marionette DEBUG 1 <- [1,10,null,{"value":null}]
[task 2021-02-04T06:36:47.915Z] 06:36:47 INFO - fog_ping_server pings_handler received 'baseline' ping
[task 2021-02-04T06:36:47.922Z] 06:36:47 INFO - 1612420607917 Toolkit.Telemetry TRACE TelemetrySession::observe - user-interaction-inactive notified.
[task 2021-02-04T06:36:47.930Z] 06:36:47 INFO - fog_ping_server pings_handler received 'baseline' ping
[task 2021-02-04T06:36:48.006Z] 06:36:48 INFO - wait_for_pings running action '<lambda>'.
[task 2021-02-04T06:36:48.007Z] 06:36:48 INFO - 1612420608006 Marionette DEBUG 1 -> [0,11,"Marionette:GetContext",{}]
[task 2021-02-04T06:36:48.010Z] 06:36:48 INFO - 1612420608007 Marionette DEBUG 1 <- [1,11,null,{"value":"content"}]
[task 2021-02-04T06:36:48.011Z] 06:36:48 INFO - 1612420608008 Marionette DEBUG 1 -> [0,12,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:36:48.011Z] 06:36:48 INFO - 1612420608009 Marionette DEBUG 1 <- [1,12,null,{"value":null}]
[task 2021-02-04T06:36:48.014Z] 06:36:48 INFO - 1612420608011 Marionette DEBUG 1 -> [0,13,"WebDriver:ExecuteScript",{"script":"Services.obs.notifyObservers(null, 'user-interaction-inactive')","newSandbox":true,"args":[],"filename":"tests/telemetry/marionette/tests/client/test_fog_user_activity.py","sandbox":"default","line":26}]
[task 2021-02-04T06:36:48.015Z] 06:36:48 INFO - 1612420608013 Toolkit.Telemetry TRACE TelemetrySession::observe - user-interaction-inactive notified.
[task 2021-02-04T06:36:48.015Z] 06:36:48 INFO - 1612420608013 Marionette DEBUG 1 <- [1,13,null,{"value":null}]
[task 2021-02-04T06:36:48.018Z] 06:36:48 INFO - 1612420608014 Marionette DEBUG 1 -> [0,14,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:36:48.018Z] 06:36:48 INFO - 1612420608014 Marionette DEBUG 1 <- [1,14,null,{"value":null}]
[task 2021-02-04T06:36:48.122Z] 06:36:48 INFO - 1612420608119 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.safebrowsing.provider.mozilla.lastupdatetime
[task 2021-02-04T06:36:48.122Z] 06:36:48 INFO - 1612420608120 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: browser.safebrowsing.provider.mozilla.nextupdatetime
[task 2021-02-04T06:37:04.672Z] 06:37:04 INFO - 1612420624670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: media.gmp-manager.buildID
[task 2021-02-04T06:37:04.673Z] 06:37:04 INFO - 1612420624670 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: media.gmp-manager.lastCheck
[task 2021-02-04T06:37:12.847Z] 06:37:12 INFO - 1612420632844 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.services-settings-poll-changes
[task 2021-02-04T06:37:12.849Z] 06:37:12 INFO - 1612420632845 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.addon-background-update-timer
[task 2021-02-04T06:37:12.850Z] 06:37:12 INFO - 1612420632845 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.search-engine-update-timer
[task 2021-02-04T06:37:12.851Z] 06:37:12 INFO - 1612420632845 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.background-update-timer
[task 2021-02-04T06:37:12.852Z] 06:37:12 INFO - 1612420632845 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: app.update.lastUpdateTime.browser-cleanup-thumbnails
[task 2021-02-04T06:37:15.484Z] 06:37:15 INFO - 1612420635481 Toolkit.Telemetry TRACE TelemetryEnvironment::observe - aTopic: nsPref:changed, aData: toolkit.startup.last_success
[task 2021-02-04T06:37:44.644Z] 06:37:44 INFO - 1612420664635 Toolkit.Telemetry INFO TelemetryReportingPolicy::get dataSubmissionPolicyNotifiedDate - No date stored yet.
[task 2021-02-04T06:37:44.644Z] 06:37:44 INFO - 1612420664635 Toolkit.Telemetry TRACE TelemetryReportingPolicy::_shouldNotify - User already notified or bypassing the policy.
[task 2021-02-04T06:37:48.094Z] 06:37:48 INFO - 1612420668088 Marionette DEBUG 1 -> [0,15,"Marionette:GetContext",{}]
[task 2021-02-04T06:37:48.096Z] 06:37:48 INFO - 1612420668088 Marionette DEBUG 1 <- [1,15,null,{"value":"content"}]
[task 2021-02-04T06:37:48.096Z] 06:37:48 INFO - 1612420668089 Marionette DEBUG 1 -> [0,16,"Marionette:SetContext",{"value":"chrome"}]
[task 2021-02-04T06:37:48.096Z] 06:37:48 INFO - 1612420668089 Marionette DEBUG 1 <- [1,16,null,{"value":null}]
[task 2021-02-04T06:37:48.097Z] 06:37:48 INFO - 1612420668090 Marionette DEBUG 1 -> [0,17,"WebDriver:TakeScreenshot",{"full":true,"hash":false,"id":null,"scroll":true}]
[task 2021-02-04T06:37:48.141Z] 06:37:48 INFO - 1612420668136 Marionette DEBUG 1 <- [1,17,null,{"value":"iVBORw0KGgoAAAANSUhEUgAABQAAAAQQCAYAAAC9RfbYAAAgAElEQVR4nOzd3W/cB53v8f4V/BlcrfZmzw2rXuUmisqRQiu1UgsU0RYu ... AAAAAAjAlAAAAAABgTgAAAAAAwJgABAAAAYEwAAgAAAMCYAAQAAACAMQEIAAAAAGMCEAAAAADGBCAAAAAAjAlAAAAAABgLFm3pGy93XqIAAAAASUVORK5CYII="}]
[task 2021-02-04T06:37:48.141Z] 06:37:48 INFO - 1612420668137 Marionette DEBUG 1 -> [0,18,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:37:48.141Z] 06:37:48 INFO - 1612420668137 Marionette DEBUG 1 <- [1,18,null,{"value":null}]
[task 2021-02-04T06:37:48.142Z] 06:37:48 INFO - 1612420668138 Marionette DEBUG 1 -> [0,19,"Marionette:GetContext",{}]
[task 2021-02-04T06:37:48.142Z] 06:37:48 INFO - 1612420668138 Marionette DEBUG 1 <- [1,19,null,{"value":"content"}]
[task 2021-02-04T06:37:48.143Z] 06:37:48 INFO - 1612420668139 Marionette DEBUG 1 -> [0,20,"Marionette:SetContext",{"value":"content"}]
[task 2021-02-04T06:37:48.143Z] 06:37:48 INFO - 1612420668140 Marionette DEBUG 1 <- [1,20,null,{"value":null}]
[task 2021-02-04T06:37:48.144Z] 06:37:48 INFO - 1612420668140 Marionette DEBUG 1 -> [0,21,"WebDriver:GetPageSource",{}]
[task 2021-02-04T06:37:48.154Z] 06:37:48 INFO - 1612420668148 Marionette TRACE [17] MarionetteCommands actor created for window id 2147483649
[task 2021-02-04T06:37:48.154Z] 06:37:48 INFO - 1612420668149 Marionette DEBUG 1 <- [1,21,null,{"value":"<html><head></head><body></body></html>"}]
[task 2021-02-04T06:37:48.168Z] 06:37:48 INFO - TEST-UNEXPECTED-FAIL | telemetry/marionette/tests/client/test_fog_user_activity.py TestClientActivity.test_user_activity | AssertionError: Error waiting for ping: Timed out after 60.1 seconds```
|
|
1,688,136 | 15,227,631 |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0
Steps to reproduce:
The following test case crashes the debug version of SpiderMonkey:
```
function f0(a, b, c) {
var v0 = 1 + a + b;
if (c)
v0++;
else
v0--;
return v0 + v0 | 0;
}
var v1 = 2147483647;
var v2 = 0;
for (var v3 = 0; v3 < 500000; ++v3)
v2 = v2 + f0(v3, v1 - v3, v3 % 2) | 0;
```
build options: --enable-debug --disable-optimize
Actual results:
```
Assertion failure: cx_->hadNondeterministicException(), at gecko-dev/js/src/jit/WarpOracle.cpp:188
Segmentation fault (core dumped)
```
The stack backtrace is following:
```
[#0] 0x555557087713 β js::jit::WarpOracle::createSnapshot(this=0x7fffffff94e8)
[#1] 0x555556aea987 β js::jit::CreateWarpSnapshot(cx=0x7ffff5524000, mirGen=0x7ffff55f1170, script={
<js::HandleBase<JSScript*, JS::Handle<JSScript*> >> = {
<js::WrappedPtrOperations<JSScript*, JS::Handle<JSScript*> >> = {<No data fields>}, <No data fields>},
members of JS::Handle<JSScript*>:
ptr = 0x7fffffff9968
})
[#2] 0x555556aea4e0 β js::jit::IonCompile(cx=0x7ffff5524000, script={
<js::HandleBase<JSScript*, JS::Handle<JSScript*> >> = {
<js::WrappedPtrOperations<JSScript*, JS::Handle<JSScript*> >> = {<No data fields>}, <No data fields>},
members of JS::Handle<JSScript*>:
ptr = 0x7fffffff9968
}, osrPc=0x7ffff557c04e "\223\006")
[#3] 0x555556ad09f5 β js::jit::Compile(cx=0x7ffff5524000, script={
<js::HandleBase<JSScript*, JS::Handle<JSScript*> >> = {
<js::WrappedPtrOperations<JSScript*, JS::Handle<JSScript*> >> = {<No data fields>}, <No data fields>},
members of JS::Handle<JSScript*>:
ptr = 0x7fffffff9968
}, osrFrame=0x7fffffff9a80, osrPc=0x7ffff557c04e "\223\006")
[#4] 0x555556aeae9f β BaselineCanEnterAtBranch(cx=0x7ffff5524000, script={
<js::HandleBase<JSScript*, JS::Handle<JSScript*> >> = {
<js::WrappedPtrOperations<JSScript*, JS::Handle<JSScript*> >> = {<No data fields>}, <No data fields>},
members of JS::Handle<JSScript*>:
ptr = 0x7fffffff9968
}, osrFrame=0x7fffffff9a80, pc=0x7ffff557c04e "\223\006")
[#5] 0x555556ad0e34 β IonCompileScriptForBaseline(cx=0x7ffff5524000, frame=0x7fffffff9a80, pc=0x7ffff557c04e "\223\006")
[#6] 0x555556ad11a6 β js::jit::IonCompileScriptForBaselineOSR(cx=0x7ffff5524000, frame=0x7fffffff9a80, frameSize=0x50, pc=0x7ffff557c04e "\223\006", infoPtr=0x7fffffff9a48)
[#7] 0xd33c469b027 β add rsp, 0x8
[#8] 0x7ffff3f0d570 β movabs al, ds:0x2a00000d33c46df3
[#9] 0x7fffffff9a48 β add BYTE PTR [rax], al
```
|
|
1,688,346 | 15,229,226 |
```js
function f(x) {
return Math.trunc(x) - Math.trunc(x);
}
f(0);
f(0);
f(0);
f(0);
f(0);
f(0);
f(0);
f(0);
f(0);
f(0.1);
f(1 / 0);
assertEq(f(1 / 0), NaN);
```
`AR=ar sh ./configure --enable-debug --with-ccache --enable-gczeal --enable-debug-symbols --disable-tests`
Assertion fails on latest m-c rev 5dc361e890c3 with `-fuzzing-safe --differential-testing --no-threads --ion-eager`, passes when run with `--fuzzing-safe --differential-testing --no-threads --baseline-eager --no-ion`. `--disable-bailout-loop-check` does not seem to make the issue go away. Also passes when run on rev f4af0087a1b4, the parent of the potential regressor on both sets of flags.
```
The first bad revision is:
changeset: https://hg.mozilla.org/mozilla-central/rev/2650cedbdcc5
user: Iain Ireland
date: Sat Jan 09 00:48:34 2021 +0000
summary: Bug 1673497: Part 19: Invalidate warp lazily r=jandem
```
Unsure how bad this is, so marking s-s and setting needinfo? from :iain. Please open up if this is not the case.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.