Showing questions tagged: Show all questions

Obscure canvas rendering issue

Hello, I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint … (read more)

Hello,

I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint application. The issue is that the very first time that the user presses the mouse, the line stops abruptly, while the next times the lines are drawn correctly. The events seem to fire correctly and the page works fine at Chromium, so it seems to be a Firefox issue. You can find the html page below. I am curious, what could be the problem?

<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Canvas</title> <style> #canvas { background-color: whitesmoke; border: solid 2px brown; } </style> <canvas id="canvas"></canvas> <script> function startDrawing(e) { isDrawing = true; context.beginPath(); context.moveTo(e.offsetX, e.offsetY); } function draw(e) { if (isDrawing) { context.lineTo(e.offsetX, e.offsetY); context.stroke(); } } function stopDrawing(e) { console.log("stopped drawing") isDrawing = false; } const canvas = document.getElementById('canvas'); const context = canvas.getContext('2d'); var isDrawing = false; canvas.width = 1000; canvas.height = 1000; context.strokeStyle = "#913d88"; context.lineWidth = 2; canvas.onmousedown = startDrawing; canvas.onmouseup = stopDrawing; canvas.onmousemove = draw; </script>

Asked by ngiatsog 39 minutes ago

Last reply by ngiatsog 37 minutes ago

When first started, Firefox takes way too long to load any website

I'm hoping someone can help with a conundrum. A few years ago, whenever I first started Firefox--whether I had just started up my computer or had exited Firefox and open… (read more)

I'm hoping someone can help with a conundrum.

A few years ago, whenever I first started Firefox--whether I had just started up my computer or had exited Firefox and opened it back up--it would take several minutes for Firefox to load any website (Google, Amazon, weather.com--anything). Once the first site loaded, it would load subsequent sites normally. Interestingly, it was only my default profile that was affected; if I used another profile or created a new one, websites would load within seconds of my starting Firefox.

I finally broke down and created a new default profile, imported my history/bookmarks/etc., reinstalled extensions, adjusted settings, etc. The new profile behaved nicely, loading the first website within a few seconds of Firefox starting. But over time, the load time has gradually increased to the point where it is now behaving just like the old profile: I load Firefox, I try to go to any website, and it takes several minutes for it to load.

Any ideas what's happening/what's the problem? Hoping someone out there has some wisdom and can help troubleshoot. Thanks!

Asked by pizzilla 11 hours ago

Last reply by pizzilla 1 hour ago

One site blank in Linux FF but not in Windows FF

https:\\archive.org works perfectly in Firefox on Win-10, but on a new Linux Mint install, (with default Firefox as included), this particular website simply displays as… (read more)

https:\\archive.org works perfectly in Firefox on Win-10, but on a new Linux Mint install, (with default Firefox as included), this particular website simply displays as a blank white screen. Every other website I try on the Linux install works perfectly; it is only this one website which does not work.

There are no add-ons, no proxies, no security suites, nothing extra. I cleared all cookies and cache. Tried running FF in Protected Mode. Nothing seems to fix it.  There are no error messages displayed - just a blank white screen.

