Bug ID
int64
961
1.91M
Comment ID
int64
3.98k
17.1M
Author
stringlengths
8
48
Comment Text
stringlengths
1
64.3k
1,739,366
15,642,180
Using the fuzzing target in bug 1590068 (a target that uses dom::ipc::StructuredCloneData as its entry point to cover the StructuredCloneReader code that is browser-only), I was able to find the following crash on mozilla-central revision 9b9f8bfe2625+. I also applied the patch in bug 1736046 to unblock the fuzzing. Backtrace: ==16686==ERROR: UndefinedBehaviorSanitizer: SEGV on unknown address 0x000000000000 (pc 0x7f0987d2f179 bp 0x7fff8f149ed0 sp 0x7fff8f149ed0 T16686) ==16686==The signal is caused by a WRITE memory access. ==16686==Hint: address points to the zero page. #0 0x7f0987d2f179 in JSErrorReport::initBorrowedLinebuf(char16_t const*, unsigned long, unsigned long) js/src/jsapi.cpp:3742:3 #1 0x7f09856e7bae in initOwnedLinebuf dist/include/js/ErrorReport.h:266:5 #2 0x7f09856e7bae in mozilla::dom::ClonedErrorHolder::ToErrorValue(JSContext*, JS::MutableHandle<JS::Value>) dom/ipc/ClonedErrorHolder.cpp:312:16 #3 0x7f09856e7314 in mozilla::dom::ClonedErrorHolder::ReadStructuredClone(JSContext*, JSStructuredCloneReader*, mozilla::dom::StructuredCloneHolder*) dom/ipc/ClonedErrorHolder.cpp:225:43 #4 0x7f0982f0d676 in mozilla::dom::StructuredCloneHolder::CustomReadHandler(JSContext*, JSStructuredCloneReader*, JS::CloneDataPolicy const&, unsigned int, unsigned int) dom/base/StructuredCloneHolder.cpp:1005:12 #5 0x7f0987c44805 in JSStructuredCloneReader::startRead(JS::MutableHandle<JS::Value>, js::gc::InitialHeap) js/src/vm/StructuredClone.cpp:2814:11 #6 0x7f0987c348b2 in JSStructuredCloneReader::read(JS::MutableHandle<JS::Value>, unsigned long) js/src/vm/StructuredClone.cpp:3226:8 #7 0x7f0987c34671 in ReadStructuredClone(JSContext*, JSStructuredCloneData const&, JS::StructuredCloneScope, JS::MutableHandle<JS::Value>, JS::CloneDataPolicy const&, JSStructuredCloneCallbacks const*, void*) js/src/vm/StructuredClone.cpp:705:12 #8 0x7f0987c497c0 in JS_ReadStructuredClone(JSContext*, JSStructuredCloneData const&, unsigned int, JS::StructuredCloneScope, JS::MutableHandle<JS::Value>, JS::CloneDataPolicy const&, JSStructuredCloneCallbacks const*, void*) js/src/vm/StructuredClone.cpp:3382:10 #9 0x7f0982f0b8bd in mozilla::dom::StructuredCloneHolder::ReadFromBuffer(nsIGlobalObject*, JSContext*, JSStructuredCloneData&, unsigned int, JS::MutableHandle<JS::Value>, JS::CloneDataPolicy const&, mozilla::ErrorResult&) dom/base/StructuredCloneHolder.cpp:409:8 #10 0x7f0982f0b814 in mozilla::dom::StructuredCloneHolder::ReadFromBuffer(nsIGlobalObject*, JSContext*, JSStructuredCloneData&, JS::MutableHandle<JS::Value>, JS::CloneDataPolicy const&, mozilla::ErrorResult&) dom/base/StructuredCloneHolder.cpp:395:3 #11 0x7f098575b271 in mozilla::dom::ipc::StructuredCloneData::Read(JSContext*, JS::MutableHandle<JS::Value>, JS::CloneDataPolicy const&, mozilla::ErrorResult&) dom/ipc/StructuredCloneData.cpp:116:3 #12 0x7f09857559ae in mozilla::dom::ipc::StructuredCloneData::Read(JSContext*, JS::MutableHandle<JS::Value>, mozilla::ErrorResult&) dom/ipc/StructuredCloneData.cpp:104:3 #13 0x7f098087c6f5 in FuzzingRunDomSC(unsigned char const*, unsigned long) dom/base/fuzztest/FuzzStructuredClone.cpp:59:10 [...] Marking s-s because of range assert. If this is not s-s, please keep it hidden anyway until we have completed landing of the parent target in bug 1590068.
1,739,683
15,644,320
The following Wasm jit-test test case triggers a crash in Ion: ``` // crash.js gczeal(2, 1); // Collect on every allocation. let exports = wasmEvalText( `(module (table $tab (export "tab") 5 externref) (elem declare funcref (ref.func $g)) (func $g) (func $f (export "f") (param externref) (result) (ref.func $g) ;; force a collection via allocation in instance call ;; stack map is not at the right offset as failure mode is FailOnInvalidRef (ref.is_null) (if (then) ;; crashes here due to GC happening above ;; at this point the externref on stack is a poisoned value (else (i32.const 0) (local.get 0) (table.set $tab))) ) )`, {} ).exports; exports.f("foo"); ``` Running this produces a crash like the following ``` $ mach jit-test --ion crash.js Assertion failure: ThreadId::ThisThreadId() == owningThread_, at /home/asumu/mozilla-unified/js/src/threading/Mutex.cpp:63 UndefinedBehaviorSanitizer:DEADLYSIGNAL ==28940==ERROR: UndefinedBehaviorSanitizer: SEGV on unknown address 0x000000000000 (pc 0x557b685d175c bp 0x7ffec0503ba0 sp 0x7ffec0503b70 T28940) ==28940==The signal is caused by a WRITE memory access. ==28940==Hint: address points to the zero page. ``` This is reduced from another test case (in exception handling Ion code) where it was more obvious that the `externref` parameter to the function `$f` is getting collected and overwritten with a poisoned value, but you can see in gdb that the externref is overwritten with `0x2F` (`JS_FRESH_NURSERY_PATTERN`) if you break in the `tableSet` method. What appears to be happening is that stack maps for Ion calls to Wasm instance method calls are not being installed correctly (at the right offset), so they are not actually looked up during GC. The GC then misses roots in the stack frame. This happens on methods where the failure mode is not `Infallible`, as there are some error handling instructions inserted between the call return point and the location of the `LSafepoint`. I'll attach a patch that should fix the offsets later. I think it is difficult to trigger this bug without gczeal turned on, but I've marked this as a security bug just in case.
1,739,920
15,645,631
This was reported to us by the JAWS screen reader and ZoomText magnifier vendor (Vispero). It causes problems for both products. Steps to repro with AccEvent: 1. Run AccEvent in MSAA mode (in or out of process). 2. Subscribe to OBJ_FOCUS event only. 3. Run Firefox. 4. Press Tab a few times, check if Firefox fires focus events. 5. Close Firefox. 6. Repeat steps 3-5 if the issue is not reproducible. Results: 1. After the problem happens for the first time, it’s reproducible all the time during windows session. 2. The only focus event reported by Firefox is: `OBJ_FOCUS        HWND=00000000000502E0 idObject=FFFFFFFFFFFFFFFC idChild=0 Window Class="MozillaWindowClass" [Error: getting object: hr=0xFFFFFFFF80004005 - Unspecified error]` 3. Switching to another app and then back, fixes the problem and Firefox reports normal focus events: `OBJ_FOCUS        HWND=00000000000502E0 idObject=FFFFFFFFFFFFFFFC idChild=0 Window Class="MozillaWindowClass" Name="Mozilla Firefox" Role=application State=read only,busy,sizeable,moveable,focusable` `OBJ_FOCUS        HWND=00000000000502E0 idObject=FFFFFFFFFFFFFFFC idChild=FFFFFFFFFE7FFFBE Window Class="MozillaWindowClass" Name="Open context menu for mail.google" Role=menu button State=focused,floating,focusable,has popup` 4. The problem is also gone if a dialog or file menu is opened with mouse or hot key. 5. The problem is also gone if a tool tip is shown and Jaws or ZoomText running. 6. The problem is not reproducible with AccEvent if there are some additional event subscriptions like OBJ_LOCATIONCHANGE. 7. There are no issues with AccEvent working in UIA mode. 8. There are no Firefox.exe instances after Firefox is closed. here's what's happening here: 1. When the skeleton UI appears, Windows fires EVENT_OBJECT_FOCUS for the HWND as it always does when an HWND gets focus. 2. A client processing EVENT_OBJECT_FOCUS will send WM_GETOBJECT. 3. We [return E_FAIL](https://searchfox.org/mozilla-central/rev/dac9173b804e53cb5ad78ab5709fbe2a016bd04d/mozglue/misc/PreXULSkeletonUI.cpp#1271) to stop clients from getting (and potentially caching) a generic oleacc client proxy which won't provide any useful info. 4. Since the skeleton UI HWND continues to be used once the real UI loads, no other focus event is fired by Windows. 5. Since WM_GETOBJECT is never received by the real UI, the Gecko a11y engine is never initialised. 6. Since the Gecko a11y engine is never initialised, we never fire most a11y events. 7. Since most a11y events are never fired, some clients never call WM_GETOBJECT, so this nasty situation continues until the user switches away from and back to Firefox, at which point Windows will finally fire another focus event. This doesn't seem to affect NVDA. My guess is that this is either timing or perhaps NVDA responds to some other event (e.g. caret) that Firefox does still fire. However, we should not be relying on this; JAWS and ZoomText are not at fault here. The intuitive solution is to avoid returning E_FAIL in the Skeleton UI. While this would mean clients do get an IAccessible for the initial focus, it would be useless to them (it might even cause a useless IAccessible to be cached by the client) and it still wouldn't initialise the Gecko a11y engine. I think we can solve this by firing EVENT_OBJECT_FOCUS with the Firefox hwnd, OBJID_CLIENT and CHILDID_SELF once the real UI appears. Clients should pick this up and send WM_GETOBJECT, triggering the Gecko a11y engine as normal. Because the initial focus event returned E_FAIL, clients shouldn't ignore this as a duplicate. The main challenge will be figuring out where this code needs to go.
1,740,442
15,651,038
Created attachment 9250141 Amazon DE and Amazon.com comparison **Affected Versions:** All latest Firefox versions. Reproducible back to Fx91 as well **Tested on:** MacOS 10.15 **Preconditions:** browser.search.region DE extensions.formautofill.supportedCountries DE download latest Firefox Nightly with region locale (switch extensions.formautofill.available to "on" for testing non-Nightly builds) **Steps to reproduce:** 1. Reach the payment form on amazon.de (make sure you have at least 1 CC saved) 2.1. Click on the Cardholder Name dropdown 2.2. Fill in data in the Cardholder Name field and submit the form **Expected Results:** 2.1. The Credit Card dropdown should be displayed upon clicking on the Cardholder Name field. 2.2. The doorhanger should also capture the Cardholder Name field data **Actual Results:** The Cardholder Name is not recognized by Credit Card capture not autofill **Notes:** Reproducible on Chrome: No Also not reproducible on other tested Amazon locales (US, UK, FR, CA). This is specific for DE locale Amazon site.
1,740,446
15,651,135
Created attachment 9250149 DE and US comparison **Affected Versions:** All latest Firefox versions. Reproducible back to Fx91 as well **Tested on:** MacOS 10.15 **Preconditions:** browser.search.region DE extensions.formautofill.supportedCountries DE download latest Firefox Nightly with region locale (switch extensions.formautofill.available to "on" for testing non-Nightly builds) **Steps to reproduce:** 1. Reach the payment form on ebay.de (make sure you have at least 1 CC entry saved) 2. Click on the Expiry date field and choose the saved cc from the dropdown **Expected Results:** The Expiration Date should be auto-filled correctly with the mm/yy format. **Actual Results:** The Expiration Date saved as 2027 - 07 is filled in as "02/7" and fails field validation. **Notes:** Reproducible on Chrome: No Not reproducible on Ebay with the following locales: UK, US, CA
1,740,481
15,651,337
Created attachment 9250174 Index.html User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0 Steps to reproduce: 1.display a javascript new date onto a web page (any) 2.change timezone on computer 3.display date again, it will not match computer timezone 4.Do the same procedure on the Chrome browser to see the date in the correct format set on the computer Actual results: If i visit web pages with new Date() function, i see the current timezone set on local computer. If i change computer time zone and refresh web page, i continue to see old time with old time zone. If i try same procedure on other browser like Chrome, the web page return correct datetime timezone
1,740,534
15,651,630
Testcase found while fuzzing mozilla-central rev 333f08065c8c (built with: --enable-debug --enable-fuzzing). Testcase can be reproduced using the following commands: ``` $ pip install fuzzfetch grizzly-framework $ python -m fuzzfetch --build 333f08065c8c --debug --fuzzing -n firefox $ python -m grizzly.replay ./firefox/firefox testcase.zip --repeat 10 ``` ``` Assertion failure: mBodyStream, at /dom/base/BodyStream.cpp:54 ==721216==ERROR: UndefinedBehaviorSanitizer: SEGV on unknown address 0x000000000000 (pc 0x7f4a52b40f70 bp 0x7f4a484db430 sp 0x7f4a484db3f0 T721294) ==721216==The signal is caused by a WRITE memory access. ==721216==Hint: address points to the zero page. #0 0x7f4a52b40f70 in ForgetBodyStream /dom/base/BodyStream.cpp:54:3 #1 0x7f4a52b40f70 in mozilla::dom::BodyStream::ReleaseObjects(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /dom/base/BodyStream.cpp:545:18 #2 0x7f4a52b41916 in mozilla::dom::BodyStream::Close() /dom/base/BodyStream.cpp #3 0x7f4a52b3f4eb in operator() /dom/base/BodyStream.cpp:98:51 #4 0x7f4a52b3f4eb in ~ScopeExit /builds/worker/workspace/obj-build/dist/include/mozilla/ScopeExit.h:106:7 #5 0x7f4a52b3f4eb in mozilla::dom::BodyStream::Create(JSContext*, mozilla::dom::BodyStreamHolder*, nsIGlobalObject*, nsIInputStream*, mozilla::ErrorResult&) /dom/base/BodyStream.cpp:151:1 #6 0x7f4a544a322d in mozilla::dom::FetchBody<mozilla::dom::Response>::GetBody(JSContext*, JS::MutableHandle<JSObject*>, mozilla::ErrorResult&) /dom/fetch/Fetch.cpp:1394:3 #7 0x7f4a53492eed in mozilla::dom::Response_Binding::get_body(JSContext*, JS::Handle<JSObject*>, void*, JSJitGetterCallArgs) /builds/worker/workspace/obj-build/dom/bindings/ResponseBinding.cpp:1295:24 #8 0x7f4a54053fdf in bool mozilla::dom::binding_detail::GenericGetter<mozilla::dom::binding_detail::NormalThisPolicy, mozilla::dom::binding_detail::ThrowExceptions>(JSContext*, unsigned int, JS::Value*) /dom/bindings/BindingUtils.cpp:3182:13 #9 0x7f4a5795e5bf in CallJSNative(JSContext*, bool (*)(JSContext*, unsigned int, JS::Value*), js::CallReason, JS::CallArgs const&) /js/src/vm/Interpreter.cpp:385:13 #10 0x7f4a5795dcbb in js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, js::MaybeConstruct, js::CallReason) /js/src/vm/Interpreter.cpp:472:12 #11 0x7f4a5795f79e in InternalCall(JSContext*, js::AnyInvokeArgs const&, js::CallReason) /js/src/vm/Interpreter.cpp:532:10 #12 0x7f4a5796082f in Call /js/src/vm/Interpreter.cpp:549:8 #13 0x7f4a5796082f in js::CallGetter(JSContext*, JS::Handle<JS::Value>, JS::Handle<JS::Value>, JS::MutableHandle<JS::Value>) /js/src/vm/Interpreter.cpp:675:10 #14 0x7f4a57ccda0f in CallGetter /js/src/vm/NativeObject.cpp:1942:12 #15 0x7f4a57ccda0f in bool GetExistingProperty<(js::AllowGC)1>(JSContext*, js::MaybeRooted<JS::Value, (js::AllowGC)1>::HandleType, js::MaybeRooted<js::NativeObject*, (js::AllowGC)1>::HandleType, js::MaybeRooted<JS::PropertyKey, (js::AllowGC)1>::HandleType, js::PropertyInfoBase<unsigned int>, js::MaybeRooted<JS::Value, (js::AllowGC)1>::MutableHandleType) /js/src/vm/NativeObject.cpp:1970:12 #16 0x7f4a57cce0a3 in bool NativeGetPropertyInline<(js::AllowGC)1>(JSContext*, js::MaybeRooted<js::NativeObject*, (js::AllowGC)1>::HandleType, js::MaybeRooted<JS::Value, (js::AllowGC)1>::HandleType, js::MaybeRooted<JS::PropertyKey, (js::AllowGC)1>::HandleType, IsNameLookup, js::MaybeRooted<JS::Value, (js::AllowGC)1>::MutableHandleType) /js/src/vm/NativeObject.cpp:2116:14 #17 0x7f4a579647ef in GetProperty /js/src/vm/ObjectOperations-inl.h:115:10 #18 0x7f4a579647ef in js::GetProperty(JSContext*, JS::Handle<JSObject*>, JS::Handle<JS::Value>, js::PropertyName*, JS::MutableHandle<JS::Value>) /js/src/vm/ObjectOperations-inl.h:122:10 #19 0x7f4a57963ca0 in js::GetProperty(JSContext*, JS::Handle<JS::Value>, JS::Handle<js::PropertyName*>, JS::MutableHandle<JS::Value>) /js/src/vm/Interpreter.cpp:4548:10 #20 0x7f4a579529bb in GetPropertyOperation /js/src/vm/Interpreter.cpp:203:10 #21 0x7f4a579529bb in Interpret(JSContext*, js::RunState&) /js/src/vm/Interpreter.cpp:2904:12 #22 0x7f4a5794bbe5 in js::RunScript(JSContext*, js::RunState&) /js/src/vm/Interpreter.cpp:354:13 #23 0x7f4a5795dbb6 in js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, js::MaybeConstruct, js::CallReason) /js/src/vm/Interpreter.cpp:504:13 #24 0x7f4a5795f79e in InternalCall(JSContext*, js::AnyInvokeArgs const&, js::CallReason) /js/src/vm/Interpreter.cpp:532:10 #25 0x7f4a5795f9a1 in js::Call(JSContext*, JS::Handle<JS::Value>, JS::Handle<JS::Value>, js::AnyInvokeArgs const&, JS::MutableHandle<JS::Value>, js::CallReason) /js/src/vm/Interpreter.cpp:549:8 #26 0x7f4a57b17c21 in JS::Call(JSContext*, JS::Handle<JS::Value>, JS::Handle<JS::Value>, JS::HandleValueArray const&, JS::MutableHandle<JS::Value>) /js/src/vm/CallAndConstruct.cpp:117:10 #27 0x7f4a53df182c in mozilla::dom::VoidFunction::Call(mozilla::dom::BindingCallContext&, JS::Handle<JS::Value>, mozilla::ErrorResult&) /builds/worker/workspace/obj-build/dom/bindings/FunctionBinding.cpp:81:8 #28 0x7f4a52d81e25 in mozilla::dom::VoidFunction::Call(mozilla::ErrorResult&, char const*, mozilla::dom::CallbackObject::ExceptionHandling, JS::Realm*) /builds/worker/workspace/obj-build/dist/include/mozilla/dom/FunctionBinding.h:172:12 #29 0x7f4a52d81c0e in QueuedMicrotask::Run(mozilla::AutoSlowOperation&) /dom/base/nsIGlobalObject.cpp:271:31 #30 0x7f4a50dcec18 in mozilla::CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool) /xpcom/base/CycleCollectedJSContext.cpp:674:17 #31 0x7f4a50dcfa3c in mozilla::CycleCollectedJSContext::AfterProcessTask(unsigned int) /xpcom/base/CycleCollectedJSContext.cpp:463:3 #32 0x7f4a50efa45a in nsThread::ProcessNextEvent(bool, bool*) /xpcom/threads/nsThread.cpp:1212:24 #33 0x7f4a50f0126a in NS_ProcessNextEvent(nsIThread*, bool) /xpcom/threads/nsThreadUtils.cpp:467:10 #34 0x7f4a554243d8 in mozilla::dom::WorkerPrivate::DoRunLoop(JSContext*) /dom/workers/WorkerPrivate.cpp:3105:7 #35 0x7f4a554047a7 in mozilla::dom::workerinternals::(anonymous namespace)::WorkerThreadPrimaryRunnable::Run() /dom/workers/RuntimeService.cpp:2244:42 #36 0x7f4a50efa149 in nsThread::ProcessNextEvent(bool, bool*) /xpcom/threads/nsThread.cpp:1169:16 #37 0x7f4a50f0126a in NS_ProcessNextEvent(nsIThread*, bool) /xpcom/threads/nsThreadUtils.cpp:467:10 #38 0x7f4a5198e624 in mozilla::ipc::MessagePumpForNonMainThreads::Run(base::MessagePump::Delegate*) /ipc/glue/MessagePump.cpp:330:5 #39 0x7f4a518ac9f7 in MessageLoop::RunInternal() /ipc/chromium/src/base/message_loop.cc:331:10 #40 0x7f4a518ac902 in RunHandler /ipc/chromium/src/base/message_loop.cc:324:3 #41 0x7f4a518ac902 in MessageLoop::Run() /ipc/chromium/src/base/message_loop.cc:306:3 #42 0x7f4a50ef5dbb in nsThread::ThreadFunc(void*) /xpcom/threads/nsThread.cpp:391:10 #43 0x7f4a67a98a07 in _pt_root /nsprpub/pr/src/pthreads/ptthread.c:201:5 #44 0x7f4a6880c608 in start_thread /build/glibc-eX1tMB/glibc-2.31/nptl/pthread_create.c:477:8 #45 0x7f4a683d4292 in __clone /build/glibc-eX1tMB/glibc-2.31/misc/../sysdeps/unix/sysv/linux/x86_64/clone.S:95 UndefinedBehaviorSanitizer can not provide additional info. SUMMARY: UndefinedBehaviorSanitizer: SEGV /dom/base/BodyStream.cpp:54:3 in ForgetBodyStream ==721216==ABORTING ```
1,740,568
15,651,860
Note that autoscrolling is disabled by default on Linux but we allow enabling it in about:preferences.
1,741,362
15,658,455
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0 Steps to reproduce: Write an email with S/MIME signature containing only the word 'täst' Actual results: The email signature is displayed as invalid Expected results: The email signature should be displayed as valid The counter test with the word "test" in it works.
1,742,239
15,664,680
Created attachment 9251756 Border_around_active_tab_Light_Theme.png After fixing bug 1738855 and bug 1740788, the border around the active tab in Light Theme is again too dark and doesn't match other separtors like e.g. the toolbar border. I think the dark border was initially fixed for Light Theme with bug 1740788 and bug 1740788 could have regressed it again? Screenshots actual vs ecpected are attached. OS: macOS 12.0.1 Nightly 96.0a1 (2021-11-20) (64-Bit) Thanks for checking and fixing it in advance.
1,732,903
15,588,338
User Agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:92.0) Gecko/20100101 Firefox/92.0 Steps to reproduce: 1. Create a new message 2. Drag URL from browser (e.g. Firefox) URL bar to message compose window Actual results: 3. The URL is attached to the message Expected results: 4. The URL should be inserted as text (or, preferably, as a hyperlink) at the cursor position in the compose window.
1,732,911
15,588,373
**Filed by:** nfay [at] mozilla.com **Parsed log:** https://treeherder.mozilla.org/logviewer?job_id=352939491&repo=autoland **Full log:** https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VFYsB4eGS1O16Txta8FbYw/runs/0/artifacts/public/logs/live_backing.log --- ``` [task 2021-09-28T12:53:51.963Z] 12:53:51 INFO - TEST-START | org.mozilla.geckoview.test.PrivateModeTest#privateDataNotShared [task 2021-09-28T12:53:52.400Z] 12:53:52 INFO - org.mozilla.geckoview.test | INSTRUMENTATION_RESULT: shortMsg=Process crashed. [task 2021-09-28T12:53:52.401Z] 12:53:52 INFO - org.mozilla.geckoview.test | INSTRUMENTATION_CODE: 0 [task 2021-09-28T12:53:52.416Z] 12:53:52 INFO - org.mozilla.geckoview.test | adb_returncode=0 [task 2021-09-28T12:53:52.418Z] 12:53:52 INFO - Passed: 374 [task 2021-09-28T12:53:52.418Z] 12:53:52 INFO - Failed: 0 [task 2021-09-28T12:53:52.418Z] 12:53:52 INFO - Todo: 46 [task 2021-09-28T12:53:52.419Z] 12:53:52 WARNING - TEST-UNEXPECTED-FAIL | runjunit.py | Some tests did not run (probably due to a crash in the harness) [task 2021-09-28T12:53:52.419Z] 12:53:52 INFO - SUITE-END | took 316s [task 2021-09-28T12:53:52.536Z] 12:53:52 INFO - mozcrash Copy/paste: /builds/worker/fetches/minidump_stackwalk/minidump_stackwalk /tmp/tmp6tfa1ix0/327ba6b7-b881-2875-b86d-7b7272b3e255.dmp /builds/worker/workspace/build/symbols [task 2021-09-28T12:53:57.800Z] 12:53:57 INFO - mozcrash Saved minidump as /builds/worker/workspace/build/blobber_upload_dir/327ba6b7-b881-2875-b86d-7b7272b3e255.dmp [task 2021-09-28T12:53:57.800Z] 12:53:57 INFO - mozcrash Saved app info as /builds/worker/workspace/build/blobber_upload_dir/327ba6b7-b881-2875-b86d-7b7272b3e255.extra [task 2021-09-28T12:53:57.807Z] 12:53:57 WARNING - PROCESS-CRASH | org.mozilla.geckoview.test.PrivateModeTest#privateDataNotShared | application crashed [@ mozilla::dom::BrowsingContext::Detach(bool)] [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - Mozilla crash reason: MOZ_ASSERT(!mFullyDiscarded) [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - Crash dump filename: /tmp/tmp6tfa1ix0/327ba6b7-b881-2875-b86d-7b7272b3e255.dmp [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - Operating system: Android [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - 0.0.0 Linux 3.10.0+ #260 SMP PREEMPT Fri May 19 12:48:14 PDT 2017 x86_64 [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - CPU: amd64 [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - family 6 model 6 stepping 3 [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - 4 CPUs [task 2021-09-28T12:53:57.808Z] 12:53:57 INFO - GPU: UNKNOWN [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - Crash reason: SIGSEGV / SEGV_MAPERR [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - Crash address: 0x0 [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - Process uptime: not available [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - Thread 15 tid 3479 (crashed) 0 libxul.so!mozilla::dom::CanonicalBrowsingContext::AddPendingDiscard() [CanonicalBrowsingContext.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 1156 + 0x29] [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - rax = 0x0000706a669523d3 rdx = 0x0000000000000004 [task 2021-09-28T12:53:57.809Z] 12:53:57 INFO - rcx = 0x0000706a6a47cc30 rbx = 0x0000706a6ad81570 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - rsi = 0x0000706a6ad803a0 rdi = 0x000000000000001b [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - rbp = 0x0000706a6ad814c0 rsp = 0x0000706a6ad814c0 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - r8 = 0x000000000000ffff r9 = 0x0000000000000000 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - r10 = 0x0000706a87c9d3d0 r11 = 0x0000000000000246 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - r12 = 0x0000706a4e63f000 r13 = 0x0000706a6ad81510 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - r14 = 0x0000706a6ad814e0 r15 = 0x0000706a55e1a000 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - rip = 0x0000706a62a7f6d4 [task 2021-09-28T12:53:57.810Z] 12:53:57 INFO - Found by: given as instruction pointer in context [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - 1 libxul.so!mozilla::dom::BrowsingContext::Detach(bool) [BrowsingContext.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 845 + 0xf0] [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - rbp = 0x0000706a6ad81630 rsp = 0x0000706a6ad814d0 [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - rip = 0x0000706a62a6c746 [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - 2 libxul.so!nsFrameLoader::DestroyDocShell() [nsFrameLoader.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 2061 + 0x12] [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - rbp = 0x0000706a6ad81660 rsp = 0x0000706a6ad81640 [task 2021-09-28T12:53:57.811Z] 12:53:57 INFO - rip = 0x0000706a603fe8bc [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - 3 libxul.so!nsFrameLoaderDestroyRunnable::Run() [nsFrameLoader.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 1987 + 0x14] [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - rbp = 0x0000706a6ad81680 rsp = 0x0000706a6ad81670 [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - rip = 0x0000706a603fe787 [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.812Z] 12:53:57 INFO - 4 libxul.so!mozilla::dom::Document::MaybeInitializeFinalizeFrameLoaders() [Document.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 9190 + 0x1c] [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - rbp = 0x0000706a6ad816d0 rsp = 0x0000706a6ad81690 [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - rip = 0x0000706a602fde89 [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - 5 libxul.so!mozilla::detail::RunnableMethodImpl<mozilla::dom::Document*, void (mozilla::dom::Document::*)(), true, (mozilla::RunnableKind)0, >::Run() [nsThreadUtils.h:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 1200 + 0x17] [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - rbp = 0x0000706a6ad816e0 rsp = 0x0000706a6ad816e0 [task 2021-09-28T12:53:57.813Z] 12:53:57 INFO - rip = 0x0000706a60349d9d [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - 6 libxul.so!nsContentUtils::RemoveScriptBlocker() [nsContentUtils.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 5692 + 0x11] [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - rbp = 0x0000706a6ad817a0 rsp = 0x0000706a6ad816f0 [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - rip = 0x0000706a602034df [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - 7 libxul.so!nsDocumentViewer::Destroy() [nsDocumentViewer.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 1791 + 0x5] [task 2021-09-28T12:53:57.814Z] 12:53:57 INFO - rbp = 0x0000706a6ad81810 rsp = 0x0000706a6ad817b0 [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - rip = 0x0000706a61f6e221 [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - 8 libxul.so!nsDocShell::Destroy() [nsDocShell.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 4429 + 0x14] [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - rbp = 0x0000706a6ad81860 rsp = 0x0000706a6ad81820 [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - rip = 0x0000706a62a8dfed [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.815Z] 12:53:57 INFO - 9 libxul.so!mozilla::AppWindow::Destroy() [AppWindow.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 631 + 0x10] [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - rbp = 0x0000706a6ad818e0 rsp = 0x0000706a6ad81870 [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - rip = 0x0000706a62af9c02 [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - 10 libxul.so!nsChromeTreeOwner::Destroy() [nsChromeTreeOwner.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 255 + 0x5] [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - rbp = 0x0000706a6ad818f0 rsp = 0x0000706a6ad818f0 [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - rip = 0x0000706a62b078a8 [task 2021-09-28T12:53:57.816Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - 11 libxul.so!nsGlobalWindowOuter::ReallyCloseWindow() [nsGlobalWindowOuter.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 6355 + 0xe] [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - rbp = 0x0000706a6ad81930 rsp = 0x0000706a6ad81900 [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - rip = 0x0000706a6026bd86 [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - 12 libxul.so!nsCloseEvent::Run() [nsGlobalWindowOuter.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 6156 + 0xd] [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - rbp = 0x0000706a6ad81940 rsp = 0x0000706a6ad81940 [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - rip = 0x0000706a6026fc57 [task 2021-09-28T12:53:57.817Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - 13 libxul.so!mozilla::RunnableTask::Run() [TaskController.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 467 + 0x11] [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - rbp = 0x0000706a6ad81dd0 rsp = 0x0000706a6ad81950 [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - rip = 0x0000706a5f328b26 [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - 14 libxul.so!mozilla::TaskController::DoExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) [TaskController.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 770 + 0x9] [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - rbp = 0x0000706a6ad81ff0 rsp = 0x0000706a6ad81de0 [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - rip = 0x0000706a5f31383e [task 2021-09-28T12:53:57.818Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - 15 libxul.so!mozilla::TaskController::ExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) [TaskController.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 606 + 0x5] [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - rbp = 0x0000706a6ad82050 rsp = 0x0000706a6ad82000 [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - rip = 0x0000706a5f312b20 [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - 16 libxul.so!mozilla::TaskController::ProcessPendingMTTask(bool) [TaskController.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 390 + 0xc] [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - rbp = 0x0000706a6ad820a0 rsp = 0x0000706a6ad82060 [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - rip = 0x0000706a5f312d40 [task 2021-09-28T12:53:57.819Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - 17 libxul.so!mozilla::detail::RunnableFunction<mozilla::TaskController::InitializeInternal()::$_0>::Run() [nsThreadUtils.h:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 531 + 0xf] [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - rbp = 0x0000706a6ad820b0 rsp = 0x0000706a6ad820b0 [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - rip = 0x0000706a5f32c9bd [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - 18 libxul.so!nsThread::ProcessNextEvent(bool, bool*) [nsThread.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 1148 + 0xe] [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - rbp = 0x0000706a6ad821e0 rsp = 0x0000706a6ad820c0 [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - rip = 0x0000706a5f31f573 [task 2021-09-28T12:53:57.820Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - 19 libxul.so!NS_ProcessNextEvent(nsIThread*, bool) [nsThreadUtils.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 466 + 0x10] [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - rbp = 0x0000706a6ad82220 rsp = 0x0000706a6ad821f0 [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - rip = 0x0000706a5f323ab5 [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - 20 libxul.so!mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) [MessagePump.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 85 + 0xa] [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - rbp = 0x0000706a6ad82270 rsp = 0x0000706a6ad82230 [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - rip = 0x0000706a5f9325b8 [task 2021-09-28T12:53:57.821Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - 21 libxul.so!MessageLoop::RunInternal() [message_loop.cc:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 331 + 0x17] [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - rbp = 0x0000706a6ad822b0 rsp = 0x0000706a6ad82280 [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - rip = 0x0000706a5f8d41ba [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - 22 libxul.so!MessageLoop::Run() [message_loop.cc:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 306 + 0x8] [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - rbp = 0x0000706a6ad822f0 rsp = 0x0000706a6ad822c0 [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - rip = 0x0000706a5f8d4123 [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.822Z] 12:53:57 INFO - 23 libxul.so!nsBaseAppShell::Run() [nsBaseAppShell.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 137 + 0xd] [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - rbp = 0x0000706a6ad82310 rsp = 0x0000706a6ad82300 [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - rip = 0x0000706a61cece95 [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - 24 libxul.so!nsAppStartup::Run() [nsAppStartup.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 289 + 0x12] [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - rbp = 0x0000706a6ad82340 rsp = 0x0000706a6ad82320 [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - rip = 0x0000706a62d226ad [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.823Z] 12:53:57 INFO - 25 libxul.so!XREMain::XRE_mainRun() [nsAppRunner.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 5291 + 0xe] [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - rbp = 0x0000706a6ad824e0 rsp = 0x0000706a6ad82350 [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - rip = 0x0000706a62de81d9 [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - 26 libxul.so!XREMain::XRE_main(int, char**, mozilla::BootstrapConfig const&) [nsAppRunner.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 5476 + 0x8] [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - rbp = 0x0000706a6ad82570 rsp = 0x0000706a6ad824f0 [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - rip = 0x0000706a62de8d6c [task 2021-09-28T12:53:57.824Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - 27 libxul.so!XRE_main(int, char**, mozilla::BootstrapConfig const&) [nsAppRunner.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 5535 + 0x11] [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - rbp = 0x0000706a6ad82690 rsp = 0x0000706a6ad82580 [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - rip = 0x0000706a62de9366 [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - 28 libxul.so!GeckoStart [nsAndroidStartup.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 54 + 0xb] [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - rbp = 0x0000706a6ad826e0 rsp = 0x0000706a6ad826a0 [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - rip = 0x0000706a62dec275 [task 2021-09-28T12:53:57.825Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - 29 libmozglue.so!Java_org_mozilla_gecko_mozglue_GeckoLoader_nativeRun [APKOpen.cpp:aa51381f7b50b95e658ff04c5a2136b0bc75cb66 : 386 + 0x2f] [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - rbp = 0x0000706a6ad82770 rsp = 0x0000706a6ad826f0 [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - rip = 0x0000706a6a15050d [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - 30 base.odex + 0xcd40bf [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - rbp = 0x0000706a6ad82868 rsp = 0x0000706a6ad82780 [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - rip = 0x0000706a6bb5d0bf [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - 31 0x706a6ad82c10 [task 2021-09-28T12:53:57.826Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82878 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rip = 0x0000706a6ad82c10 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - Found by: previous frame's frame pointer [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - 32 dalvik-LinearAlloc (deleted) + 0x194b0 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82880 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rip = 0x0000706a827444b0 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - 33 base.odex + 0x928218 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82898 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rip = 0x0000706a6b7b1218 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - 34 libart.so + 0x14546d [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad828b0 [task 2021-09-28T12:53:57.827Z] 12:53:57 INFO - rip = 0x0000706a83a5146d [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - 35 dalvik-main space (deleted) + 0x775400 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad828d8 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rip = 0x0000000013375400 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - 36 base.odex + 0x77fb78 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad828e0 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rip = 0x0000706a6b608b78 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - 37 dalvik-LinearAlloc (deleted) + 0x194b0 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82920 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rip = 0x0000706a827444b0 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - 38 base.odex + 0x75d328 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82938 [task 2021-09-28T12:53:57.828Z] 12:53:57 INFO - rip = 0x0000706a6b5e6328 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - 39 libart.so + 0x310b80 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82940 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rip = 0x0000706a83c1cb80 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - 40 boot.oat + 0x263b8 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82958 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rip = 0x0000000070b8a3b8 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - 41 libart.so + 0x310b80 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82960 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rip = 0x0000706a83c1cb80 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - 42 boot.oat + 0x263b8 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82968 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - rip = 0x0000000070b8a3b8 [task 2021-09-28T12:53:57.829Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - 43 libart.so + 0x310b80 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82970 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rip = 0x0000706a83c1cb80 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - 44 libart.so + 0x1ed2ae [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad829a0 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rip = 0x0000706a83af92ae [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - 45 libart.so + 0x30a402 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad829f0 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rip = 0x0000706a83c16402 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - 46 dalvik-LinearAlloc (deleted) + 0x194b0 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82a00 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - rip = 0x0000706a827444b0 [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.830Z] 12:53:57 INFO - 47 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b00 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - 48 dalvik-LinearAlloc (deleted) + 0x194b0 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b08 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rip = 0x0000706a827444b0 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - 49 base.odex + 0x7bba18 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b10 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rip = 0x0000706a6b644a18 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - 50 libart.so + 0x619bdb [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b20 [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - rip = 0x0000706a83f25bdb [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.831Z] 12:53:57 INFO - 51 dalvik-main space (deleted) + 0x97de50 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b28 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rip = 0x000000001357de50 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - 52 system@[email protected] + 0x2deba0 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b38 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rip = 0x000000007079bba0 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - 53 base.odex + 0x7bb9e6 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b40 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rip = 0x0000706a6b6449e6 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - 54 base.odex + 0x7bba18 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82b98 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rip = 0x0000706a6b644a18 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - 55 libart.so + 0x125200 [task 2021-09-28T12:53:57.832Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82ba8 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rip = 0x0000706a83a31200 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - 56 libart.so + 0x128d9a [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82bc0 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rip = 0x0000706a83a34d9a [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - 57 base.odex + 0x7bb768 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82bd0 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rip = 0x0000706a6b644768 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - 58 libart.so + 0x2e105a [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82c00 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rip = 0x0000706a83bed05a [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - 59 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.833Z] 12:53:57 INFO - rbp = 0x0000706a6ad82c10 rsp = 0x0000706a6ad82c10 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - 60 libart.so + 0x2e725a [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c20 rip = 0x0000706a83bf325a [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - 61 base.odex + 0x7bb768 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c38 rip = 0x0000706a6b644768 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - 62 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c48 rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - 63 libart.so + 0x60a461 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c60 rip = 0x0000706a83f16461 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - 64 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c70 rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.834Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - 65 base.odex + 0x7bba18 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c80 rip = 0x0000706a6b644a18 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - 66 base.odex + 0x7bb768 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - rsp = 0x0000706a6ad82c88 rip = 0x0000706a6b644768 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - 67 dalvik-main space (deleted) + 0xbd137d [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - rsp = 0x0000706a6ad82ca0 rip = 0x00000000137d137d [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - 68 dalvik-main space (deleted) + 0x912b50 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - rsp = 0x0000706a6ad82cc0 rip = 0x0000000013512b50 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - 69 dalvik-main space (deleted) + 0x2918b0 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - rsp = 0x0000706a6ad82cf0 rip = 0x0000000012e918b0 [task 2021-09-28T12:53:57.835Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 70 dalvik-main space (deleted) + 0x912b50 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - rsp = 0x0000706a6ad82d10 rip = 0x0000000013512b50 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 71 dalvik-main space (deleted) + 0x582ec0 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - rsp = 0x0000706a6ad82d20 rip = 0x0000000013182ec0 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 72 base.odex + 0x927793 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - rsp = 0x0000706a6ad82d78 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 73 libart.so + 0x6ebe60 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - rsp = 0x0000706a6ad82de8 rip = 0x0000706a83ff7e60 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 74 base.odex + 0x927793 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - rsp = 0x0000706a6ad82df8 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.836Z] 12:53:57 INFO - 75 base.odex + 0x927793 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82e68 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - 76 libart.so + 0x141cdd [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82e80 rip = 0x0000706a83a4dcdd [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - 77 system@[email protected] + 0x50f300 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82e88 rip = 0x00000000701db300 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - 78 libart.so + 0x139090 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82eb8 rip = 0x0000706a83a45090 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - 79 dalvik-main space (deleted) + 0x2918b0 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f18 rip = 0x0000000012e918b0 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - 80 base.odex + 0x927793 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f28 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.837Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 81 base.odex + 0x927793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f40 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 82 libart.so + 0x137235 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f50 rip = 0x0000706a83a43235 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 83 base.odex + 0x927793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f78 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 84 base.odex + 0x927793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad82f98 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 85 libart.so + 0x145448 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad82fb0 rip = 0x0000706a83a51448 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 86 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad83010 rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - 87 base.odex + 0x927793 [task 2021-09-28T12:53:57.838Z] 12:53:57 INFO - rsp = 0x0000706a6ad83028 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 88 libart.so + 0x4d60e8 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad83040 rip = 0x0000706a83de20e8 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 89 libart.so + 0x37fe53 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad83050 rip = 0x0000706a83c8be53 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 90 libart.so + 0x502339 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad83070 rip = 0x0000706a83e0e339 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 91 libart.so + 0x281f8c [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad83090 rip = 0x0000706a83b8df8c [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 92 libart.so + 0x63493b [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad830b8 rip = 0x0000706a83f4093b [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 93 libart.so + 0x1680e5 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad830c0 rip = 0x0000706a83a740e5 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - 94 libart.so + 0x5151b0 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - rsp = 0x0000706a6ad83110 rip = 0x0000706a83e211b0 [task 2021-09-28T12:53:57.839Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 95 libart.so + 0x4f966a [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83130 rip = 0x0000706a83e0566a [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 96 libart.so + 0x2caa11 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83170 rip = 0x0000706a83bd6a11 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 97 libart.so + 0x383cf6 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad831c0 rip = 0x0000706a83c8fcf6 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 98 libart.so + 0x5022bf [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83220 rip = 0x0000706a83e0e2bf [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 99 dalvik-main space (deleted) + 0x2918b0 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83248 rip = 0x0000000012e918b0 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 100 dalvik-LinearAlloc (deleted) + 0xb438 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83258 rip = 0x0000706a82736438 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 101 base.odex + 0x927793 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - rsp = 0x0000706a6ad83260 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.840Z] 12:53:57 INFO - 102 libart.so + 0x4d76ea [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad83270 rip = 0x0000706a83de36ea [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 103 base.odex + 0x927793 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad83298 rip = 0x0000706a6b7b0793 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 104 libart.so + 0x6345ed [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad832c0 rip = 0x0000706a83f405ed [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 105 libc.so + 0x9e0f9 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad832d0 rip = 0x0000706a87d140f9 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 106 libart.so + 0x615d13 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad832e0 rip = 0x0000706a83f21d13 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 107 libart.so + 0x6345ed [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad83308 rip = 0x0000706a83f405ed [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 108 system@[email protected] + 0x4f4d40 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad83318 rip = 0x00000000701c0d40 [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - 109 libart.so + 0x4f8eee [task 2021-09-28T12:53:57.841Z] 12:53:57 INFO - rsp = 0x0000706a6ad83330 rip = 0x0000706a83e04eee [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 110 libc.so + 0x89600 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad833b0 rip = 0x0000706a87cff600 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 111 libart.so + 0x4f8980 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad833d0 rip = 0x0000706a83e04980 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 112 libc.so + 0x89772 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad833f0 rip = 0x0000706a87cff772 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 113 libart.so + 0x4f8980 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad83428 rip = 0x0000706a83e04980 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 114 libc.so + 0x299ec [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad83440 rip = 0x0000706a87c9f9ec [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 115 libc.so + 0x896c0 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad83448 rip = 0x0000706a87cff6c0 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - 116 libc.so + 0x1ca66 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - rsp = 0x0000706a6ad83450 rip = 0x0000706a87c92a66 [task 2021-09-28T12:53:57.842Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.843Z] 12:53:57 INFO - 117 libart.so + 0x4f8980 [task 2021-09-28T12:53:57.843Z] 12:53:57 INFO - rsp = 0x0000706a6ad834b8 rip = 0x0000706a83e04980 [task 2021-09-28T12:53:57.843Z] 12:53:57 INFO - Found by: stack scanning [task 2021-09-28T12:53:57.843Z] 12:53:57 INFO - Thread 0 tid 3460 ```
1,732,961
15,589,013
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:92.0) Gecko/20100101 Firefox/92.0 Steps to reproduce: Add the following settings in /etc/firefox/policies/policies.json: { "policies": { "DNSOverHTTPS": { "Enabled": true, "ProviderURL": "https://family.cloudflare-dns.com/dns-query", "Locked": true, "ExcludedDomains": [""] } } } OS: Ubuntu 20.04, up-to-date Actual results: The DNS server provided is not actually added. In certain conditions, it can be added visually, but won't actually be in effect. The DNS used will be the last one which has been manually set up. Expected results: To test that this DNS is working, both those URLs should be blocked: http://phishing.testcategory.com/ http://nudity.testcategory.com/
1,733,696
15,593,717
null
1,733,958
15,597,244
Perfherder has detected a browsertime performance regression from push [ab1b0594e2a8fd602241548d1c0cd631b5820fdb](https://hg.mozilla.org/integration/autoland/pushloghtml?changeset=ab1b0594e2a8fd602241548d1c0cd631b5820fdb). 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)**| |--|--|--|--|--| | 8% | [fandom](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#fandom-d) ContentfulSpeedIndex | linux1804-64-shippable-qr | warm webrender | 260.83 -> 281.17 | | 6% | [fandom](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#fandom-d) SpeedIndex | linux1804-64-shippable-qr | warm webrender | 337.42 -> 357.67 | | 6% | [fandom](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#fandom-d) SpeedIndex | linux1804-64-shippable-qr | warm webrender | 336.62 -> 356.50 | | 3% | [wasm-godot](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#wasm-godot-b) | macosx1015-64-shippable-qr | webrender | 522.89 -> 536.36 | ### Improvements: | **Ratio** | **Test** | **Platform** | **Options** | **Absolute values (old vs new)**| |--|--|--|--|--| | 4% | [wikipedia](https://firefox-source-docs.mozilla.org/testing/perfdocs/raptor.html#wikipedia-d) fnbpaint | macosx1014-64-shippable-qr | warm webrender | 961.08 -> 921.54 | Details of the alert can be found in the [alert summary](https://treeherder.mozilla.org/perfherder/alerts?id=31573), 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) will be backed out** in accordance with our [regression policy](https://www.mozilla.org/en-US/about/governance/policies/regressions/). For more information on performance sheriffing please see our [FAQ](https://wiki.mozilla.org/TestEngineering/Performance/FAQ).
1,734,127
15,598,588
Created attachment 9244332 Extra characters added in the theme name.gif **[Affected Versions]:** - Firefox Nightly 95.0a1 (Build ID: 20211004215121) - Firefox Beta 94.0b1 (Build ID: 20211004193346) **[Affected Platforms]:** - Windows 10 x64 - macOS 10.15.7 - Linux Mint 20 **[Steps to reproduce]:** 1. Open the latest Nightly/Beta build. 2. Open a New Tab page and navigate to the "about:welcome" page. 3. Navigate through Onboarding until the "Life in color" slide is displayed. 4. Click on the first colorway (default themes). 5. Observe the name of the theme. **[Expected results]:** - The name is correctly displayed. **[Actual results]:** - There are extra characters added in the theme name. **[Notes]:** - The issue is reproducible for all colorways. The issue is more visible for the first colorway (default themes), since there are multiple characters added in the name and the buttons are pushed out from the circle area. - The issue is not reproducible for the Upgrade Spotlight modal. - Attached is a screen recording of the issue.
1,724,690
15,520,438
Created attachment 9235381 Bildschirmfoto 2021-08-09 um 14.18.06.png [Summarizing up to comment 18 -dveditz] This user had a legacy cookie permission in the site permissions database that broke the "manage exceptions" dialog for cookies -- it simply wouldn't appear. This was because one of their cookies permissions, apparently added in 2017, had a capability of `9` which was formerly used for ACCESS_ALLOW_FIRST_PARTY_ONLY. As a result the localization routine threw an exception (see comment 5) because it only expected values `0`, `1`, and `2`. This exception was not caught which nerfed the dialog. Folks with old profiles, especially those who actively manage their cookies, might have any of several different obsolete values saved in the site permissions database. That should not break the management dialogs! It looks like the network code ignores cookie permission entries with unexpected values so the simple solution would be to likewise simply ignore those entries and don't display them in the dialog. Or you could proactively delete invalid entries. ===== original bug entry: ====== User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:90.0) Gecko/20100101 Firefox/90.0 Steps to reproduce: I went to about:preferences#privacy and clicked the button "Manage Exceptions" in the Cookies section Actual results: Nothing Expected results: A dialog window should have opened that lists all Cookie Exceptions. I use this feature relatively frequently and it never had any issues. But now when I click the button, nothing happend. All the other buttons on the page work normally. I also notice that after clicking the "Manage Exceptions" button, I can't scroll the page any more. I have to navigate to some other page and then back to make it work again.
1,724,850
15,521,468
From github: https://github.com/mozilla-mobile/fenix/issues/19619. > ## Steps to reproduce > - go to https://www.456bereastreet.com/lab/html5-input-types/ > - tap in the "Week" input field and close the first prompt which is correctly shown alone, without the keyboard > - tap in the "Week" input field again. > > ### Expected behavior > A prompt is shown allowing to enter a specific week. > > ### Actual behavior > Both a date prompt and the keyboard underneath (unable to interact with) are shown. > A similar situation happens with the "Month" input field but in that case the keyboard opens and is immediately closed. > > > https://user-images.githubusercontent.com/11428869/119326353-7c309700-bc8a-11eb-8c9b-0807c2ec3e98.mp4 > > > > > > Change performed by the [Move to Bugzilla add-on](https://addons.mozilla.org/en-US/firefox/addon/move-to-bugzilla/).
1,725,026
15,522,727
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0 Steps to reproduce: Activate "Enable HTTPS-Only Mode in all windows" in privacy settings. I'm not using Private Browsing mode. This also happens with a fresh profile. Behavior with Firefox 91.0 1.) Visit https://www.msi.com/Motherboard/MPG-Z590-CARBON-EK-X 2.) Click on "Support" in the upper right corner 3.) Firefox shows a warning that the website does not use HTTPS 1.) Visit https://www.nvidia.com/Download/index.aspx?lang=en-us 2.) Select any driver (the preselected options are sufficient) 3.) Firefox shows a warning that the website does not use HTTPS Behavior with Firefox 90.0.2: 1.) Visit https://www.msi.com/Motherboard/MPG-Z590-CARBON-EK-X 2.) Click on "Support" in the upper right corner 3.) The website with the latest driver is displayed without warning 1.) Visit https://www.nvidia.com/Download/index.aspx?lang=en-us 2.) Select any driver (the preselected options are sufficient) 3.) The website with the latest driver is displayed without warning If "dom.security.https_only_mode_break_upgrade_downgrade_endless_loop" is set to "false" in about:config, this warning no longer occurs in Firefox 91.0. Actual results: Since Firefox 91, there is a warning on both websites that HTTPS is not available. Expected results: There should be no warning. If you click on "Continue to HTTP Site", you will be redirected to the corresponding website with HTTPS. If you change the URL in the address bar on the warning page from "http://" to "https://", the website also loads without problems. These warnings exist only since Firefox 91.0. In the previous version this problem did not exist and obviously a https variant exists.
1,725,146
15,523,337
Created attachment 9235771 macOS_adress.png *Affected versions* * 91.0 (20210804193234) * 92.0b2 (20210810185524) * 93.0a1 (20210810213316) *Affected platforms* * macOS 10.13 *Preconditions* * Firefox Dark theme * Blue Highlight color inside System Preferences -> General *Steps to reproduce* 1. Open Firefox, write something in the address bar, and highlight it. *Expected result* * Text inside the Address bar is displayed as expected. *Actual result* * Text inside the Address bar is barely visible. *Regression range* * Last good revision: b8b54a4990d7e778b82909a871e92031a4bc649d First bad revision: 4b3932f9c4f5d9572da2f0232375474133191500 Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=b8b54a4990d7e778b82909a871e92031a4bc649d&tochange=4b3932f9c4f5d9572da2f0232375474133191500 *Notes* * Attached a screenshot. * I cannot reproduce the issue on macOS 10.14 or 10.15 with the same machine and external monitor.
1,725,408
15,525,137
Filled on request (bug [1721146#c18](https://bugzilla.mozilla.org/show_bug.cgi?id=1721146#c18)) *Affected versions* * 92.0b2 (20210810185524) * 93.0a1 (20210812092607) *Affected platforms* * macOS 10.15 * Windows 10x64 *Preconditions* * `browser.search.region:US` / `dom.block_download_insecure:true` *Steps to reproduce* 1. Open Firefox and Private Window. 2. Go to https://www.thinkbroadband.com/download and download a random item. 3. After the download is completed press on the Go to Download page context menu from the downloads panel. *Expected result* * Link is open in a new tab. *Actual result* * Nothing happens.
1,725,493
15,525,786
We update the coalesced touchmove event when the touch is "changed", https://searchfox.org/mozilla-central/rev/8f08c21f093be1c1c42438697f8bca67af94fc77/dom/ipc/CoalescedTouchData.cpp#31-35. But the "changed" information isn't propagated through IPC, https://searchfox.org/mozilla-central/rev/8f08c21f093be1c1c42438697f8bca67af94fc77/widget/nsGUIEventIPC.h#336-356
1,725,638
15,526,590
Spun off from bug 1720650 with same steps to reproduce, basically, zoom in the browser will crash the tab with high frequency - sometimes within seconds, sometimes within minutes. For more information and a crash dump, see bug 1720650 comment 14. Mostly these crashes do not leave crash dumps, but the times when I see backtraces in the console they look like the one reported there. (Point of note, it is not possible to build Firefox in debug-noopt mode on the M1, the build dies with a linker error because the distance between a jump and its target is too great. This makes debugging this problem more complex.)
1,725,800
15,527,622
Created attachment 9236308 hkepc https redirect.png +++ This bug was initially created as a clone of Bug #1725026 +++ The issue below is similar to bug 1725026 but that does not fix my issue. User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0 Build ID: 20210814094200 ### Steps to reproduce 1. Enable HTTPS-Only Mode in all windows. Make sure `dom.security.https_only_mode_break_upgrade_downgrade_endless_loop` is true. 2. Open https://www.hkepc.com/ (a Chinese tech forum) 3. Click on 討論區, which locates at the end of the top bar which writes "主頁 專題報導 新聞中心 新品快遞 超頻領域 流動數碼 生活娛樂 會員消息 討論區". (See the attached screenshot if you cannot find it.) ### Actual result HTTPS-Only Mode Alert is triggered. Clicking `Continue to HTTP Site` will load https://www.hkepc.com/forum/. ### Expected result No alert is triggered. ### Notes 1. The link at 討論區 points to https://www.hkepc.com/forum but the final destination is https://www.hkepc.com/forum/ (with a trailing slash). 2. Left/Middle/Right click at the link -> `Open Link in New YYY` all trigger the alert. 3. Unlike bug 1725026 comment 2, copying https://www.hkepc.com/forum -> open a blank new tab -> paste link *will also trigger the alert*. ### Workarounds 1. Set `dom.security.https_only_mode_break_upgrade_downgrade_endless_loop` to `false`. Or 2. Disable HTTPS-Only Mode. (it will still reach https://www.hkepc.com/forum/.) ### Regression Same with bug 1725026, this is regressed by bug 1716069.
1,725,810
15,527,658
User Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Steps to reproduce: I already had the same issue after upgrading from v80.0.1 to v81.0 and the issue was fixed with v83.0. See https://bugzilla.mozilla.org/show_bug.cgi?id=1667464 (expecially comment 18). I used the following page for testing: https://webcammictest.com/de/check-mic.html Steps to reproduce: I updated my Firefox installation from the version v90.0.2 to v91.0 The microphone of my headset "Sony WH-XB900N" stopped working with web-meeting software like "3cx" and "WebEx" during a call or web-meeting. It does not matter if I grant access to the microphone temporarily or permanently. The issue persists even with not plugins or extensions involved and a new profile. Name: Firefox Version: 91.0 Build ID: 20210804193234 Distribution ID: mint User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0 OS: Linux 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 Version that worked: Firefox 90.0.2 (no extensions installed, new profile) Version that has the problem: Firefox 91.0 (no extensions installed, new profile) Install Firefox 90.0.2 Pair/connect the Headset to the computer Go to a web-meeting site and grant access to the microphone of the headset Make a call. Test if speaker and especially microphone is functional (it should be) -> speaker works, microphone works! Update Firefox to 91.0 Reboot Pair/connect the Headset to the computer Go to a web-meeting site and grant access to the microphone of the headset Make a call. Test if speaker and especially microphone is functional -> speaker works, microphone does not work (seems to be always muted)! Downgrade again Firefox to 90.0.2 Reboot Pair/connect the Headset to the computer Go to a web-meeting site and grant access to the microphone of the headset Make a call. Test if speaker and especially microphone is functional -> speaker works, microphone works again! Logfile from mozregression: app_name: firefox build_date: 2021-06-10 07:55:03.350000 build_file: /home/cschmidt/.mozilla/mozregression/persist/0c91f4b43462--autoland--target.tar.bz2 build_type: integration build_url: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TIQ1EdbQSF-HK1x00Lp2Pw/runs/0/artifacts/public%2Fbuild%2Ftarget.tar.bz2 changeset: 0c91f4b43462413cc99c2b580052742d22eba7b1 pushlog_url: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=0c91f4b43462413cc99c2b580052742d22eba7b1&tochange=41792e6152e6b5e8ad472e6cc21ce07352447bb8 repo_name: autoland repo_url: https://hg.mozilla.org/integration/autoland task_id: TIQ1EdbQSF-HK1x00Lp2Pw [...] 2021-08-14T18:34:44.811000: INFO : Narrowed integration regression window from [fe803065, f0c73621] (3 builds) to [3793e0a6, f0c73621] (2 builds) (~1 steps left) 2021-08-14T18:34:44.816000: DEBUG : Starting merge handling... 2021-08-14T18:34:44.816000: DEBUG : Using url: https://hg.mozilla.org/integration/autoland/json-pushes?changeset=f0c736218ab6592dbd8f973af162fbac414266fd&full=1 2021-08-14T18:34:44.816000: DEBUG : redo: attempt 1/3 2021-08-14T18:34:44.816000: DEBUG : redo: retry: calling _default_get with args: ('https://hg.mozilla.org/integration/autoland/json-pushes?changeset=f0c736218ab6592dbd8f973af162fbac414266fd&full=1',), kwargs: {}, attempt #1 2021-08-14T18:34:44.819000: DEBUG : urllib3.connectionpool: Resetting dropped connection: hg.mozilla.org 2021-08-14T18:34:45.926000: DEBUG : urllib3.connectionpool: https://hg.mozilla.org:443 "GET /integration/autoland/json-pushes?changeset=f0c736218ab6592dbd8f973af162fbac414266fd&full=1 HTTP/1.1" 200 None 2021-08-14T18:34:45.981000: DEBUG : Found commit message: Bug 1702646 - Add an util-function to append interleaved buffer in AudioSegment r=padenot Add an utility function named AppendFromInterleavedBuffer in AudioSegment to append data from the given interleaved buffer. This function does the same job as what AudioInputProcessing::InsertInGraph and NativeInputTrack::ProcessInput were used to do. As a result, these two functions can be eliminated or simplified. Depends on D116673 Differential Revision: https://phabricator.services.mozilla.com/D116674 2021-08-14T18:34:45.981000: DEBUG : Did not find a branch, checking all integration branches 2021-08-14T18:34:45.985000: INFO : The bisection is done. 2021-08-14T18:34:45.987000: INFO : Stopped Actual results: Upgrade of Firefox 90.0.2 to Firefox 91.0 broke usability of the bluetooth microphone. Lots of noises and voice is not recognizable. Expected results: Bluetooth microphone of the headset should still work with Firefox 91.0 after upgrading from Firefox 90.0.2
1,726,524
15,534,439
Created attachment 9236981 Screenshot 2021-08-19 214152.png User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0 Steps to reproduce: Go to https://jelvix.com/blog/software-development-plan Click on reader view Click on narrator Actual results: Narrator options pop up with controls clicking play makes the box flicker for a bit nothing happens Expected results: Feature should allow user to narrate the rendered webpage in reader view using Text to Speech
1,726,532
15,534,490
If I have the string "A nice picxnic in the park!", and do a spell check and press "replace all" for the "picxnic" spell error, the line is corrected to "A nice picnicpicxnic in the park!'... the old spelling error is not removed.
1,726,535
15,534,514
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:92.0) Gecko/20100101 Firefox/92.0 Steps to reproduce: Download and Run Japanese version of Firefox for macOS https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=osx&lang=ja-JP-mac . Actual results: UI Texts are written in English. other locales (I've tested with German) and/or other OS (I've tested with Windows x64 MSI) are fine. only ja-JP-mac is the problem. Expected results: UI Texts are written in Japanese, not English.
1,729,825
15,561,591
Created attachment 9240180 131986533-441bd0fa-aa76-4023-b86b-366bb8b6ef24.png This was reported in https://github.com/webcompat/web-bugs/issues/85600 To reproduce: 1. Open https://www.aliexpress.com/, hover on "Account" menu element and click on "Sign in" (or Register to create an account) 2. Once prompted, save email and password 3. Click on "Sign out" under the "Account", which should redirect back to the main page 4. Attempt to login again Expected: Email is prefilled Actual: Email field is empty This appears to be a regression: ``` Was this integration build good, bad, or broken? (type 'good', 'bad', 'skip', 'retry', 'back' or 'exit' and press Enter): good 240:58.82 INFO: Narrowed integration regression window from [4c48537b, 71ef95dc] (3 builds) to [5494e55d, 71ef95dc] (2 builds) (~1 steps left) 240:58.82 INFO: No more integration revisions, bisection finished. 240:58.82 INFO: Last good revision: 5494e55dcb1b8da26f5cf83a6fd78be22381e22a 240:58.82 INFO: First bad revision: 71ef95dc36a89dd2563c570b36eb7e94ffede541 240:58.82 INFO: Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=5494e55dcb1b8da26f5cf83a6fd78be22381e22a&tochange=71ef95dc36a89dd2563c570b36eb7e94ffede541 ```
1,729,877
15,561,946
Created attachment 9240248 0a18b29d-dd86-45cb-a99d-d1a3a38505ed.pdf +++ This bug was initially created as a clone of Bug #1723734 +++ **Note** * When the user loads a specific PDF file, selects some checkboxes, and then saves it, reopens it, deselects the previously made selections and goes into print preview, he will notice that the previously selected and saved, then currently deselected checkboxes are now incorrectly displayed as selected. **Affected versions** * Beta v93.0b2 **Affected platforms** * all **Steps to reproduce** 1. Launch browser. 2. Load the attached PDF file. 3. Make some selections of the checkboxes on sections 3 subsection 19 (page 1). 4. Save the PDF file. 5. Reopen it. 6. Deselect the checkboxes. 7. Go into Print preview (CTRL+P). **Expected result** * The checkboxes appear as deselected (correctly). **Actual result** * The checkboxes appear as selected (incorrectly) **Regression range** * Not a regression, but an implementation flaw. * Behavior was uncovered after the fix of bug 1723734. **Additional information** * A workaround is to save the document with the deselections before printing it. * Considering there's a workaround, I'm setting the S3 seerity. Could also go with S2...
1,729,930
15,562,460
Created attachment 9240323 autofill-hang.mp4 User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:93.0) Gecko/20100101 Firefox/93.0 Steps to reproduce: Opened a webpage with a signup or sign in form. Firefox already remembers the credentials to login. Actual results: When the input field to enter credentials comes into focus, the browser hangs for 5-6 seconds. later a dropdown with list of available credentials opens below the input field. Expected results: as soon as the input field comes into focus, a dropdown with list of available credentials should popup below the input field almost immediately.
1,730,194
15,564,137
Windows 10 introduced Cloud Clipboard and Clipboard History, when app uses classic clipboard API the information goes to the local clipboard and to the cloud/history as well. This is typically not clear or known to user, so they might not understand they are copying their sensitive information to the cloud and history. There is no known way to disable these features for the whole app, but if we add 3 clipboard formats listed here https://docs.microsoft.com/en-us/windows/win32/dataxchg/clipboard-formats#cloud-clipboard-and-clipboard-history-formats we will prevent sensitive data from going to the unexpected places.
1,730,434
15,565,553
Created attachment 9240831 firefox-report.pdf User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:92.0) Gecko/20100101 Firefox/92.0 Steps to reproduce: We identified a way to abuse WebAuthn/CTAP authentication that allows us to execute a timing attack which might lead to a serious privacy leak (e.g. account linking). The core of the issue are silent authentication calls (via CTAP) to authenticators. Silent authenticators are triggered when the allowCredentials list contains multiple key handles (credIDs). We tested a scenario where we compared the time response of invalid key handles (taken from different token) and key handles from the correct token but with a bad origin. The time difference is measurable and it increases with a bigger allowCredentials list (Please see recordings). To reproduce the issue a specially crafted Relying Party is required (example in our source code) https://drive.google.com/drive/folders/1pRGd8tZFFwOqF0iuDFaq1KymTmfHEWAM?usp=sharing Actual results: Time difference in execution of silent authentications. We identified two existing FIDO2 hardware authenticators (HyperFido Titanium Pro and Feitian 26K) that are vulnerable to this attack. For example, for HyperFido token time difference is about 7s for 500 key handles in allowCredentials list. Expected results: We expected a defence mechanism preventing enumeration of allowCredential list. Proposed solution: As firmware update on hardware authenticators is not possible, thus we propose to introduce limits on the number of allowed key handles in allowCredentials list on client side (Firefox). Example of such a mechanism can be found in Windows WebAuthn API.
1,730,580
15,568,474
Bug 1728430 moved the Firefox Suggest prefs from the Search pane to the Privacy pane, but the Customize button still opens the Search pane. Per spec in the Jira, the Customize button: > opens Preferences in new tab -> > highlights Address bar -- Firefox Suggest under Privacy & Security
1,730,691
15,569,262
Created attachment 9241125 links not selectable.gif **[Affected Versions]:** - FIrefox Beta 93.0b4 (Build ID: 20210912185727) - Firefox Nightly 94.0a1 (Build ID: 20210913213224) **[Affected Platforms]:** - Windows 10 - Linux Mint 20 - macOS 11.1 **[Prerequisites]:** - Have Firefox installed and opened. - Have the following preferences set: - `browser.urlbar.quicksuggest.enabled` = `true` - `browser.urlbar.quicksuggest.scenario` = `online` - `browser.urlbar.quicksuggest.shouldShowOnboardingDialog` = ` true` - `browser.urlbar.suggest.quicksuggest` = `false` - `browser.urlbar.suggest.quicksuggest.sponsored` = `false` **[Steps to reproduce]:** 1. Restart the browser after setting prerequisite preferences. 2. Dismiss the Make Firefox default message if it is displayed to trigger the Suggestions modal. 3. Use the Tab or arrow keys to try and select “Learn more”. 4. Use the Tab or arrow keys to try and select “Not now”. **[Expected result]:** - “Learn more” and “Not now” are keyboard selectable. **[Actual result]:** - “Learn more” and “Not now” can not be selected. **[Notes]:** - There is a state where nothing seems selected, but pressing Enter will close the modal and the functionality will be as if “Allow suggestions” was chosen. - Attached is a screen recording of the issue.
1,730,702
15,569,301
Created attachment 9241132 preferences redirect.gif **[Affected versions]:** - Firefox Beta 93.0b4 (Build ID: 20210912185727) - Firefox Nightly 94.0a1 (Build ID: 20210913213224) **[Affected Platforms]:** - Windows 10 x64; - macOS 10.15.7; - Linux Ubuntu 20.04 x64; **[Prerequisites]:** - Have the Session restore enabled. - Have the “about:preferences” page opened, with other than Search pane displayed (e.g. “Sync”). **[Steps to reproduce]:** 1. Open the Firefox browser with the profile from prerequisites. 2. Set the following preferences: `browser.urlbar.quicksuggest.enabled: true` `browser.urlbar.quicksuggest.scenario: online` `browser.urlbar.quicksuggest.shouldShowOnboardingDialog: true` `browser.urlbar.suggest.quicksuggest: false` `browser.urlbar.suggest.quicksuggest.sponsored: false` 3. Restart the browser. 4. Click the “Customize in settings” button from the Onboarding modal. 5. Observe the behavior. **[Expected result]:** - The user is redirected to the already opened “about:preferences” page, with the Search pane in focus (Privacy pane after bug 1730580 lands). **[Actual result]:** - The user is redirected to the already opened “about:preferences” page, with the Sync pane in focus. **[Notes]:** - The following errors are displayed in the Browser Console when clicking the “Customize in settings” button from the Onboarding modal: **Nightly** `[bug 1345098] Lazy browser prematurely inserted via 'loadURI' property access: getter@chrome://browser/content/tabbrowser.js:2271:39 switchIfURIInWindow@chrome://browser/content/browser.js:8634:11 switchToTabHavingURI@chrome://browser/content/browser.js:8657:26 openPreferences@chrome://browser/content/utilityOverlay.js:1045:20 maybeShowOnboardingDialog@resource:///modules/UrlbarQuickSuggest.jsm:265:11 tabbrowser.js:2271:25` `TypeError: can't access property "gotoPref", browser.contentWindow is null` **Beta** `TypeError: browser.contentWindow is nullutilityOverlay.js:1064:5` - Attached is a screen recording of the issue.
1,730,876
15,570,827
Created attachment 9241331 hublot 2.gif **[Affected Versions]:** - FIrefox Beta 93.0b5 (Build ID: 20210914185637) - Firefox Nightly 94.0a1 (Build ID: 20210915092453) **[Affected Platforms]:** - Windows 10 - Linux Mint 20 - macOS 11.1 **[Prerequisites]:** - Have Firefox en-US ver 93 installed and opened. - Be in the US (or use a VPN / set “browser.search.region” to “US”) **[Steps to reproduce]:** 1. Focus the awesomebar and type a keyword (e.g. “hublot “). 2. Click the sponsored Firefox Suggest result. 3. Open a new tab and repeat steps 1 and 2. 4. Open a new tab and focus the awesomebar. 5. Type the keyword again (i.e. “hublot “) and observe the suggestions displayed. **[Expected result]:** - The sponsored suggestion is displayed when a keyword is used. **[Actual result]:** - The sponsored suggestion is displayed twice and then it is no longer displayed - only the history version is displayed. **[Notes]:** - Attached is a screen recording of the issue.
1,731,104
15,572,517
Created attachment 9241617 preferences.gif **[Affected versions]:** - Firefox Beta 93.0b5 (Build ID: 20210914185637) - Firefox Nightly 94.0a1 (Build ID: 20210916125444) **[Affected Platforms]:** - Windows 10 x64; - macOS 10.15.7; - Linux Ubuntu 20.04 x64; **[Prerequisites]:** - Have the Session restore enabled. - Have the “about:preferences” page displayed, with other than Privacy pane displayed (e.g. “Home”). - Set the region to US by running the following snippet in the Browser Console: (function(){ let home = "US"; Cu.import("resource://gre/modules/Region.jsm"); Region._setHomeRegion(home, false); console.log(`Home region is now:`, Region.home); })(); **[Steps to reproduce]:** 1. Open the Firefox browser. 2. Set the following preferences: `browser.urlbar.quicksuggest.enabled`: `true` `browser.urlbar.quicksuggest.scenario`: `online` `browser.urlbar.quicksuggest.shouldShowOnboardingDialog`: `true` `browser.urlbar.suggest.quicksuggest`: `false` `browser.urlbar.suggest.quicksuggest.sponsored`: `false` 3. Restart the browser. 4. Click the “Customize in settings” button from the Onboarding modal. 5. Observe what happens next. **[Expected result]:** - The user is redirected to the already opened “about:preferences” page, with the Privacy pane in focus, Address Bar - Firefox Suggest section is highlighted. **[Actual result]:** - The user is redirected to the already opened “about:preferences” page, with the previously selected pane in focus. **[Notes]:** - The following errors are displayed in the Browser Console when clicking the “Customize in settings” button from the Onboarding modal: **Nightly** `[bug 1345098] Lazy browser prematurely inserted via 'loadURI' property access: getter@chrome://browser/content/tabbrowser.js:2271:39 switchIfURIInWindow@chrome://browser/content/browser.js:8620:11 switchToTabHavingURI@chrome://browser/content/browser.js:8643:26 openPreferences@chrome://browser/content/utilityOverlay.js:1045:20 maybeShowOnboardingDialog@resource:///modules/UrlbarQuickSuggest.jsm:265:11` `Uncaught (in promise) TypeError: can't access property "readyState", browser.contentDocument is null openPreferences chrome://browser/content/utilityOverlay.js:1064 maybeShowOnboardingDialog resource:///modules/UrlbarQuickSuggest.jsm:265l` **Beta** `TypeError: browser.contentWindow.gotoPref is not a functionutilityOverlay.js:1064:27` - Attached is a screen recording of the issue.
1,731,210
15,573,364
**Affected versions** * Firefox 92.0 RC * Firefox 93.0b6 * Latest Nightly 94.0a1 **Affected platforms** * Ubuntu 18.04 * Windows 10 64bit * MacOS 11.5 **Steps to reproduce** 1. Start Firefox 2. Open a private window 3. Visit http://foersom.com/net/HowTo/data/OoPdfFormExample.pdf 4. Enter any data in any field 5. Refresh the page 6. Click leave page on the modal that opens **Expected result** * Page is refreshed **Actual result** * The modal appears a second time with the same message. **Regression range** * First bad: 10bc715228c379d46953ff4581d4fbf72141218d * Last good: 87c6360e23c21705b112dda28895c50d0280da75 * Pushlog: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=87c6360e23c21705b112dda28895c50d0280da75&tochange=10bc715228c379d46953ff4581d4fbf72141218d * Potential regressor: Bug 1709838: Enable HTTPS-First Mode in PBM Mode in Nightly **Suggested severity** * I added an S3 severity since it only reproduces in private window.
1,731,240
15,573,503
Created attachment 9241758 2b9908fb-aec6-4309-8f2d-383af7f372e7.pdf **Note** * When the user loads the corresponding PDF file and clicks the "www.cic.gc.ca" link from the first paragraph, he will notice that the redirect is incorrect. **Affected versions** * Beta v93.0b6 **Affected platforms** * all **Steps to reproduce** 1. Launch browser. 2. Flip the pdfjs.enableXfa to true. 3. Load the attached PDF file. 4. Click on the link from the first paragraph ("www.cic.gc.ca"). **Expected result** * The corresponding link is being opened in a new tab. **Actual result** * No redirected page is: resource://pdf.js/web/www.cic.gc.ca **Regression range** * Investigation required. Most probably not a regression. **Additional Information** * Unsire whether this should block bug 1706133 or bug 1717661.
1,731,618
15,577,652
Created attachment 9242080 Warning icon overlaps text STR: 1. Visit `about:config` with `browser.aboutConfig.showWarning = true`. 2. Reduce the window width to less than 970px. Yellow warning icon overlaps the main text. Regression window: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=3a17d14515b67aba453734857145a0099c292ce0&tochange=2d387f5532024412d849dd0306311e95a96aa3c6 Regressed by Bug 1699593.
1,731,779
15,578,997
Created attachment 9242268 test.inetloc firefox Version: 92.0 Operating System: macOS Big Sur, 11.5.2 Vladimir Metnew reported that .fileloc files on macOS can bypass download protection in 2019:https://bugzilla.mozilla.org/show_bug.cgi?id=1596668 However, .inetloc files are similar to .fileloc files and .inetloc is not in blacklist. When open a .fileloc file in firefox, firefox will warn:" 'test.fileloc' is an executable file. Executable files may contain viruses or other malicious code that could harm your computer. Use caution when opening this file. Are you sure you want to launch 'test.fileloc'? " But when open a .inetloc file in firefox there is no warning and attacker may execute arbitrary commands. I provided a test.inetloc which can open calc for test.
459,683
3,813,943
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.8.1.11) Gecko/20080118 Firefox/2.0.0.11 Build Identifier: Lightning 0.9 1.create event with attendee in Lightning 2.view invitation using attendee's Apple iCal orgs's status show as "uncertain" which should be "accepted" the event created in lightning: BEGIN:VCALENDAR PRODID:-//Mozilla.org/NONSGML Mozilla Calendar V1.1//EN VERSION:2.0 BEGIN:VTIMEZONE TZID:America/Los_Angeles X-LIC-LOCATION:America/Los_Angeles BEGIN:DAYLIGHT TZOFFSETFROM:-0800 TZOFFSETTO:-0700 TZNAME:PDT DTSTART:19700308T020000 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:-0700 TZOFFSETTO:-0800 TZNAME:PST DTSTART:19701101T020000 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 END:STANDARD END:VTIMEZONE BEGIN:VEVENT CREATED:20080922T170137Z LAST-MODIFIED:20080922T170218Z DTSTAMP:20080922T170218Z UID:a11bc712-1e27-412a-ab71-9ab555fa3d3c SUMMARY:test from lighting ORGANIZER;RSVP=TRUE;PARTSTAT=ACCEPTED;ROLE=CHAIR:mailto: [email protected] ATTENDEE;RSVP=TRUE;PARTSTAT=NEEDS-ACTION;ROLE=REQ-PARTICIPANT:mailto: [email protected] DTSTART;TZID=America/Los_Angeles:20080922T110000 DTEND;TZID=America/Los_Angeles:20080922T120000 LOCATION:lighting X-MOZ-SEND-INVITATIONS:TRUE X-MOZ-GENERATION:1 END:VEVENT END:VCALENDAR Reproducible: Always Steps to Reproduce: 1.Enable scheduling on Lightning 2.Invite a user to an event 3.View invitation as attendee using another client. Actual Results: Organizer shows up as undecided. Expected Results: Organizer should be a confirmed attendee for the event. Add the Organizer as attendee and change partstat to confirmed.
1,413,307
12,806,369
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 Steps to reproduce: Using VoiceOver, when focusing on a label or the input of a custom control, clicks (control + option + space) aren't recognized. example forms: https://www.w3.org/WAI/tutorials/forms/custom-controls/#a-star-rating Actual results: the click event is not registered, so nothing happens. Expected results: the click event should be recognized and the input should toggle checked.
1,396,732
12,628,545
Created attachment 8904439 video.png Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0 Build ID: 20170904220027 [Affected versions]: Nightly 57.0a1, Beta 56.0b8 [Affected platforms]: Windows 10 x 64, Mac OS X 10.12 [Steps to reproduce]: 1.Launch Nightly 57.0a1 with a new profile 2.Go to https://vimeo.com/231359473 3.Scroll down 4.Click "Enter full screen" button on the video located at left top corner [Expected result]: Video should be opened in full-screen mode without issues [Actual result]: Video is truncated in full-screen mode
1,398,531
12,644,093
To my eyes, the zoom indicator in the hamburger menu feels a little bulky and eye-catching. It is smaller and brighter on the mock-up: https://mozilla.invisionapp.com/share/ZKBC94BPQ#/screens/230516723
1,399,747
12,664,572
Created attachment 8907962 the font size.png This is a follow up from https://bugzilla.mozilla.org/show_bug.cgi?id=1380955#c14 [Affected versions]: Nightly 57.0a1(2017-09-13) [Affected platforms]: Tested on Mac OS [Steps to reproduce]: 1. Go to Customize 2. Compare the font-size from Themes and from Density [Expected result]: The font-size should be the same. [Actual result]: The font size is not the same, for example, the "N" from Normal has 11px and the "D" from Default has 10px have different px size. See the attached print screen.
1,403,781
12,708,679
Created attachment 8913004 Not aligned.PNG User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:56.0) Gecko/20100101 Firefox/56.0 Build ID: 20170914024831 Steps to reproduce: 1) Move / remove all icons and spacers from the left (on LTR system) of the address bar. 2) Start typing into the address bar. Actual results: Suggestions are not aligned with the identity box. See attachment.
1,311,789
11,802,011
User Agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0 Build ID: 20161020030211 Steps to reproduce: In Firefox 52, open the Developer Tools. Select the Options tab. Look above the alternatives 'Light', 'Dark', and 'Firebug'. Actual results: The legend is missing. Expected results: The legend should be present.
1,334,404
12,015,534
[Note] This is a follow-up bug for Bug 1308296 [Affected versions]: Firefox 53.0a2 (2017-01-26) Firefox 54.0a1 (2017-01-26) [Affected platforms]: Windows 10 64-bit Ubuntu 16.04 32-bit [Steps to reproduce]: 1.Launch Firefox with clean profile. 2.Create extensions.webextPermissionPrompts and set it to true. 3.Restart the browser. 4.Navigate to https://addons.mozilla.org/en-US/firefox/addon/no-google-link-rewrite-webexts/?src=search 5.Install the webextension. [Expected Results]: Replace the second [name of add-on] from the confirmation pop-up with [your extension] (as is specified in mock-ups https://www.figma.com/file/HrLiKUwoLQZsIUIVBKM8Wnnu/Install-Flow-showing-Permissions) or with [your add-on] (as Scott mentioned in https://bugzilla.mozilla.org/show_bug.cgi?id=1308296#c17 )
1,389,167
12,554,918
[Tracking Requested - why for this release]: regression Reproducible: always Steps To Reproduce: 1. Enter customize mode 2. Enable Bookmarks Toolbar 3. Optionally, remove "Bookmarks Toolbar Item" Actual Results: There is no bottom border or background color for the toolbar. So not clear customizable region where additional toolbutton can drop. Especially, after step3, I can not recognize the tool bar any longer. Expected Results: Provide border or background color for the toolbar at lest.
1,379,357
12,456,046
It is annoying that +/- button position shifts when changing from 100% to 90% and vice versa. Reproducible: always Steps to reproduce: 1. Open Hamburger menu 2. When current zoom>=100%, Repeatedly click [-] button to zoom out, (easy to reproduce, click most left side of the button) Actual Results: Menu close suddenly, when zoom 100% to 90% So, I can not zoom out with repeated clicks Expected Results: Menu should not close. And continuing I can zoom out with repeated clicks Another steps to reproduce: 1. Place Zoom widget on toolbar 2. when current zoom<100%, Repeatedly click [+] button to zoom in, (easy to reproduce, click most left side of the button) Actual Results: Mouse pointer becomes on the Label of zoom level. So, I can not zoom in with repeated clicks Expected Results Continuing I can zoom in with repeated clicks
1,384,087
12,504,056
Created attachment 8889871 BrowsingHistoryOption.jpg [Affected versions]: Nightly 56.0a1, Build ID 20170724030204 [Affected platforms]: Platforms: Windows 10 x 64, Mac OS X 10.12, Ubuntu [Steps to reproduce]: 1. Launch Nightly 2. Go to "about:preferences". 3. In the Privacy & Security tab and check "Address Bar" section [Expected result]: The first option under Address Bar section should be "Browsing history" per spec: https://mozilla.invisionapp.com/share/P4ACQT1E3#/screens/237159280. See attached screenshot from specs [Actual result]: The first option under Address Bar section is "History".
1,278,909
11,472,573
Created attachment 8761238 misaligned.png [Affected versions]: - Firefox 50.0a1 (2016-06-08) [Affected platforms]: - Windows 10 x64 and Ubuntu 14.04 x64 [Steps to reproduce]: 1. Launch Firefox. 2. From about:config, enable the devtools.responsive.html.enabled pref. 3. Enable RDM. 4. Click on the "no devices selected" button. 5.Scroll down to the bottom of the list, click on the "Edit list..." button and observe the displayed list. [Expected result]: - The list of the devices is correctly displayed. [Actual result]: - The check-boxes and the devices names are misaligned (see attached screenshot). [Regression range]: - I will search if this is a regression asap. [Additional notes]: - This issue is not reproducible on Mac OS X.
1,279,425
11,477,557
Created attachment 8761934 bug.png User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.33 Safari/537.36 Steps to reproduce: 1. New profile 2. Visit https://en.wikipedia.org several times and also bookmark it 3. Set browser.urlbar.unifiedcomplete to False 4. Restart Firefox 5. Type "e" in the location bar Actual results: It should have a drop down menu. Expected results: It didn't (see attachment). Note: I KNEW that `browser.urlbar.unifiedcomplete` is abandoned and has been removed in Nightly (or earlier). But this problem is about the existence of this parameter will BREAK something, not just has NO EFFECT, in certain version (current beta, aka 48). So if we didn't fix it and when 48 hit release, average users who still have this parameter set to false before (maybe due to addons, like Classic Theme Restorer) will be confused. So please make sure you get my point before mark it as WONTFIX.
178,371
1,620,579
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020530 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020530 The following won't show any image or bullet for <li>: ul li { list-style-image: url(/images/bullet1.gif); list-style-type: disc} However, it works if no list-style-type is specified. Reproducible: Always Steps to Reproduce: 1. 2. 3. Actual Results: No bullet or image is shown. Expected Results: Display the image if found, or use the type if not found
235,897
2,087,147
The background of an <iframe> which fails to load does not refresh its background. STEPS TO REPRODUCE: 1. Load the testcase (click OK in the error dialog) 2. Click on "File" in the browser menubar 3. Move the mouse over the menubar, opening/closing menus over the <iframe> ACTUAL RESULTS: The <iframe> background display random pixel values. EXPECTED RESULTS: The <iframe> background should be repainted. BUILDS & PLATFORMS TESTED: Bug occurs in Mozilla nightly trunk build 2004-02-26-08 on Linux Bug occurs in Mozilla 1.6, 1.4.1, 1.2.1 and 1.0.2
240,095
2,122,276
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040408 Firefox/0.8.0+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7b) Gecko/20040408 Firefox/0.8.0+ When a web page text box is focused, clicking the address bar drop down history arrow will open the address history and immediately close it again. This also happens when focus comes from the FF search box. When focus comes from any other component the history opens correctly (as far as i can tell from testing) Reproducible: Always Steps to Reproduce:
167,657
1,535,490
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2a) Gecko/20020909 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.2a) Gecko/20020909 At test c16 of the page at http://www.meyerweb.com/eric/css/tests/css2/sec08-05-01a.htm a border is displayed even though the border-top-width in the stylesheet is set to a negative number. Reproducible: Always Steps to Reproduce: 1. Go to http://www.meyerweb.com/eric/css/tests/css2/sec08-05-01a.htm 2. Go to test c16 Actual Results: A border is displayed near the top of the Expected Results: No border should be displayed. No border is displayed on test c16 in IE 6.
153,855
1,415,246
From Bugzilla Helper: User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.1a) Gecko/20020611 BuildID: 20002061104 When using a UTF-8 encoded file as signature, composer only shows the first three characters of the file, as if the signature file is not converted. Reproducible: Always Steps to Reproduce: 1.Write a signature file and save it as UTF-8 2.Tell Mozilla to use this file for your signature. 3.Compose a message. Actual Results: With my signature file,the following three lines are added in the composer window: -- ÿþM Expected Results: It should display as: -- Met vriendel&#307;ke groeten, Tjibbe Steneker. The character "&#307;" is only available in the Unicode charset.
132,549
1,235,289
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9+) Gecko/20020320 BuildID: 20020321 On some pages, when I first visit it, the page is loaded correctly. Then I click on some link and then Back button, the page is loaded, but some images are missing (looking like there is a broken link to images). When I hit "RELOAD", the page is loaded correctly again. I can see this on http://www.ihned.cz/ for example. Visit it, click on some link on it and then hit back. Reproducible: Always Steps to Reproduce: 1. Visit http://slovnik.seznam.cz/ 2. type some word ("test") into the form input field and hit Enter. 3. Hit Back button. Actual Results: I see almost all images are "broken" there like they're missing on the server or their src= is broken. Reload "fixes" that. Screenshot is at http://Xtrmntr.org/ORBman/tmp/slovnik.seznam.cz.after-back.png Screenshot if http://www.ihned.cz/ is at http://Xtrmntr.org/ORBman/tmp/ihned.cz.after-back.png I'm using current trunk (synced 3 hours ago) on Mandrake 8.2 Linux. This doesn't happen with branch 0.9.9 nor older releases.
226,549
2,012,526
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6b) Gecko/20031121 Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.6b) Gecko/20031121 It appears that on my computer, if I set Mozilla to use TAF for links only, it will in fact search all text on the page, and if I set it to search for all text on the page it will really only do links only. Reproducible: Always Steps to Reproduce: 1. Open up the Mozilla Preferences 2. Set TAF to search for either Links Only or All Text 3. Use TAF on any webpage and it should actually use the setting that you didn't choose in prefs Expected Results: If you have it set to search for Links Only, it should really only search links only, and if you have it set to search for any text on the page it should really do that ;)
221,784
1,976,945
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031009 Firebird/0.7+ (aebrahim) Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6a) Gecko/20031009 Firebird/0.7+ (aebrahim) From Mozillazine Thread http://forums.mozillazine.org/viewtopic.php?t=28590&postdays=0&postorder=asc&start=0 : debris303 wrote: on http://www.xsibase.com the menu bar on the left is stretched by ~4000% on the y-axis. This happens on aebrahims 20031008 SSE build and on the 20031009 Mozilla ni. I can confirm the bug. I think it's a bug, although the site is not valid html. but before firebird's quirks mode did handle the code properly. Reproducible: Always Steps to Reproduce: 1.Go to site www.xsibase.com 2.Scroll Down Note that the content ends, but you can scroll down a long empty space Actual Results: Note that the content ends, but you can scroll down a long empty space Expected Results: When the content ends, the vertiacal scrollbar should reach the bottom.
224,607
1,996,465
Dynamic change of CSS 'display' does not repaint view correctly STEPS TO REPRODUCE: 1. load http://www.trionica.com 2. click 'Links' in left nav bar (this should take you to the URL) 3. click 'Expand All' ACTUAL RESULTS: The old area where the headings used to be is not cleared properly and is obscuring newly exposed content. See first screenshot. EXPECTED RESULTS: After forcing a repaint by covering the window the view is correct (reflow not needed). See second screenshot. BUILDS & PLATFORMS TESTED: Bug occurs in Mozilla nightly trunk build 2003-11-03-05 on Linux Bug occurs in Mozilla 1.5 on Linux Bug does NOT occur in Mozilla 1.4 on Linux
614,793
5,104,963
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b8pre) Gecko/20101124 Firefox/4.0b8pre Build Identifier: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b8pre) Gecko/20101124 Firefox/4.0b8pre When the scroll bar activates in web console, if entering a command, the window doesn't automatically scroll down so that the result can be visible. Reproducible: Always Steps to Reproduce: 1.Open the web console. 2.Type any commands until the scroll bar appears in the console. 3.Type any of commands: find(), typeof(), keys() Actual Results: The web console window is not automatically scrolled vertically in order to see the result. Expected Results: The web console window should automatically scroll to display the result. This issue is also reproducible on Linux.
1,495,327
13,649,935
Created attachment 9013174 ff_crash.txt What did you do? (steps to reproduce) Open Firefox. Copy the text inside the attached file. Paste the text to the address bar. What happened? (actual results) Firefox freezes and does not respond. What should have happened? (expected results) Firefox should not freeze. It should act normally as if any other text was pasted into the address bar. Tested on my daily used Firefox installation, updated to 62.0.2 (64-bit). Also tested on a newly installed Firefox Nightly with a new clean profile, updated to version 64.0a1 (2018-09-30) (64-bit). The attached text is a Base64 Url encoded data of a json I used to verify some unrelated app with. More specifically, it is more than one base64 text, it has a few of them with a 'period' in between them, with the equal sign at the end of each dropped. The first two are json, the 3rd is some binary data. I've changed it a bit from the original and made sure it still causes the freeze on Nightly. I am not certain what is unique about this data, I did try some dumb text (same letter, random letters, etc.) of the same length and it did not make Firefox freeze. Currently, I do not have the means to test on other platforms. I would hope that someone could try to reproduce this bug as easily as I could on other setups.
1,497,443
13,671,407
Created attachment 9015452 as_preff_TextButtonOverflow.png [Affected versions]: - 62.0.3, 63.0b12, 64.0a1 (2018-10-08) [Affected platforms]: - win 10x64, Ubuntu 16.04, macOS 10.13 [Steps to reproduce]: 1. Launch Firefox; 2. Access about:preferences#home 3. Click the dropdown for the Homepage and new windows option; 4. Click on Custom URLs... 5. Grab the browser and resize to shrink its width. [Expected result]: - content is properly displayed; - not sure of the proper behavior, but probably the button width should remain the same to contain the text; [Actual result]: - the following buttons are changing width to adjust for resize but text is overflowing: [Use Current Pages], [Use Bookmark...] [Regression range]: - introduced with bug 1417155 [Additional notes]: - attached screenshot with the issue;
1,499,070
13,687,942
**Steps to reproduce** 1. Open the console 2. In the Settings panel, ensure the "Enable timestamps" option is checked 3. Evaluate the following: `await new Promise(res => setTimeout(() => res("evaluation result"), 5000))` **Expected results** After 5s, the "evaluation result" message should be displayed, with a timestamp of command timestamp +~ 5s (i.e. if command timestamp is 15:00:00.000, the result should have a timestamp of something around 15:00:05.000) **Actual results** The timestamp of the evaluation result has a timestamp which is roughly the same as the command. ---
1,533,522
13,972,346
This is definitely not what the spec guarantees. GL_OUT_OF_MEMORY is allowed to basically ruin your day, but we assume that drivers aren't malicious, and try to recover as safely as possible. However, we should not assume that GL preserved the old resource while trying to resize it to the new size.
1,535,307
13,986,515
Created attachment 9050958 $error.png **Affected versions** * 66.0-build 2, 66.0b14, 67.0a1(20190313100914) **Affected platforms** * Windows 10x64, macOS 10.13, macOS10.14, Ubuntu 18.04; **Steps to reproduce** 1. Access **about:url-classifier** 2. Turn off the internet; 3. Click on the Trigger Update button for any of the *google, google 4, mozilla* providers; **Expected result** * an error message - code is displayed; **Actual result** * The following message is displayed: download error ($error) **Regression range** * will provide one asap, if it is in fact a regression; **Additional notes** * attached screenshot with the issue;
1,538,285
14,005,292
Created attachment 9052928 Light Theme.png Hi, I'm running Linux Mint and the "View Saved Logins" text have no contrast when using a Dark GTK Theme (eg Arc Dark or Adapta Nokto). The text font colour is white and the background too. [Light Theme Screenshot](http://i.imgur.com/2R995Bd.png) (also Attached) [Dark Theme Screenshot](http://i.imgur.com/AlcajbM.png) (also Attached) As you can see, with the Dark Theme the pane with the credential got the background colour from the GTK Theme, only the footer that render with a white background. The Firefox Trunk version is `68.0a1 (2019-03-21) (64-bit)`. Thank you and sorry if i did something wrong. Should I create a new issue?
1,504,675
13,736,380
Created attachment 9022574 Video of the issue [Affected versions]: Nightly 65.0a1 [Affected platforms]: Platforms: Windows 10 x 64, Windows 7 x32, Mac OS X 10.13 and on Ubuntu 16.04 x64. [Preconditions]: 1. Set the pref dom.payments.request.enabled to "true" 2. Set browser.search.region to "US" or "CA" if you are outside of the US or Canada 3. Make sure you have at least one Shipping Address and one Credit Card saved in your browser [Steps to reproduce]: 1. Go to "https://rsolomakhin.github.io/pr/single/" page and click on "Buy". 2. Select "Add" for a new shipping address 3. Resize the "Street Address* field by dragging the right bottom corner of the field [Expected result]: The field should be resized within reasonable limits without messing up the form's layout. [Actual result]: The "Street Address" field can be resized in a manner that severely affects the Address Form layout. Please check the attached video. The created layout is also saved within the payment session for all Add/Edit forms.
1,508,702
13,768,945
Created attachment 9026434 aboutAddons_btnWidthPush.gif [Affected versions]: - 63.0b3, 64.0b10, 65.0a1 (2018-11-20) [Affected platforms]: - win10x64 [Steps to reproduce]: 1. Launch Firefox; 2. Access about:addons 3. Click on the Plugins section; 4. Press the TAB key until [Ask to activate] is brought into focus; 5. Click on that button; 6. Click on any plugin from the list; [Expected result]: - the dropdown menu is displayed properly; [Actual result]: - the button expands a few pixels on tab_focus; * steps 4-5: the Options button is pushed to the left; - issues encountered for the buttons with this format(in both sections at step 4 and 6) [Regression range]: - checking for regression I considered the width issue as bad for the button at step 6, in between there where versions in which the buttons on steps 4-5 appeared to not have this issue; - bug 1498632 appears to be at fault; [Additional notes]: - attached screen capture with issue; - issue is best visible for steps 4+5; - macOS(10.13) and Ubuntu(16.04) are not affected by this issue; - around 63.0a1(20180801223951) the text shifted on clicks, but that might be intended for UX;
1,561,411
14,198,306
Firefox 68.0b12 and 69.0a1 20190625094022 on Windows 8.1 Remove + report of add-on shows text for reporting a not removable add-on. These string entities are available: abuse-report-messagebar-submitted-noremove abuse-report-messagebar-removed-extension abuse-report-messagebar-removed-theme Steps to reproduce: 1. Launch Firefox. 2. Install an add-on (doesn't matter if it needs some permissions or not). 3. Open the Add-ons Manager (menu Tools) 4. Click on the "..." next to the add-on to open its menu. 5. Select "Remove". 6. Choose to report it. 7. Pick "Something else". 8. Enter "Test, ignore". 9. Submit. Actual result: "Thank you for submitting a report." shown Expected result: One of those shown: +abuse-report-messagebar-removed-extension = Thank you for submitting a report. You’ve removed the extension <span data-l10n-name="addon-name">{ $addon-name }</span>. +abuse-report-messagebar-removed-theme = Thank you for submitting a report. You’ve removed the theme <span data-l10n-name="addon-name">{ $addon-name }</span>. https://searchfox.org/mozilla-beta/rev/b9194766504b41d7bb1f2a1ce4119f59bf63a750/toolkit/mozapps/extensions/content/abuse-reports.js#144 The comment above mentions the message shall only be shown if the addon cannot be removed.
1,547,050
14,077,937
Reproducible: always Steps To Reproduce: 1. Start Nightly68.0a1 with safe mode 2. Type text in address bar or Search bar --- observe One-off search button icon 3. Open about:preferences#search --- observe One-off search button icon Actual Results: No icon Expected Results: Icon hould be shown
1,557,298
14,164,599
Created attachment 9070237 about_welcome.gif **Affected versions** * Firefox 67.0.2 (20190605225443) * Firefox 67.0.1 (20190518102559) * Firefox 68.0b7 (20190603181408) **Affected platforms** * Windows 10x64 * macOS 10.14 * Ubuntu 18.04 **Steps to reproduce** 1. Start the browser with a new profile and navigate to about:welcome. 2. Drag the browser to the corner of the screen. 3. Resize the browser windows horizontally making it smaller. **Expected result** * No additional vertical scrollbar is displayed. **Actual result** * Inactive scrollbar displayed. **Regression Range** * The issue is reproducible on Nightly 68.0a1 (20190505213908). I will search for a regression range (if there is one) ASAP. **Additional Notes** * Attached a screen recording with this issue. * The issue is triggered resizing the browser in any way (making it smaller). * On latest Nightly (20190605215957) the scrollbar is active.
1,557,304
14,164,648
Created attachment 9070245 screenshot issue.png [Affected versions]: - 67.0.2 - 68.0b7 - 69.0a1 (2019-05-06) [Affected platforms]: - Windows 10 x64 - macOS 10.14 - Ubuntu 18.04 x64 [Steps to reproduce]: 1. Open Firefox with a clean profile 2. Dismiss the “Welcome to Firefox” modal 3. Resize the window to its minimum width 4. Observe the last “Welcome to Firefox” card [Expected result]: - Cards are entirely visible. [Actual result]: - The bottom of the last card is hidden behind about:newtab page [Regression range]: - This issue is not a regression, introduced as part of Trailhead Desktop First Run feature implementation [Additional Notes]: - Make sure trailhead.firstrun.branches is set to join-privacy in about:config before opening about:welcome page for Nightly and Beta.
1,461,010
13,271,939
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:59.0) Gecko/20100101 Firefox/59.0 Build ID: 20180323154952 Steps to reproduce: I am strobe-sensitive, and have to use a number of animation-blocking tools to use the web. Standard advice when encountering problems, or debugging, is to restart Firefox in safe mode. Actual results: Since this disables add-ons, it disables a variety of safety tools. It may not be safe, e.g. for strobe-sensitive users. Expected results: I think a better term, which describes what safe mode does, would be better. It wouldn't imply that it is safe for all users.
883,019
7,533,657
1. Title: The received MMS doesn't display image attached from Gallery. 2. Precondition: SMS app should be working 3. Tester's Action: (1) Create a new message (2) Attach a photo chosen from Gallery ( JPG 160x120, JPG 640x480, GIF 160x120, Animated GIF 160x120, WBMP 160x120) (3)Send the MMS with Images to multiple clients 4. Detailed Symptom (ENG.) : Images are not displayed in some clients 5. Expected: Each Client should display MMS message with proper images sent. 6. Reproducibility: Y 1) Frequency Rate : 100% 7. Gaia Master/v1-train: Reproduced on v1-train 8. Gaia Revision: f25d5e8552e6d395435047de1d767889129701c3 9. Personal email id: [email protected]
1,600,891
14,523,623
Created attachment 9113144 OnboardingTip_Resize.mp4 [Affected versions]: - Latest Firefox Nightly 73.0a1 (Build ID: 20191202220401) [Affected Platforms]: - Mac 10.14 - Windows 10 x64 - Ubuntu 16.04 x64 [Prerequisites]: - Have the latest Nightly installed. - Have the “devtools.chrome.enabled” pref set to “true”. - Run the “(async function() { let { ProfileAge } = ChromeUtils.import("resource://gre/modules/ProfileAge.jsm"); let age = await ProfileAge(); age._times = { firstUse: 1368255600000, created: 1368255600000 }; await age.writeTimes(); })();” code on the browser console. - Have access to the stage delivery console. - Have an active branched add-on [recipe](https://delivery-console.stage.mozaws.net/recipe/881/). - Have the “security.content.signature.root_hash” pref set to "DB:74:CE:58:E4:F9:D0:9E:E0:42:36:BE:6C:C5:C4:F6:6A:E7:74:7D:C0:21:42:7A:03:BC:2F:57:0C:8B:9B:90". - Have the "app.normandy.api_url" pref set to "https://stage.normandy.nonprod.cloudops.mozgcp.net/api/v1". - Have the "app.normandy.dev_mode" pref set to “true”. - Have the "app.normandy.logging.level" pref set to “0”. - Have the "services.settings.server" pref set to "https://settings.stage.mozaws.net/v1". - Have the "xpinstall.signatures.dev-root" pref set to “true”. - Create a new pref named “carmentips” and set it as “true”. [Steps to reproduce]: 1. Open the Firefox browser with the profile from prerequisites. 2. Resize the browser to 25%. 3. Open a new tab and observe the elements from the “Onboarding” tip. [Expected result]: - The “Onboarding” tip is resized so that it fits the available browser width. [Actual result]: - The “Type less, find more: Search Google right from your address bar.” string is not displayed. [ Notes]: - This issue is also reproducible for the “Redirect” tip. - Attached a screen recording with the issue.
1,615,853
14,643,283
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:75.0) Gecko/20100101 Firefox/75.0 20200215095617 STR: 1. about:preferences 2. Type `encoding` in the Find box. AR: Search result highlights the Advanced… button in the Fonts and Colors category. There's no such setting there anymore, because it was removed in bug 1551276. ER: No search results.
1,605,383
14,558,630
Created attachment 9117238 rec of the issue.gif **[Affected versions]:** - Firefox Nightly 73.0a1 - Build ID: 20191220095035 **[Affected Platforms]:** - Windows 10 x64 - Mac 10.15.1 - Ubuntu 18.04 x64 **[Prerequisites]:** - Have the latest Firefox Nighlty 73.0a1 "ru" locale build installed. **[Steps to reproduce]:** 1. Open the browser with the profile from prerequisites. 2. Horizontally resize the browser below 30%. 3. Scroll down and observe the in-content "Search Bar". **[Expected result]:** - All the elements are correctly resized and rendered. **[Actual result]:** - The placeholder text overlaps the "Search" field's borders. **[Notes]:** - This issue is also reproducible with the old "Activity Stream" experience. - Attached a screen recording of the issue.
1,606,130
14,565,421
Reproducible: always Steps To Reproduce: 1. Open Preferences (about:preferences) 2. Open sub-dialog. e.g. Click [Advanced...] button of about:preferences 3. Close the sub-dialog with middle mouse button clicking Actual Results: The sub-dialog is closed as expected. However, Auto scroll maker is displayed. Expected Results: Auto scroll maker should not be displayed.
1,634,252
14,787,824
+++ This bug was initially created as a clone of Bug #1359021 +++ It only happens when open popup from file: protocol. alternative steps to reproduce: 0. Save https://bugzilla.mozilla.org/attachment.cgi?id=8860901 to local file system 1. Make sure e10s enabled 2. Open the saved html with file:// protocol 3. Click [open popup] button 4. Repeat step.3 Actual Results: Popup windows are opened in duplicate Expected Results: Pop-up windows should be reused if same target name. Regression window: https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=b0e84820d231a3b5a47f2ea72c384828d91f4c49&tochange=b158903288bb2968dff9e587a3a8ca67f7435e37
1,625,959
14,724,289
Created attachment 9136765 MobilePromotion_CutOff.gif [Affected versions]: - Nightly 76.0a1 (Build ID: 20200329214909) [Affected Platforms]: - Windows 10 x64 - Mac 10.14.6 - Ubuntu 18.04 x64 [Prerequisites]: - Have a profile with at least 3 saved logins in which one is vulnerable. - Have a valid Firefox Account. [Steps to reproduce]: 1. Open the Firefox browser with the profile from prerequisites 2. Sign in to Sync with the Firefox Account from prerequisites. 3. Select a vulnerable login. 4. Observe the “Mobile promotion” banner from the bottom part of the Login view. [Expected result]: - The “Mobile promotion” banner is correctly displayed. [Actual result]: - The “Mobile promotion” banner is cut off. [Notes]: - This issue is reproducible only on small screens. I have managed to reproduce this issue on a MacBook Pro with 13-inch and on a Dell G5 with 15-inch. - Attached a screen recording with the issue.
1,626,627
14,729,031
Created attachment 9137460 Edit and Remove buttons cannot be focus.gif [Affected versions]: - Nightly 76.0a1 (Build ID: 20200329214909) [Affected Platforms]: - Windows 10 x64 - Mac 10.14.6 - Ubuntu 18.04 x64 [Prerequisites]: - Have a profile with at least 3 saved logins in which one is breached and one is vulnerable. [Steps to reproduce]: 1. Open the Firefox browser with the profile from prerequisites. 2. Select a vulnerable/breached login. 3. Click and hold the "Create New Login" button and release it in order for the button to be focused. 4. Press the "Tab" key a single time. 5. Observe what button is focused on. [Expected result]: - The "Edit" button is focused. [Actual result]: - The "Go to [website_name]" link is focused. [Regression]: - This issue is not reproducible with older Nightly 76.0a1 builds. Using mozregression tools we have found the following pushlog which contain the bug which introduced this behavior: - Pushlog: [link](https://hg.mozilla.org/integration/autoland/pushloghtml?fromchange=5a5b189e0fc90e9f8bbe44a0a7126ad62ec94da6&tochange=438d5f4b2417959856efba5a99706f68fe4ba5eb) - From this pushlog I suspect that bug Bug 1625958 introduced this behavior. [Notes]: - When the vulnerable/breached login is elected, the "Edit" button is automatically focused and the "Remove" button is focused next if the "Tab" key is pressed. But, the "Edit" and "Remove" button are no longer focused using keyboard navigation. - The "Edit" and "Remove" buttons can also be focused using keyboard navigation if you click the empty area above the buttons. - Attached a screen recording with the issue.
1,582,713
14,373,572
Created attachment 9094166 overflow_01.png **Affected versions** * 70.0b8 (20190902191027) * 71.0a1 (20190919184237) **Affected platforms** * Windows 10x64 * Ubuntu 18.04 * macOS 10.14 **Preconditions** * Make sure What's New toolbar button is active (if not open Fx with a new profile and wait like 5-7 min). **Steps to reproduce** 1. Open Firefox and go to Customize Menu. 2. Observe the Overflow section on the top right. **Expected result** * Overflow Menu is correctly displayed under the expected icon. **Actual result** * Overflow Menu is displayed under What's New toolbar button. **Regression range** * Reproducible on Firefox 70.0a1(20190729095501). I will search for one ASAP. **Additional Notes** * Attached a screenshot.
1,589,015
14,427,519
Created attachment 9101493 the bottom of the panel is too short.gif **Affected versions** * Firefox 70.0 * Nightly 71.0a1 **Affected platforms** * Windows 10 x64 **Steps to reproduce** 1. Download a “de” build from https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central-l10n/ 2. Install it and launch the browser with a clean profile. 3. Load https://www.welt.de/ in a new tab. 4. Wait until the site is fully loaded and click on the shield icon. 5. Refresh the page if the issue is not reproducing. **Expected result** * The bottom of the Privacy Panel has the correct dimensions. **Actual result** * The bottom of the Privacy Panel is cut off. **Regression range** * This is not a regression. I can reproduce the issue on Nightly from 2019-09-16 when the Privacy Panel was fully translated. **Additional notes** * If you restart the browser, the dorhanger has the normal proportions for a few seconds and then the bottom of it is cut off again. * In the attached gif you can see both the actual result (welt.de) and expected behaviour (youtube).
1,585,387
14,397,051
Created attachment 9097704 font.gif [Affected versions]: - Firefox Beta 70.0b11 - Build ID: 20190930132843 - Firefox Nightly 71.0a1 - Build ID: 20191001041624 [Affected Platforms]: - All Windows - All Linux - All Mac [Prerequisites]: - Have latest Firefox Beta or Nightly installed. - Have the following preferences in the "about:config" page: - "browser.search.region" set to "US" - "browser.newtabpage.activity-stream.discoverystream.config" set to "{"api_key_pref":"extensions.pocket.oAuthConsumerKey","collapsible":true,"enabled":true,"show_spocs":true,"hardcoded_layout":false,"personalized":false,"layout_endpoint":"https://getpocket.cdn.mozilla.net/v3/newtab/layout?version=1&consumer_key=$apiKey&layout_variant=direct-response-variant-a"}" [Steps to reproduce]: 1. Open the browser with the profile from prerequisites. 2. Open a new tab. 3. Observe the font of the hyperlink from the sponsored content card. [Expected result]: - The font style of the hyperlink is "Semibold" according to design specifications. [Actual result]: - The font style of the hyperlink is "Regular". [Notes]: - The issue is also reproducible for the SPOC version with a button. - You can find the design specifications [here](https://www.figma.com/file/eGdZVYlZ5evvePHUCtKnYg7u/New-Tab-Spec-for-Fx-70?node-id=77%3A0). - Attached a screen-capture of the issue.
1,564,284
14,221,939
User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 Steps to reproduce: 1) Copied %appdata%\Mozilla\Firefox\Profiles\XXXX.profile to ~/.mozilla/firefox 2) Updated profiles.ini to match new profile 3) Opened Firefox 67.0.4+build1-0ubuntu0.18.04.1 with copied profile Actual results: Found that all saved passwords and usernames were gone, both from the website and Preferences > Saved Logins. Expected results: Passwords should have been preserved.
1,575,778
14,315,396
**Affected versions** * latest Nightly 70.0a1 **Affected platforms** * Windows 10 x64 * macOS 10.13 * Ubuntu 18.04 **Steps to reproduce** 1. Launch Firefox. 2. Access https://www.reddit.com and click on the shield icon from URL bar. 4. Observe the "Show Full Report" string. **Expected result** * Per [Invision specification](https://mozilla.invisionapp.com/share/R5S6LMLZ26A#/screens/360900829) the string is named: "Show Report". **Actual result** * "Show Full Report" is displayed instead of "Show Report". **Regression range** * Not a regression, I was able to reproduce this on older builds as well, e.g. 70.0a1 from 2019-08-01.
1,576,562
14,322,273
Created attachment 9088059 screenshot showing the issue.png **Affected versions** * latest Nightly 70.0a1 **Affected platforms** * Windows 10 x64 * Windows 7 x64 **Preconditions** * High Contrast Mode is applied in Windows, e.g. "High Contrast Mode #1" **Steps to reproduce** 1. Launch Firefox. 2. Navigate to a couple of websites, e.g. cnn.com, youtube.com, bbc.com. 3. Open "about:protections" and inspect the page. **Expected result** * All elements inside the page are correctly displayed. **Actual result** * Several elements are not correctly displayed inside the page, e.g. Cards icons, graph. **Regression range** * Not a regression. **Additional notes** * this is a Windows specific issue * please observe the attached screenshot
1,575,220
14,311,213
Created attachment 9086663 screenshot with the issue.png **Affected versions** * latest Nightly 70.0a1 **Affected platforms** * Windows 10 x64 **Preconditions** - have High Contrast mode applied on Windows - have at least one breached site saved in the profile-- instructions on how to do this can be found [here](https://bugzilla.mozilla.org/show_bug.cgi?id=1565326#c1) **Steps to reproduce** 1. Access about:logins 2. Inspect the breach warning icon and the "X" button from breach notification banner. **Expected result** * The breach warning and the "X" button are correctly displayed. **Actual result** * The breach warning and the "X" button are not displayed. **Regression range** - Not a regression, I was able to reproduce it on older builds e.g. 70.0a1 (20190807215212) as well; one of the first builds with this feature implemented. **Additional notes** * It seems that other banners that are having a "X" button are affected by this, so it could be a more general issue.
437,169
3,647,067
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14 Build Identifier: 3.0.4 when importing a bug in xml, there is an insecure call done to open() which could potentially allow command execution. the bug in the code is as follows: sub process_attachment() { my ( $twig, $attach ) = @_; ... my $encoding = $attach->first_child('data')->{'att'}->{'encoding'}; ... elsif ($encoding =~ /filename/) { ... my $attach_filename = $attach_path . "/" . $attach->field('data'); <-- field('data') comes from the xml file open(ATTACH_FH, $attach_filename) or <-- here's the insecure open Error("cannot open $attach_filename", undef); ... } basicly, you could have something like "; <shell commands> |". a nice solutions would be to use the 3-arg open. another issue is that there is no check done for directory traversal. Reproducible: Didn't try Steps to Reproduce: 1. 2. 3.
361,923
3,046,589
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0 I tested this with a few OpenSearch plugins (not sure if it's like this with Sherlock). I specified an icon (and used the documentation to make sure I did everything correct) in the plugin, but Firefox still used the favicon of the site I tried to install the plugin from. Reproducible: Always Steps to Reproduce: 1. Go to any website with a (OpenSearch) search plugin. (Here's a site with a lot: http://www.searchplugins.net/ ) 2. Install a search plugin whose icon is different from the favicon. 3. The icon appears different from what is specified. Actual Results: I found the icon used by Firefox was the favicon of the site I installed the plugin from. Expected Results: I expected to see the icon specified by the plugin, not the favicon. I have no extensions that involve search plugins installed.
357,830
3,019,055
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0 Firefox don't add search plugin if xml description document has not utf-8 encoding Workaround to this bug: use description document in utf-8 Reproducible: Always Steps to Reproduce: 1. Create OpenSearch description document in encoding windows-1251 (<?xml version="1.0" encoding="windows-1251"?>) 2. Create web page with link to this description 3. Try to add this search plugin Actual Results: Nothing Expected Results: New search plugin added to search toolbar In error console I can see: Error: [Exception... "'Failure' when calling method: [nsIStreamListener::onStopRequest]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "<unknown>" data: no]
411,947
3,434,516
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9b3pre) Gecko/2008011104 Minefield/3.0b3pre Depending on how I choose to access the download manager UI, it appears in a different location on the screen. If I access the download manager using the CTRL+Y method, it appears on the top-left. If I access the download manager using the Tools>Downloads method, it appears on the top-right. Steps to reproduce: 1. Open Firefox 2. Press CTRL+Y, note the location of the DM UI and close dialog 3. Click Tools>Downloads Actual results: The DM dialog appears in two different locations depending on the access method Expected results: The DM dialog should appear in the same spot, regardless of access method. I will attach a comparative screenshot. Note: drekk(IRC) tested this for me on WinXP. Both access methods display the dialog in the same location.
281,487
2,409,465
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 If you start the jsshell and enter: tracing(true); var a = function (i,j,k) { x = j--; }; a(1,2,3); you get an assertion on JSOP_ARGDEC: js> tracing(true); 1: 00008: popv inputs: tracing(true) @ 1 stack: js> var a = function (i,j,k) { x = j--; }; 2: 00000: defvar "a" stack: 2: 00003: bindname "a" output: a @ 1 stack: ({a:undefined}) 2: 00006: anonfunobj (function (i, j, k) {x = j--;}) output: function (i, j, k) { x = j--; } @ 2 stack: ({a:undefined}) (function (i, j, k) {x = j--;}) 2: 00009: setname "a" inputs: a, function (i, j, k) { x = j--; } @ 2 output: a @ 1 stack: (function (i, j, k) {x = j--;}) 2: 00012: pop inputs: a @ 1 stack: js> a(1,2,3); 5: 00000: name "a" output: a @ 1 stack: (function (i, j, k) {x = j--;}) 5: 00003: pushobj output: [object global] @ 2 stack: (function (i, j, k) {x = j--;}) ({a:(function (i, j, k) {x = j--;})}) 5: 00004: one output: 1 @ 3 stack: (function (i, j, k) {x = j--;}) ({a:(function (i, j, k) {x = j--;})}) 1 5: 00005: uint16 2 output: 2 @ 4 stack: (function (i, j, k) {x = j--;}) ({a:(function (i, j, k) {x = j--;})}) 1 2 5: 00008: uint16 3 output: 3 @ 5 stack: (function (i, j, k) {x = j--;}) ({a:(function (i, j, k) {x = j--;})}) 1 2 3 5: 00011: call 3 @ 5 3: 00000: bindname "x" output: x @ 1 stack: ({a:(function (i, j, k) {x = j--;})}) 3: 00003: argdec 1 Assertion failure: map->vector && i < map->length, at jsatom.c:871 Reproducible: Always Steps to Reproduce: 1. start jsshell.exe 2. activate tracing 3. call a function that decreases an argument Actual Results: Assertion with a popup-box to send the errorinformation to ms ;-)) Expected Results: continue without assertion It seems to happen when decompiling in jsinterp.c(5261): str = js_DecompileValueGenerator(cx, n, sp[n], NULL); and then js_GetAtom in jsatom.c
267,557
2,316,403
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a5) Gecko/20041103 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a5) Gecko/20041103 Yahoo, Hotmail, Gmail, operamail and our internal email web server are most noticeable. When I go to these sites, they intially come up properly. But when I click to read an email, the email doesn't appear unless I move the mouse. Reproducible: Always Steps to Reproduce: 1. go to gmail (or some mail system with several emails ready to be read) 2. click on an email, get a blank screen 3. move mouse and the screen appears. Actual Results: nearly blank screen Expected Results: a properly updated screen should appear.
325,691
2,765,262
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1 In the file saved-searches.html.tmpl at line 45 the value terms.Bugs is not used. The word 'My Bugs' is hardcoded in the template. So, if you change the word 'Bugs' to e.g 'Calls' globally the page User Preferences -> Saved searches still shows 'My Bugs'. Can be fixed by replacing: < <td>My [% terms.Bugs %]</td> > <td>My Bugs</td> Reproducible: Always Steps to Reproduce: 1. Set "Bugs" => "Calls" in variables.none.tmpl 2. Go to page User Preferences -> Saved searches 3. In the saved searches table it says 'My Bugs' instead of 'My Calls' Actual Results: Page says 'My Bugs' instead of 'My Calls'