Showing questions tagged:

UI elements turn black due to a theme loading failure.

On Arch Linux with the latest version of Firefox, the interface elements turn black due to a theme loading failure. 'This issue persists even when using the default theme… (read more)

On Arch Linux with the latest version of Firefox, the interface elements turn black due to a theme loading failure. 'This issue persists even when using the default theme.

Going to Settings and disabling the theme (which automatically falls back to another theme) resolves the problem.Re‑enabling the problematic theme does not reproduce it immediately. However, the issue reappears after restarting Firefox.

System Info: OS Arch Linux x86_64

├   KER  Linux 7.1.3-arch1-2
├   PAK  1537
├   AGE  34 days
└   USR  chen-shuhan@archlinux


WM niri 26.04 (Wayland)

├   SHE  fish 4.8.0
├   TER  kitty 0.47.4
└   TFO  JetBrainsMapleMono-Regular (13.5pt)
Solved 8

Firefox 128.03 No way to get rid of google as search engine

Is Firefox now a complete tool of Google ? about:preferences#search there is no way to delete google as search engine I have startpage and duckduckgo as alternative opt… (read more)

Is Firefox now a complete tool of Google ? about:preferences#search there is no way to delete google as search engine I have startpage and duckduckgo as alternative options listed and I can remove them, but google cannot be removed as the REMOVE button is not highlighted in case of Google. Why do you hardcode Google as the default browser for the URL bar ?

From the attached image you can see that the "Remove Tab" is inactive specifically for google. I tried absolutely all advice on the net, and nothing works. Firefox now seemingly FORCES us to use google. This behavior was not present in the previous firefox version I used. It immediately happened after update to 128.0.3 (64-bit).

Is google now hardcoded into firefox ? If so it is time for a hard fork in the firefox code. Hopefully it is not needed.

In addition Google was ruled to be a Monopoly today by a federal judge,

https://apnews.com/article/google-antitrust-search-engine-verdict-apple-319a61f20fb11510097845a30abaefd8

So it would be better for Mozilla/Firefox to not continue the monopoly and become an enabling party in monopoly lawsuits.

Solved Archived 7 226

Viewing details of a bug

When I go to see a firefox bug such as the following, https://www.mozilla.org/en-US/security/advisories/mfsa2026-10/ There appears to be more details in https://bugzilla.… (read more)

When I go to see a firefox bug such as the following, https://www.mozilla.org/en-US/security/advisories/mfsa2026-10/

There appears to be more details in https://bugzilla.mozilla.org/show_bug.cgi?id=2014390 located at the bottom. When I try to view the details it asks me to log in. I do not see any reason I should have to log in to view the issue as I only intend to view the bug. Why does it require a login ?

Solved 7 140

firefox crashing

For the last 2 weeks I started having problems with Firefox working consistently. Sometimes only tabs crash, sometimes Firefox crashes. It is not tied to any actions, a t… (read more)

For the last 2 weeks I started having problems with Firefox working consistently. Sometimes only tabs crash, sometimes Firefox crashes. It is not tied to any actions, a tab can crash even if you don't perform any actions in the browser. I have tried clean install on Fedora and Vanilla OS, native and Flatpak packages. The result is always the same - tabs or Firefox crashes every few minutes.

Solved Archived 7 449

Tab dragging stops working at random times

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor doe… (read more)

Sometimes drag functionality stops working. I can't grab a tab to move it to another position or to a new window. (Holding left click on the tab and moving the cursor does nothing). Also, re-merging the tab with another firefox window stops working. (Dragging a tab to a firefox window from another firefox window doesn't merge them. It does nothing) I can right click on the tab and select Move to move it to a new window but dragging stops working. I have to close Firefox and start it again (sometimes twice), then dragging starts working again. This happens multiple times a day. I am on Linux Mint and the version is 126.0 (64-bit). This problematic behavior has only recently began.

Solved Archived 7 1351

Firefox Flatpak unable to load Google.com (infinite loading loop) on Pop!_OS