And, to make it worse, I am not particularly computer-literate, (I'm 82 years old...), so you will have to give me simple guidance if I need to get involved with deeper logging etc.

Asked by dmaxwell1 1 hour ago

Sky ID on my iPhone

I have received two emails from Sky regarding updating my Sky ID on my iPhone to enable continuing use of Yahoo emails. However, when I click on the link given there is a… (read more)

I have received two emails from Sky regarding updating my Sky ID on my iPhone to enable continuing use of Yahoo emails. However, when I click on the link given there is a Google error message denying access owing to a violation of Terms of Service. This means I am unable to update and could have future problems with access to Yahoo emails on my iPhone. Can you help? Alan Warburton.

Asked by warburton-alan 1 hour ago

A new pop-up box is preventing me from using a site I have been using regularly for several years

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference wheth… (read more)

I've been using a Rewards site regularly (3/4 times per month) for several years without problem. This weekend the attached pop-up appeared. It makes no difference whether I select Resend or Cancel, the program just re-displays the pop-up trapping me in an endless loop. The only exit is to close the window and abort the process. I was able to complete the task without any problem using Edge instead so it appears to be a Firefox specific issue. I haven't consciously changed anything since last using the site successfully on 24 May. Any help/suggestions appreciated.

Asked by eregister 2 hours ago

Buzzing static noise when visiting certain sites

In Firefox, whenever I go to nab.com.au and then click on Login on the top right, I hear a constant stream of static noise coming out of the speakers. In Chrome, when I… (read more)

In Firefox, whenever I go to nab.com.au and then click on Login on the top right, I hear a constant stream of static noise coming out of the speakers.

In Chrome, when I just visit nab.com.au that same noise starts.

I have a set of Bose speakers connected via an optical cable.

This behaviour doesn't happen on all sites. Just some. As soon as you close the tab, the noise goes away.

It's driving me absolutely nuts.

Asked by flecko561 6 hours ago

cookie content pop up are shown for some webpages but not others

Hi Forefox dosent show cookie content pop ups for some webpages. Have tried loading the same webpages with Edge, and a pop up is shown, whwere i am asked which cookies i … (read more)

Hi Forefox dosent show cookie content pop ups for some webpages. Have tried loading the same webpages with Edge, and a pop up is shown, whwere i am asked which cookies i would allow.

Have cleared the cahe/cookie, started up in secured mode, deleted profiles (made an search on firefox/Mozilla and deleted all files) and reinstalled firefox but the problem persist.

It started a month ago, just like that, Have changed pc, to a new one, and from windows 10 to windows 11, still the same.

Help would be nice, thank you.

Asked by Donsby 6 hours ago

mp4 videos fail to load using <video> tag

I am trying to add an mp4 video to my website using the following code: <video width="320" height="240" controls> <source src="images/###.mp4" type="video/mp… (read more)

I am trying to add an mp4 video to my website using the following code:

<video width="320" height="240" controls>
  <source src="images/###.mp4" type="video/mp4">
</video>

where ### is the name of the video file. I get the following error message:

"No video with supported format or MIME type found."

In the console the following is displayed:

"Media resource http://127.0.0.1:5502/images/###.mp4 could not be decoded. video.html All candidate resources failed to load. Media load paused. video.html Media resource http://127.0.0.1:5502/images/###.mp4 could not be decoded, error: Error Code: NS_ERROR_DOM_MEDIA_METADATA_ERR (0x806e0006)"

Runs just fine in Chrome and I have no pop-up blockers installed. Autoplay is set to be allowed for all websites.

Windows 11 version 23H2. Firefox version: 126.0 (64-bit)

Asked by crb001 1 day ago

Last reply by TyDraniu 7 hours ago

mobile desk top view auto resets after switching tabs!

Hello! For the past many months (possibly a year), the mobile to desk top view setting never stays ON as default. If I leave my email page (while in desk top view), go … (read more)

Hello!

For the past many months (possibly a year), the mobile to desk top view setting never stays ON as default. If I leave my email page (while in desk top view), go to another tab & come back even 2 mins later, my email's right back to the mobile view again! I've even tried to switch the setting (in the menu) back to mobile view to reset it, but it just won't reset. The desk top view icon stays turned on & won't turn off, however, the site stays in mobile view. The only way I can reset this & turn the desk top view back on, is to close out my email & reopen it, then tap the setting back on again (& just don't leave the tab)! I have searched "high n low, everywhere" for help on this issue for a long time, however, not even on the FF site, can I find ANY article what so ever about this setting! And yes I "have" cleaned out cache, uninstalled, reinstalled etc... I do believe I have sent in a few support requests in the past (don't recall where or how lol), but never get a reply. I also remember being directed to the "submit a bug report" page but, haha, yeah, I have no idea how to do that, it all looks very foreign to me lol! Is there any way for this to be fixed in an update, or even on my end? Are any others having this issue...?

I would greatly & sincerely appreciate any help if possible?! I've been using FF for "many" years & really don't wish to change!

Thank you so much! Sharon

Asked by Sharon 20 hours ago

Feature request in Reading mode

I would like to request a feature for reading mode. If we could flip page like Kindle book, instead of page scroll, especially in reading mode, it will be great! BTW I h… (read more)

I would like to request a feature for reading mode. If we could flip page like Kindle book, instead of page scroll, especially in reading mode, it will be great!

BTW I have chosen to use Mozilla Firefox instead of chrome because of this reading mode feature. Thank you for this great feature!

Asked by p_achalam 13 hours ago

Last reply by Paul 9 hours ago

Printing emails

I have used Firefox for Windows for many years and have had no problems until recently. I have been unable to print my emails: when I click on the printer icon in the upp… (read more)

I have used Firefox for Windows for many years and have had no problems until recently. I have been unable to print my emails: when I click on the printer icon in the upper right corner of an email nothing happens. I was wondering if there was something in the settings that was causing this problem. Thank you!

Asked by javajiving 11 hours ago

Last reply by jscher2000 - Support Volunteer 9 hours ago

firefox 126.0.1 is broken after update / reinstalling and sync to mozilla profile

I have installed firefox in my laptop for years. after latest update, firefox runs just fine only for the 1st time, then after closing the app / restarting the laptop, fi… (read more)

I have installed firefox in my laptop for years. after latest update, firefox runs just fine only for the 1st time, then after closing the app / restarting the laptop, firefox keep giving error (attached) I have tried to refresh, run troubleshoot mode, uninstall and reinstall again at one point I was able to recreate the issue only after reinstalling firefox 126.0.1 portable version and then syncing to the profile ( run ok for 1st time, then it broke down after closing it) The problem also seems repeatable using firefox 115 protable Now, I tried to reinstall the portable version from scratch, it keeps hitting same error from 1st run

I have also double check the firewall and antivirus to make its not blocking All other browsers works just fine

Asked by blast_tortoise 2 days ago

Last reply by blast_tortoise 9 hours ago

  • Solved

Media resource could not be decoded, error: Error Code: NS_ERROR_DOM_MEDIA_METADATA_ERR (0x806e0006)

A recent set of system updates appears to have made most website videos not play in Firefox. When I inspect the Developer Tools - > Console tab the most detail Firefo… (read more)

A recent set of system updates appears to have made most website videos not play in Firefox.

When I inspect the Developer Tools - > Console tab the most detail Firefox gives are an error line similar to: Media resource URL could not be decoded, error: Error Code: NS_ERROR_DOM_MEDIA_METADATA_ERR (0x806e0006)

Internet searches for the error name and error hex do not appear yield any applicable troubleshooting, nor any methods of collecting additional problem data.

How can I obtain more detail on where the error is happening and how Firefox might be interacting with other packages present on my system?

Arch Linux has some older ffmpeg-compat packages, but those don't appear to match any of the web results, in that they're even older versions of ffmpeg.

yay -Ss ffmpeg-compat aur/ffmpeg-compat-55 2.3.6-4 (+24 0.00)

   Compatibility package for ffmpeg to provide versions 55 of libavcodec, libavdevice and libavformat, not anymore provided by the ffmpeg package

aur/ffmpeg-compat-54 1.2.12-4 (+87 0.00)

   Compatibility package for ffmpeg to provide versions 54 of libavcodec, libavdevice and libavformat, not anymore provided by the ffmpeg package

Asked by mjevans 2 weeks ago

Answered by mjevans 9 hours ago

google setting page incomplete

when I sign into Goog/setting/2 step, the page does not show "app passwords." I've turned off my ad-blocker extensions and pop-up blocker on the page. See attached. … (read more)

when I sign into Goog/setting/2 step, the page does not show "app passwords." I've turned off my ad-blocker extensions and pop-up blocker on the page. See attached.

Asked by metropical 23 hours ago

Last reply by metropical 16 hours ago

Yahoo News: "Your comment failed to publish" Error

For months, now, whenever I try to post a comment on a Yahoo! News article, it reads: "Your comment has failed to published." This only happens in Firefox. My "Privacy &a… (read more)

For months, now, whenever I try to post a comment on a Yahoo! News article, it reads: "Your comment has failed to published." This only happens in Firefox. My "Privacy & Security" settings are set to "Standard," my "History" set to "use custom settings for history" with settings "Remember browsing and download history" and "Clear history when Firefox closes." so cookies and cache get cleared then.

Sometimes this works when starting a new session. But I shouldn't have to start another session and lose all of my logins just to post a comment on a Yahoo News article.

Anyone else having this problem? Is there an easy and permanent fix? What are you settings set at?

Asked by FireFoxFan1 12 hours ago

Firefox doesn't work when i installed League of Legends with Vanguard anti cheat

Hello, I am experiencing an issue related to the Vanguard anti-cheat system used by Riot Games, specifically in relation to League of Legends. After installing the game … (read more)

Hello,

I am experiencing an issue related to the Vanguard anti-cheat system used by Riot Games, specifically in relation to League of Legends. After installing the game and Vanguard, I am unable to open Firefox. When I try to launch Firefox, nothing happens. However, if I change the name of the firefox.exe file, I can start Firefox on a different profile, but it only works for a short period before becoming unresponsive. None of the options or tabs respond after that.

Could you please provide assistance on how to resolve this issue?

Thank you.

Asked by bambodinho 13 hours ago