Ceisteanna leis an gclib seo á dtaispeáint:

captcha not working...never ends

On a couple of websites, but in particular Rogers.com, the captcha just never ends. It asks to click on all the bicycles, I click on them one at a time until no more app… (tuilleadh eolais)

On a couple of websites, but in particular Rogers.com, the captcha just never ends. It asks to click on all the bicycles, I click on them one at a time until no more appear, hit verify, it brings up something else. It will do this dozens of times and just never ever end.

Switch over to Edge, does the same. Switched to chrome and it works fine. Has google done something to captcha to deny it working on other browsers?

I have checked to see firefox is up to date and it is. I have disabled all extensions/addons. I have run malware/virus scans. On the Rogers community forums there are all kinds of people having problems but there are no solutions on how to fix. Oddly (or not) the problems are similar...captcha won't work on Edge, Firefox but will work on Chrome.

Réitithe Faoi Ghlas Cartlannaithe 29 3027

site images often do not load (ex: amazon shopping cart)

This started a week or two ago intermittantly on some websites. Today I cannot see any images of amazon items in the shopping cart. I can see the thumbnails in the righ… (tuilleadh eolais)

This started a week or two ago intermittantly on some websites. Today I cannot see any images of amazon items in the shopping cart. I can see the thumbnails in the right side bar, and if I click on an item, the image appears on its for sale page. Ebay usually shows the first image, but the rest won't load, unless I click on "unable to load images" and then they might. Or if I use the icon to put the images in their own box, I can < and > to navigate them

Turned the new "secure DNS" feature off & on, no difference. Turned off NoScript, no difference.

Cartlannaithe 27 488

I'm getting a popup blocked on a page I need to have the popup working

I have turned off all extensions, allowed all permissions on the page, changed the Privacy to Standard, turned off enhanced protection, but I still cannot get the popup t… (tuilleadh eolais)

I have turned off all extensions, allowed all permissions on the page, changed the Privacy to Standard, turned off enhanced protection, but I still cannot get the popup to show on this page (need login to see actual page)

https://app.gohighlevel.com/location/ApwnvXGFIEHm8LKgmFQz/page-builder/hKQsgETZFHVjwGxTUCeN

I cannot find anything else which can be blocking it, but something is.

If I load the page in Edge, it works fine.

Cartlannaithe 22 260

Hardware Video Encoding seems broken on Arch Linux with an AMD RX 7800 XT

I have a problem where if I install the packages needed to get hardware video decoding working in firefox it completely breaks YouTube playback. I can't find any info on … (tuilleadh eolais)

I have a problem where if I install the packages needed to get hardware video decoding working in firefox it completely breaks YouTube playback. I can't find any info on the internet about the problem and I am having a lot of trouble with it. YouTube playback with libva-mesa-driver and libva-vdpau-driver will start stop restart start playing audio then crash with a this error every single time. I am at my wits end trying to figure out this problem and I would love help figuring out the problem I am using firefox-developer-edition as a note thanks Ozzy

Cartlannaithe 18 145

Netflix Error - F7355-1203

Hi, I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error … (tuilleadh eolais)

Hi,

I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error F7355-1203.

I've checked the DRM setting and it is enabled, I checked addons and I have OpenH264 and Widevine installed, both set to always active.

I've checked installed codecs and I do have libavcodec58 installed. No update for that available via apt. I also have ffmpeg installed, no problem with that either. I can play Netflix videos in Chrome, but not in Firefox now. Something happened to Firefox when I updated from 120.x to 124.x. Today I updated to 125.x, same problem, Netflix video won't play.

I've unchecked the DRM setting and re-checked it, and that does reinstalled Widevine but does not fix the problem.

Any ideas what could be the cause?

Réitithe Cartlannaithe 17 923

Captcha not working on firefox 127.0.1 yet again

Hi, am running firefox 127.0.1 on a windows 11 desktop. Numerous sites that use a captcha to login fail. In other words, the captcha never loads and I cannot login to tho… (tuilleadh eolais)