I am experiencing an issue where Google.com (other google domains work fine) will not load in Firefox, resulting in an infinite loading loop. Other browsers on the same s… (read more)

I am experiencing an issue where Google.com (other google domains work fine) will not load in Firefox, resulting in an infinite loading loop. Other browsers on the same system (Brave) work fine.

Here are the steps I have already tried:

Reinstalled Firefox completely

Removed Firefox via sudo apt remove --purge firefox -y

Cleared all user profiles and caches: ~/.mozilla/firefox, ~/.cache/mozilla, ~/.config/Mozilla

Reinstalled via Flatpak

Tested network connectivity outside Firefox

curl google.com works correctly

DNS resolution works via getent hosts google.com in the host system

Checked proxy settings

Ensured “No proxy” is selected in Firefox → did not resolve the issue

Tested in Safe Mode (disabling extensions)

Problem persists, so not caused by extensions

Tried disabling IPv6 inside Firefox

network.dns.disableIPv6 set to true → no effect

Cleared DNS cache inside Firefox

about:networking#dns → clicked “Clear DNS Cache” → no effect

Disabled DNS-over-HTTPS (Secure DNS)

about:preferences#privacy → “Use secure DNS” → disabled → no effect

Disabled HTTP/3 (QUIC)

network.http.http3.enabled set to false → no effect

Verified Flatpak network permissions

flatpak info --show-permissions org.mozilla.firefox shows network access allowed

Inside the Flatpak shell:

flatpak run --command=sh org.mozilla.firefox getent hosts google.com

→ returns only IPv6 address: 2800:3f0:4001:839::200e google.com

Solved Archived 7 354

Switzerland emoji flag replaced with the one of Sark

Hi, I discovered today that the installation of Firefox I have has modified some emoji, like the flag of Switzerland has been replaced with the one from Sark. See the scr… (read more)

Hi,

I discovered today that the installation of Firefox I have has modified some emoji, like the flag of Switzerland has been replaced with the one from Sark. See the screenshot looking at the same website with Firefox on the left, and Brave on the right:

There's a big mess in the flags' emojis apparently looking at a page showing all the countries. See second screenshot.

Solved Archived 7 313

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (read more)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

Solved Archived 7 661

Linux / Plasma 6.4/Wayland (amd gpu) After enabling HDR in firefox - all non HDR (youtube) content just shows green sceen

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland) I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks ama… (read more)

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland)

I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks amazing!) however.. I have an issue in that all non HDR content doesn’t show any video (I have sound) just a green sceen (see screen shot) including all ads.

Any idea how to work round this ?

I have AMD 7800 GPU .

Cheers

Solved Archived 7 1359

My developer account has been disabled and I want to appeal

I am the developer of FastF1, an open source Python package for downloading and analyzing Formula 1 race results, timing data and telemetry. The package is widely used in… (read more)

I am the developer of FastF1, an open source Python package for downloading and analyzing Formula 1 race results, timing data and telemetry. The package is widely used in the fan community for independent analysis of results. For some advanced features, the addon requires users to authenticate with their Formula1/F1TV account. Since their services don't have an open login API, a companion addon is required to allow users to sign in using their browser and the official website.

I have just noticed that my developer account has been banned and the addon was blocked in Firefox. I have not received any email about this and don't know why exactly this decision was made. I'd like appeal this and reinstate my account and the addon, but I don't know how to proceed from here.

FastF1 and the companion addon are fully open source and intend no harm to users. https://github.com/theOehrly/Fast-F1 https://github.com/theOehrly/fastf1-companion

I hope this problem can be resolved.

Solved 7 176

firefox on an old computer

hi, I have an old PC with this CPU: Architecture: i686 CPU op-mode(s): 32-bit Address sizes: 34 bits physical, 32 bits virtual Byte Ord… (read more)

hi,

  I have an old PC with this CPU:

Architecture: i686

 CPU op-mode(s):         32-bit
 Address sizes:          34 bits physical, 32 bits virtual
 Byte Order:             Little Endian

