Nuna amsoshi da aka yiwa shaida: Nuna duk tambayoyi

Update auf 143 leider misslungen

In dem Sie das update in der bisher genutzten Sprache (Deutsch) ausliefern. Der Versuch den Firefox V143 auf Deutsch umzustellen ist mit der Auskunft gescheitert das Fire… (daɗa karatu)

In dem Sie das update in der bisher genutzten Sprache (Deutsch) ausliefern. Der Versuch den Firefox V143 auf Deutsch umzustellen ist mit der Auskunft gescheitert das Firefox V143 nicht mit "deutsch" kann. Wäre gut wenn sie einen Pätsch nachschieben der den Firefox in Deutsch auftreten lässt.

Asked by la_rai 13 awannin da su ka gabata

Hi - Snap Version for Ubuntu frequently locks system on closing.

Ubuntu - I use the SNAP version of Firefox - I generally have lots of tabs open but only use 5 or so of them and it's generally fine.... but when I am closing Firefox, it… (daɗa karatu)

Ubuntu - I use the SNAP version of Firefox - I generally have lots of tabs open but only use 5 or so of them and it's generally fine.... but when I am closing Firefox, it USES like 100% of the CPU and ALL of the RAM and ALL of the SWAP memory when closing.

This locks up the computer.

Sometimes it doesn't quite go all the way but I can watch it all happen in real time, using Task Manager - and that shows a solidwall of all resources occouring, when the close Firefox is run.

I am told by research via ChatGPT that this is a very real problem with the SNAP version and it's best to change to the Debian version, copy all the bookmarks etc., across and then uninstall the SNAP version.

It's rather disconcerting to have Linux crash because of this one app locking it up and frequently.

Chat GPT:

Is there a problem with Firefox Snap Version closing and using all the resources while doing so, which results in locking up the computer?

You're definitely not imagining it—there have been reports of Firefox's Snap version consuming excessive system resources (CPU, memory) and even causing lockups or hangs, particularly during closure. Here's what’s going on and how to mitigate it:

What’s Happening with Firefox Snap?

2. Browser Hangs or Locks the System on Close

On Linux (especially Ubuntu), users have reported that closing Firefox can lead to it hanging in memory, sometimes unresponsive and still consuming resources.
Super User
Ask Ubuntu
A stark example from Reddit illustrates the severity:
“About 50% of the time I open Firefox, it'll reach 100% CPU usage in about 30 seconds… PC completely unusable unless I shutdown.”
Reddit

3. Known Wayland Sway Bug

On Wayland/Sway setups, reloading Sway while Firefox is open can trigger intense logging, causing high CPU use and an enormous syslog.
Fix: Set MOZ_DISABLE_WAYLAND_PROXY=1, or upgrade to FF 125 where the issue is addressed.
Reddit+1

Alternative Approach

Many users, particularly on Ubuntu, opt out of Snap completely in favor of the .deb package or PPA builds. These alternatives often avoid these specific issues. Ask Ubuntu Reddit

Thoughts? Solutions?

Thanks in advance.

Asked by wrogerwroger 1 makon da ya gabata

Last reply by wrogerwroger 16 awannin da su ka gabata

Textarea glitches with special characters after update

Hello, hope you're having a nice day. I'm encountering an issue in my web app: when typing a character with an accent (such as á, ä, etc.), the textarea clears out and b… (daɗa karatu)

Hello, hope you're having a nice day.

I'm encountering an issue in my web app: when typing a character with an accent (such as á, ä, etc.), the textarea clears out and becomes disabled, making it unusable for Spanish speakers. This behavior worked correctly until a few months ago. The application is built with Vaadin.

Below are the mozregression logs for this issue. The commit that first showed this behavior is a24b524f, worked fine upto 3b954f08.