Hi,

am running firefox 127.0.1 on a windows 11 desktop. Numerous sites that use a captcha to login fail. In other words, the captcha never loads and I cannot login to those sites. Such sites include teamfaderpro, Coursera, and bandcamp. All logins fail as the captcha is required to be passed prior to logging in, but the captcha never appears and so when I try to log in, nothing happens and I cannot login.

I have tried the above same sites on the Edge browser and have no such issue, the captcha shows and I can login.

Just FYI, the agent switcher setting change recommended by others previously is not suitable. When I tried that fix I was unable to access a considerable percentage of the internet due to some cloudflare issue, so the agent switcher setting is not an option. So far, I have tried all recommended settings to fix this issue and nothing has worked.

I am surprised no one else is having this issue.

Any help is appreciated, or at least inform google/mozilla about this issue as it has been ongoing (on and off) for me for many months. And yes, this problem is persistent for me at the moment, it remains despite rebooting windows, despite clearing cookies and cache (which I have set to automatically delete when exiting firefox).

Réitithe Cartlannaithe 14 758

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="strokeC… (tuilleadh eolais)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Cartlannaithe 14 259

Spotify webplayer on Firefox is unuseable after updating to latest version

Majority of the songs do not play and I'm given with a pop-up, "Spotify can't play this right now. If you have the file on your computer you can import it." I will play a… (tuilleadh eolais)

Majority of the songs do not play and I'm given with a pop-up, "Spotify can't play this right now. If you have the file on your computer you can import it."

I will play a song from a playlist and is given that pop-up, it will continue skipping to the next song until it plays, but only for 9-10 seconds until the song mutes, to specify, the dot (when hovered on the progress bar) will still move, indicating that "it's playing".

Some clarifications: 1. I use Spotify Desktop app (windows), Spotify App (android), and Spotify Webplayer on Chrome and Firefox. Everything works just as fine on all of these, except for Spotify Webplayer on Firefox. 2. Skipping to a later timestamp does not unmute the song. 2. I have Spotify Premium 3. I have no VPN 4. I am running Firefox with an ad blocker 5. I am running Chrome with an ad blocker (same ad blocker in Fifefox) 6. I am running Firefox to the latest version (Firefox 119.0.1 (20231106151204))

What I've done so far: 1. Cleared caches and data. 2. Updated my Windows to the latest update available - Win10 v.22H2 3. Signed-out of Spotify for all my devices, then logging-in first on Spotify Desktop (this automatically redirects to Firefox webplayer) 4. Ran Firefox on "Troubleshoot Mode" 5. Un-checked and re-checked "Play DRM content" setting. 6. Disabled and re-enabled the plug-in "Widevine Content Decryption Module by Google Inc". (this plug-in is last udpated on November 17, 4.10.2710.0

I'm including this link from Spotify's Community page.. where two other users, who commented it is only with Firefox (webplayer), are experiencing the same problem as I am. https://community.spotify.com/t5/Desktop-Windows/Spotify-can-t-play-this-right-now-If-you-have-the-file-on-your/m-p/5679914#M123192

Réitithe Faoi Ghlas Cartlannaithe 13 2394

Getting PR_CONNECT_RESET_ERROR on websites which use TLS/SSL

For the past few days when I have tried to log into a few websites which use TLS/SSL I have gotten PR_CONNECT_RESET_ERROR. Please see the attached screenshot for more det… (tuilleadh eolais)

For the past few days when I have tried to log into a few websites which use TLS/SSL I have gotten PR_CONNECT_RESET_ERROR. Please see the attached screenshot for more details. This issue was observed ever since I updated to Firefox version 124.x. Prior to that the websites were working fine.

When I try to access the same websites and try to log into them using Microsoft Edge, I do not face a similar issue. They work fine.