CPU(s): 1

 On-line CPU(s) list:    0

Vendor ID: AuthenticAMD

 BIOS Vendor ID:         AMD                                             
 Model name:             AMD Sempron(tm) 2400+
   BIOS Model name:      AMD Sempron(tm) 2400+                             CPU @ 1.6GHz
   BIOS CPU family:      29
   CPU family:           6
   Model:                8
   Thread(s) per core:   1
   Core(s) per socket:   1
   Socket(s):            1
   Stepping:             1
   BogoMIPS:             3333.66
   Flags:                fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat p
                         se36 mmx fxsr sse syscall mp mmxext 3dnowext 3dnow cpuid 3dnowprefe
                         tch vmmcall

Caches (sum of all):

 L1d:                    64 KiB (1 instance)
 L1i:                    64 KiB (1 instance)
 L2:                     256 KiB (1 instance)

Vulnerabilities:

 Gather data sampling:   Not affected
 Itlb multihit:          Not affected
 L1tf:                   Not affected
 Mds:                    Not affected
 Meltdown:               Not affected
 Mmio stale data:        Not affected
 Reg file data sampling: Not affected
 Retbleed:               Not affected
 Spec rstack overflow:   Not affected
 Spec store bypass:      Vulnerable
 Spectre v1:             Mitigation; usercopy/swapgs barriers and __user pointer sanitizatio
                         n
 Spectre v2:             Mitigation; Retpolines; STIBP disabled; RSB filling; PBRSB-eIBRS No
                         t affected; BHI Not affected
 Srbds:                  Not affected
 Tsx async abort:        Not affected


in some linux (arch 32 bit) I have problem executing firefox, Is there a version for CPU without request from SSE3 Flag?

thanks

Solved Archived 7 436

Bookmark-Bar not shown in fullscreen mode with newer firefox version

Same Problem as here but thread is archived: https://support.mozilla.org/en-US/questions/1465988 It has always worked great until now, but it seems that it no longer work… (read more)

Same Problem as here but thread is archived: https://support.mozilla.org/en-US/questions/1465988

It has always worked great until now, but it seems that it no longer works with Firefox 147.0.1. Does anyone have any idea how to fix this?

Solved 6 216

Google sign in pop-up.

Does anyone know how to configure Firefox to stop the annoying google log-in pop-up? I've seen others ask the same question, but I have not seen any functional answers. … (read more)

Does anyone know how to configure Firefox to stop the annoying google log-in pop-up? I've seen others ask the same question, but I have not seen any functional answers. I've never had a google account, for anything. I don't get the pop-up with other browsers, like Falcon or Brave. It's just a problem on Firefox. I appreciate you help!

Solved Locked Archived 6 8452

How to never, never, never, never, ***never*** (!!!) restore previous session?

Please forgive me if this question was already answered and that I might have accidentally overlooked that answer. I'm running Firefox 144.0 (64-bit) under Debian 13 (lin… (read more)

Please forgive me if this question was already answered and that I might have accidentally overlooked that answer.

I'm running Firefox 144.0 (64-bit) under Debian 13 (linux).

I want to configure Firefox to never restore any previous session when it starts up, irrespective of how Firefox was last exited.

Even if a running Firefox session was externally killed via some sort of system command or because of a reboot, I never, never, never, never, never, never, never, NEVER (!!!) want it to restart in any previous session.

I ALWAYS (!!!) want Firefox to launch with its default start page, no matter what.

I tried all of the suggestions that I have found on line about how this might be accomplished, but with each one of them, there are cases where the previous session was restored.

I repeat, I do NOT (!!!) EVER (!!!) want the previous session to be restored, under any circumstances.

Is there a way to accomplish this?

Thank you in advance for any suggestions, and again, please accept my apology if this has been answered and I overlooked that answer.

Solved 6 1 242

Unable to Reinstante Missing Bookmark Toolbar Icons