2025-09-17T08:58:01.828000: INFO : Narrowed integration regression window from [8ba9b64c, a24b524f] (4 builds) to [3b954f08, a24b524f] (2 builds) (~1 steps left) 2025-09-17T08:58:01.831000: DEBUG : Starting merge handling... 2025-09-17T08:58:01.832000: DEBUG : Using url: https://hg.mozilla.org/integration/autoland/json-pushes?changeset=a24b524fe1b32a658d105df47dc723c9ec8e15d8&full=1 2025-09-17T08:58:01.832000: DEBUG : redo: attempt 1/3 2025-09-17T08:58:01.832000: DEBUG : redo: retry: calling _default_get with args: ('https://hg.mozilla.org/integration/autoland/json-pushes?changeset=a24b524fe1b32a658d105df47dc723c9ec8e15d8&full=1',), kwargs: {}, attempt #1 2025-09-17T08:58:01.833000: DEBUG : urllib3.connectionpool: Resetting dropped connection: hg.mozilla.org 2025-09-17T08:58:02.871000: DEBUG : urllib3.connectionpool: https://hg.mozilla.org:443 "GET /integration/autoland/json-pushes?changeset=a24b524fe1b32a658d105df47dc723c9ec8e15d8&full=1 HTTP/1.1" 302 0 2025-09-17T08:58:04.128000: DEBUG : urllib3.connectionpool: https://hg-edge.mozilla.org:443 "GET /integration/autoland/json-pushes?changeset=a24b524fe1b32a658d105df47dc723c9ec8e15d8&full=1 HTTP/1.1" 200 None 2025-09-17T08:58:04.133000: DEBUG : Found commit message: Bug 1941973 - Make `EditorBase::OnCompositionChange` always dispatch `input` event with a new pref r=m_kato

The reported web site in bug 1910865 sets `HTMLInputElement.value` to the latest value explicitly at every `input` event except when during a composition. When it's in a composition, it stores the latest value at `input` events during the composition and set it at `compositionend` event listener.

Currently, Gecko dispatches the events as the following order at ending a composition: 1. `beforeinput` whose `isComposing` is `true` 2. `compositionend` 3. `input` whose `isComposing` is `false`

Therefore, if user chooses the commit string from the candidate list, the commit string is not notified by `input` event before the `compositionend`.

On the other hand, Chrome dispatch the events as the following order: 1. `beforeinput` whose `isComposing` is `true` 2. `input` whose `isComposing` is `true` 3. `compositionend`

I.e., no `input` event is fired after `compositionend` and there is no `input` event whose `isComposing` is `false`. This is handled in the spec issue [1], but not yet resolved.

Perhaps, we can dispatch redundant `input` event before `compositionend` event, i.e., 1. `beforeinput` whose `isComposing` is `true` 2. `input` whose `isComposing` is `true` 3. `compositionend` 4. `input` whose `isComposing` is `false`

This breaks the pair of `beforeinput` and `input`, but I guess it's not important for web apps especially for the redundant `input` event case.

1. https://github.com/w3c/uievents/issues/202

Differential Revision: https://phabricator.services.mozilla.com/D234620

2025-09-17T08:58:04.134000: DEBUG : Did not find a branch, checking all integration branches 2025-09-17T08:58:04.134000: INFO : The bisection is done. 2025-09-17T08:58:04.134000: INFO : Stopped

Asked by xk w 1 kwanan da ya gabata

Profile manager

Hi! Firefox now has two profile managers. The old one can be used so that I can open two Firefox instances with different desktop files on Linux with the "-P and --no-rem… (daɗa karatu)

Hi! Firefox now has two profile managers. The old one can be used so that I can open two Firefox instances with different desktop files on Linux with the "-P and --no-remote" command line flags. Is this also possible with the new profile manager in Firefox that came with version 138, which is similar to Chrome's? With Chrome this can be done with the "--profile-directory" command line flag. Can't find information about this. /Regards

Asked by pelle.ekh 1 kwanan da ya gabata

Certain Google Drive functions doesn't work between midnight and midday.

Hi, mi machine runs Ubuntu Mate 24.04, kernel 6.14.0.29 and Firefox 141.0.3 . Starting from the end of last year, 2024, I get a strange situation: in Google Sheets I can … (daɗa karatu)