I have cleared the browser cache, restarted firefox, and then tried. Still faced the same issue. I have cleared the DNS cache of Firefox browser (about:networking#dns) and then tried. Still faced the same issue. I have opened Firefox in Safe mode (Menu > Help > Troubleshooting mode) and still faced the same issue.

Can someone please help me in fixing the issue? I would like to refrain from using MS Edge or chrome browser.

Réitithe Cartlannaithe 13 23556

Using Node Express-Sessions to set cookie "httpOnly: true, secure: true, SameSite: "None" FF blocks authorization

My web site My web site allows user to login with .ejs Sign-up/Sign-in pages then delivers a React page. This works in Chrome and Safari. Https/SSL are provided by my ho… (tuilleadh eolais)

My web site My web site allows user to login with .ejs Sign-up/Sign-in pages then delivers a React page. This works in Chrome and Safari. Https/SSL are provided by my host A2Hosting.

Firefox warns "Cookie “connect.sid” does not have a proper “SameSite” attribute value" when the cookie is set and then blocks the react page after login. If I enter the route that leads to the react page directly I can login and don't get the warning. In both cases the Storage tab in Dev tools shows the same settings for the cookie.
I made sure to remove any cookies for my site before testing the second scenario. I have tested this on Windows, Linux and Android versions of Firefox with the same results.

Here is my Express-Session instantiation ``` app.use(expressSession({

 store: new pgSession({
   pool: pool,
   tableName: 'session'
   // Insert connect-pg-simple options here
 }),
 secret: process.env.SECRET,
 resave: false,
 saveUninitialized: false,

cookie: {

   httpOnly: true,
   Secure: true,
   SameSite: "None",
   path: ['/'],
   maxAge: 60 * 60 * 1000 * 5
 }
 // Insert connect-pg-simple options here

})) ``` I've tried changing the path to include the react app route, I've added it to Cors white list and I converted it to open with an .ejs file instead of .html with no results.

Thanks for your support and for a great browser

Cartlannaithe 12 92

Cannot report a broken site

I am attempting to report that Yahoo Finance is broken. From this URL, I use the "report broken site" feature: https://finance.yahoo.com/quote/DEO/ When I fill out the i… (tuilleadh eolais)

I am attempting to report that Yahoo Finance is broken. From this URL, I use the "report broken site" feature:

https://finance.yahoo.com/quote/DEO/

When I fill out the information and hit "send", nothing happens. The "report broken site" screen remains active. Hitting Send multiple times has no effect.

I've tried using this feature for other pages, and it appears to work; but it won't work for this site.

Can anyone suggest why that might be? Is it a byproduct of the site's being broken?

Thanks.

Cartlannaithe 12 146

Github is not rendering correctly

When I open github it loads incorrectly as shown in the picture, after I press F5 to reload the site load fine. I have tried deleting cookies and I am using any ad-blocke… (tuilleadh eolais)

When I open github it loads incorrectly as shown in the picture, after I press F5 to reload the site load fine. I have tried deleting cookies and I am using any ad-blocker. Any help? Thanks.

Cartlannaithe 11 76

Video does not play audio when I try to watch videos through duck duck go

I have tried watching videos through chrome and other browsers by searching something via duck duck go and watching that video on duck duck go, and it works on other brow… (tuilleadh eolais)

I have tried watching videos through chrome and other browsers by searching something via duck duck go and watching that video on duck duck go, and it works on other browser so it must be specific to firefox.

Whenever I try to watch a video, in the drop down bar firefox select to mute audio for some reason. I then select 'allow audio and video' and refresh the page but the video is still muted for some reason. This also happens when I try to use other video sites. This has only started to happen recently in the past two days (and yes I am updated to the latest version of firefox).

Réitithe Cartlannaithe 11 1669

How do I contact Firefox support directly?

I have been told by my bank that firefox wants their customers who are having a problem with the website when using firefox to contact firefox directly. How do I do that… (tuilleadh eolais)

I have been told by my bank that firefox wants their customers who are having a problem with the website when using firefox to contact firefox directly. How do I do that? I have wasted way too much time trying to find that contact information. Any help would be greatly appreciated.

Cartlannaithe 11 157

Not able to load sites

I was able to open reddit.com without any problems earlier, but recentrly I'm not able to load it up anymore. The loading screen is eternal and it doesnt show any kind of… (tuilleadh eolais)

I was able to open reddit.com without any problems earlier, but recentrly I'm not able to load it up anymore. The loading screen is eternal and it doesnt show any kind of error (unless it tries to connect for too long like a couple of minutes, then the error does shows up). The site still sends me notificarions through the browser though. Any other site loads up without a problem. I tried to use methods mentioned in the help article (turned off proxy, turned on network.dns.disableIPv6, deleted cookies and cache). In other browsers (Edge, for example) reddit.com loads just fine. Please help me if you can.

Cartlannaithe 11 170

Cloudflare Problems!

Soooo! everytime I try to open cloudflare, no matter what site it comes from, the connection refuses to go through and I'm only having this problem on firefox, I came fro… (tuilleadh eolais)

Soooo! everytime I try to open cloudflare, no matter what site it comes from, the connection refuses to go through and I'm only having this problem on firefox, I came from opera gx, had no problems with cloudflare till now!

Im using 4 extensions DarkReader Adblock https://getadblock.com/en/installed/?u=uzzl0uyf19852316&lg=en-US&an=adblockfirefox&av=6.2.0&ap=firefox&apv=126.0.1&p=gecko&pv=126.0 Return youtube dislike Tapermonkey I click the box to Verify that I am human on cloudflare keeps trying to connect, after 30 seconds the site just reloads asking me to click the box again. this repeats non stop.

Cartlannaithe 10 145

control + up shortcut does not work now. does not go to top of page.

control + UP (arrow) is documented to "go to top of page". That has broken as of 126.0 And, for some reason I don't remember, I found that using "HOME" in the past was … (tuilleadh eolais)

control + UP (arrow) is documented to "go to top of page". That has broken as of 126.0 And, for some reason I don't remember, I found that using "HOME" in the past was also problematic.

How do I report something as "b roken" to firefox and do you agree it is broken?

Réitithe Cartlannaithe 10 98

Firefox and Firefox-Dev crashes on google maps.

I use Firefox-Dev(129.0b9 (64-bit)) and Firefox (128.0.3 (64-bit)) as default browsers on my Gentoo Linux system with an Intel i7. Both Firefox-Dev and Firefox crash will… (tuilleadh eolais)

I use Firefox-Dev(129.0b9 (64-bit)) and Firefox (128.0.3 (64-bit)) as default browsers on my Gentoo Linux system with an Intel i7. Both Firefox-Dev and Firefox crash will visiting some websites. Especially Google maps. I have a Gentoo Laptop with and i3 where I run both Firefox-Dev and Firefox and things run fine. I have more software installed on the Intel i7. Video cards ar different of course.

Here is my ldd: opt/firefox $ ldd firefox linux-vdso.so.1 (0x00007ffc8e584000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f0161fe7000) libc.so.6 => /lib64/libc.so.6 (0x00007f0161e08000) /lib64/ld-linux-x86-64.so.2 (0x00007f0162007000)


Here is the crash report: AdapterDeviceID: 0x6613 AdapterDriverVendor: mesa/radeonsi AdapterDriverVersion: 24.1.3.0 AdapterVendorID: 0x1002 Add-ons: formautofill%40mozilla.org:1.0.1,pictureinpicture%40mozilla.org:1.0.0,webcompat-reporter%40mozilla.org:2.1.0,webcompat%40mozilla.org:129.3.0,default-theme%40mozilla.org:1.3,addons-search-detection%40mozilla.com:2.0.0 AvailablePageFile: 98520420352 AvailablePhysicalMemory: 57304293376 AvailableSwapMemory: 68719472640 AvailableVirtualMemory: 65166487552 BackgroundTaskMode: 0 BuildID: 20240726091552 ContentSandboxCapabilities: 119 ContentSandboxCapable: 1 ContentSandboxLevel: 4 CrashTime: 1722173712 DOMFissionEnabled: 1 DOMIPCEnabled: 1 DesktopEnvironment: xfce EMCheckCompatibility: true GpuSandboxLevel: 0 GraphicsNumActiveRenderers: 1 GraphicsNumRenderers: 1 HeadlessMode: 0 InstallTime: 1722086601 IsWayland: 0 LastStartupWasCrash: 1 LinuxUnderMemoryPressure: 0 Notes: Gentoo LinuxFP(D00-L1000-W0000000-T01) WR? WR+ EGL? EGL- GL Context? GL Context+ WebGL? WebGL+ ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} ProductName: Firefox RDDProcessStatus: Running ReleaseChannel: aurora SafeMode: 0 SecondsSinceLastCrash: 324 StartupCacheValid: 0 StartupCrash: 0 StartupTime: 1722173401 SubmittedFrom: Client TelemetryClientId: 8d5032ba-a1c3-4acb-b235-847bd4545b87 TelemetryEnvironment: {"build":{"applicationId":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","applicationName":"Firefox","architecture":"x86-64","buildId":"20240726091552","version":"129.0","vendor":"Mozilla","displayVersion":"129.0b9","platformVersion":"129.0","xpcomAbi":"x86_64-gcc3","updaterAvailable":true},"partner":{"distributionId":null,"distributionVersion":null,"partnerId":null,"distributor":null,"distributorChannel":null,"partnerNames":[]},"system":{"memoryMB":64259,"virtualMaxMB":null,"cpu":{"count":12,"cores":6,"vendor":"GenuineIntel","name":"Intel(R) Core(TM) i7-3930K CPU @ 3.20GHz","family":6,"model":45,"stepping":7,"l2cacheKB":256,"l3cacheKB":12288,"speedMHz":5700,"extensions":["hasMMX","hasSSE","hasSSE2","hasSSE3","hasSSSE3","hasSSE4_1","hasSSE4_2","hasAVX","hasAES"]},"os":{"name":"Linux","version":"6.6.38-gentoo","locale":"en-US","distro":"Gentoo","distroVersion":"2.15"},"hdd":{"profile":{"model":null,"revision":null,"type":null},"binary":{"model":null,"revision":null,"type":null},"system":{"model":null,"revision":null,"type":null}},"gfx":{"D2DEnabled":null,"DWriteEnabled":null,"ContentBackend":"Skia","Headless":false,"EmbeddedInFirefoxReality":null,"TargetFrameRate":60,"adapters":[{"description":"OLAND (radeonsi, , LLVM 18.1.8, DRM 2.50, 6.6.38-gentoo)","vendorID":"0x1002","deviceID":"0x6613","subsysID":null,"RAM":0,"driver":null,"driverVendor":"mesa/radeonsi","driverVersion":"24.1.3.0","driverDate":null,"GPUActive":true}],"monitors":[{"screenWidth":1920,"screenHeight":1080}],"features":{"compositor":"webrender","hwCompositing":{"status":"available"},"gpuProcess":{"status":"unused"},"webrender":{"status":"available"},"wrCompositor":{"status":"blocked:FEATURE_FAILURE_DISABLE_RELEASE_OR_BETA"},"openglCompositing":{"status":"available"},"omtp":{"status":"unused"}}},"appleModelId":null,"hasWinPackageId":null},"settings":{"blocklistEnabled":true,"e10sEnabled":true,"e10sMultiProcesses":8,"fissionEnabled":true,"telemetryEnabled":true,"locale":"en-US","intl":{"requestedLocales":["en-US"],"availableLocales":["en-US"],"appLocales":["en-US"],"systemLocales":["en-US"],"regionalPrefsLocales":["en-US"],"acceptLanguages":["en-US","en"]},"update":{"channel":"aurora","enabled":true,"autoDownload":true,"background":true},"userPrefs":{"browser.search.region":"US","browser.search.widget.inNavBar":false,"browser.urlbar.autoFill":true,"browser.urlbar.autoFill.adaptiveHistory.enabled":false,"browser.urlbar.dnsResolveSingleWordsAfterSearch":0,"browser.urlbar.quicksuggest.dataCollection.enabled":false,"browser.urlbar.suggest.quicksuggest.nonsponsored":true,"browser.urlbar.suggest.quicksuggest.sponsored":true,"media.gmp-gmpopenh264.enabled":false,"media.gmp-gmpopenh264.lastInstallStart":1721840659,"media.gmp-gmpopenh264.lastDownload":1721840660,"media.gmp-gmpopenh264.lastUpdate":1721840660,"media.gmp-manager.lastCheck":1722086677,"media.gmp-manager.lastEmptyCheck":1722086677,"network.trr.strict_native_fallback":false,"widget.content.gtk-high-contrast.enabled":true},"sandbox":{"effectiveContentProcessLevel":4,"contentWin32kLockdownState":3},"addonCompatibilityCheckEnabled":true,"isDefaultBrowser":true,"defaultSearchEngine":"google-b-1-d","defaultSearchEngineData":{"loadPath":"[app]google@search.mozilla.org","name":"Google","origin":"default","submissionURL":"https://www.google.com/search?client=firefox-b-1-d&q="}},"profile":{"creationDate":19928,"firstUseDate":19928},"addons":{"activeAddons":{"formautofill@mozilla.org":{"version":"1.0.1","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":null,"name":"Form Autofill","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"pictureinpicture@mozilla.org":{"version":"1.0.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Fixes for web compatibility with Picture-in-Picture","name":"Picture-In-Picture","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"webcompat-reporter@mozilla.org":{"version":"2.1.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Report site compatibility issues on webcompat.com","name":"WebCompat Reporter","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false},"webcompat@mozilla.org":{"version":"129.3.0","scope":1,"type":"extension","updateDay":19926,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Urgent post-release fixes for web compatibility.","name":"Web Compatibility Interventions","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19926,"quarantineIgnoredByApp":true,"quarantineIgnoredByUser":false}},"theme":{"id":"default-theme@mozilla.org","blocklisted":false,"description":"Follow the operating system setting for buttons, menus, and windows.","name":"System theme — auto","userDisabled":false,"appDisabled":false,"version":"1.3","scope":4,"foreignInstall":false,"hasBinaryComponents":false,"installDay":19928,"updateDay":19928},"activeGMPlugins":{}},"experiments":{"upgrade-spotlight-rollout":{"branch":"treatment","type":"nimbus-rollout"}}} TelemetryServerURL: https://incoming.telemetry.mozilla.org TelemetrySessionId: aba8ef58-e31e-4fc6-b7a6-a5473f7d83d7 Throttleable: 1 TotalPageFile: 136099627008 TotalPhysicalMemory: 67380154368 URL: https://www.google.com/maps?authuser=0 UptimeTS: 311.090528 UtilityProcessStatus: Running Vendor: Mozilla Version: 129.0 useragent_locale: en-US This report also contains technical information about the state of the application when it crashed.

Réitithe Cartlannaithe 9 229

Can no longer sign in to particular website using Firefox Browser

The website in question is https://accounts.groceries.morrisons.com/auth-service/sso/login If I use with the same username and password in MS Edge, I can successfully l… (tuilleadh eolais)

The website in question is https://accounts.groceries.morrisons.com/auth-service/sso/login

If I use with the same username and password in MS Edge, I can successfully login. I'm usng the Dashlane Password Mananger

FF 129.0.1 Edge 127.0.2651.105 OS Windows 11 Pro v 24H2 Build(26100.1457)

Réitithe Cartlannaithe 9 189

Website page does not fully load

This link does not fully load using Firefox, but does using Chrome. https://act.environmentaldefence.ca/page/147607/petition/1 I am unable to sign the petition because th… (tuilleadh eolais)

This link does not fully load using Firefox, but does using Chrome.

https://act.environmentaldefence.ca/page/147607/petition/1

I am unable to sign the petition because the whole form does not show up in Firefox.

Réitithe Cartlannaithe 9 219