I'm running 145.0.2 on Mint Linux and Windows 11... Like many other users, I have an issue in which roughly half of the icons representing bookmarks on my Bookmarks Tool… (read more)

I'm running 145.0.2 on Mint Linux and Windows 11...

Like many other users, I have an issue in which roughly half of the icons representing bookmarks on my Bookmarks Toolbar have been replaced by the black+and+white icon of a globe. The links work, but because most of them are now the same, it means I have to hover over them to make sure I click on the link I want.

I've tried: Exporting all my bookmarks to HTML; deleting all bookmarks; re-importing Deleting the "favicons.sqlite" database and letting Firefox recreate it Creating a new Profile and importing all my bookmarks "fresh" in to there

Not only does none of this seem to work, the results are actually inconsistent.

This problem has been kicking around for years - certainly for many major releases of the browser. I understand that there could be deep/complicated issues such as a corrupt user profile, for example...

Unfortunately, however, there does not appear to be any consistent or reliable effective advice on how to fix this issue... and nothing I try seems to resolve the problem.

I'd be very grateful for any recommendations on a reliable repair for this issue.

But I'd also be grateful for suggestions as to how we might go about suggesting to the devs that this long-running bug is overdue a permanent fix.

Thanks in hope.

Solved Archived 6 264

Am I witnessing FF failing?

After all of those years, am I witnessing now that FF literally failing? How could it become mysterious by that it lets user's location leaked to github even though: - th… (read more)

After all of those years, am I witnessing now that FF literally failing?

How could it become mysterious by that it lets user's location leaked to github even though: - third-party HiFi company VPN is active and in OpenVPN UDP/TCP, Wireguard, IPv6 On/Off, etc... - No bookmark to corresponding website - Cache and website data were so-called cleaned, - Other browsers don't give that symptom, only FF - No related plugin, out of only 3

it's impossible to find out how it lends to the language and region query of this website every time after cleaning. Is FF getting closed app?

Is that a no-way-to-explain effect of language models' evolution is exponentially higher in every 4 months after two years?

Solved 6 145

Firefox isn't allowing me to upload images almost anywhere

I am on endeavourOS (linux). Whenever I try to upload images for a profile picture to sites like youtube or X, the image becomes corrupted and doesn't upload correctly. I… (read more)

I am on endeavourOS (linux). Whenever I try to upload images for a profile picture to sites like youtube or X, the image becomes corrupted and doesn't upload correctly. It did this with whatsapp too and I had to use a separate app for it. Other posts said that disabling "privacy.resistFingerprinting" would fix it, but it's already disabled.

Attached below are an example of this bug and the contents of this image when viewed on a text editor.

Solved Archived 6 357

Firefox lagging lagging a ton for a second or two

I tried the troubleshooting mode, which turns off all the add-ons. Despite that, my Firefox still lags. For example, when I click on a new tab, it takes a couple of secon… (read more)

I tried the troubleshooting mode, which turns off all the add-ons. Despite that, my Firefox still lags. For example, when I click on a new tab, it takes a couple of seconds to open. When I am typing, it takes a few seconds every now and then to catch up. Additionally, when I am scrolling, it will be unresponsive for a couple of seconds before jumping to where I supposedly scrolled to. I am using Mint Linux Firefox 128.0.3. Processor: 13th Gen Intel© Core™ i7-13700HX × 16. Graphics:

 Device-1: Intel driver: i915 v: kernel
 Device-2: NVIDIA driver: nvidia v: 550.90.07
 Device-3: Cheng Uei Precision Industry (Foxlink) HP Wide Vision HD Camera
   type: USB driver: uvcvideo
 Display: x11 server: X.Org v: 1.21.1.4 driver: X:
   loaded: modesetting,nvidia unloaded: fbdev,nouveau,vesa gpu: i915
   resolution: 3424x1926~240Hz
 OpenGL: renderer: Mesa Intel UHD Graphics (ADL-S GT1)
   v: 4.6 Mesa 23.2.1-1ubuntu3.1~22.04.2
Solved Archived 6 334