Hi, mi machine runs Ubuntu Mate 24.04, kernel 6.14.0.29 and Firefox 141.0.3 . Starting from the end of last year, 2024, I get a strange situation: in Google Sheets I can invoke certain functions only in the range 5:00 am to midday, actually I never tried earlier. I asked for help to Google and we realized that the malfunction doesn't appear with Google Chrome browser or Brave. So I'm here to ask for support, how can I fix this?

Asked by luca.dgh 3 kwanakin da su ka gabata

Last reply by luca.dgh 3 kwanakin da su ka gabata

Firefox tab detaching on SteamOS

On windows whenever you move a tab and nudge it out of the window, it instantly creates a new window for it, but on SteamOS desktop mode, instead it only creates a new wi… (daɗa karatu)

On windows whenever you move a tab and nudge it out of the window, it instantly creates a new window for it, but on SteamOS desktop mode, instead it only creates a new window once you release the tab onto a blank desktop. This is causing a number of glitches for me, most notably if I release onto a desktop that already has an app, it will create a ghost tab or occupies the same position as a different tab making both of them unusable and I want to know how to change it to be more like Windows, or is this a Firefox specific thing in which case will switching to another browser fix the issue?

Asked by Noam Forman-Vidaver 4 kwanakin da su ka gabata

Vertical tab groups in the sidebar

I am using firefox on ubuntu (firefox 142.0.1 (64-bit)) and using vertical tabs in the side bar. I recently started using the new(ish) feature of tab groups and I absolut… (daɗa karatu)

I am using firefox on ubuntu (firefox 142.0.1 (64-bit)) and using vertical tabs in the side bar. I recently started using the new(ish) feature of tab groups and I absolutely love it. I was using STG (simple tab groups) before and that fine, but this is way nicer. The only small annoyance I have, which could be a mistake on my side. Is that some of my tab groups are shortend seemingly randomly? If I for example make a group named "phone" it is visible like that, but after a couple of hours it goes to "ph...". I thought it may be sidebar width not being wide enough, but you can see in my screenshot that is not the case. Strangely if I make a new group it is always complete.

So I was wondering if I am missing a setting or config entry.

Thank you for reading and hope you have a great day!

Asked by accounts.firefox.com.flagman860 4 kwanakin da su ka gabata

Last reply by accounts.firefox.com.flagman860 4 kwanakin da su ka gabata

how do I stop firefox from stealing focus?

how do I stop firefox from stealing focus? How do I STOP this site: https://wise.com/login From stealing focus from what ever I happen to be doing. This is driving me ab… (daɗa karatu)

how do I stop firefox from stealing focus?

How do I STOP this site: https://wise.com/login From stealing focus from what ever I happen to be doing. This is driving me absolutely flipping nuts! All the searches I've done tell me how to prevent popups or notifications or pages from clicked links from focusing, but none of these helps. I've someone could help before I'm completely bald from tearing my hear out, it'd be great.

Thanks M

Asked by Morgan 4 kwanakin da su ka gabata

See bookmarks in between PC (with the same account) without sync

Hi, I have 3 devices with the same Firefox account : a phone, a work pc and a personal pc. I don't have bookmarks sync on any of my devices. From my phone I can acc… (daɗa karatu)

Hi,

I have 3 devices with the same Firefox account : a phone, a work pc and a personal pc. I don't have bookmarks sync on any of my devices. From my phone I can access (read only) my bookmarks from both my pc. It seems I can't do the same from a pc to another. Am I missing something or is the feature not implemented?

Thanks

Asked by robby.roudon 6 kwanakin da su ka gabata

Плагин

Здравствуйте, при скачивании плагина с интернета, скачивание происходит, полоска загрузки заполняется на 100%, но сам файл не скачивается, как будто зависает на этапе про… (daɗa karatu)

Здравствуйте, при скачивании плагина с интернета, скачивание происходит, полоска загрузки заполняется на 100%, но сам файл не скачивается, как будто зависает на этапе проверки. Ждал очень долго, так и не скачался

Asked by anton.martyanov.99 6 kwanakin da su ka gabata