https://civitai.com/videos causes palemoon to use constantly increasing amount of memory (~ +1GB every 10-15 seconds), while interface becomes barely responsive.
Videos only play for first 10-15 seconds after opening the page, after which they freeze and update maybe 1 frame in 20-30 seconds.
Error console is constantly spewing new lines about "unreachable code after return statement", faster then lagging interface can scroll them
https://civitai.com/videos page causes palemoon to eat constatly increasing amount of memory
Moderator: trava90
Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.
Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
- Clear any current output
- Navigate or refresh the page in question
- Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
-
- Moon lover
- Posts: 84
- Joined: 2014-11-04, 12:27
- Location: Kiev, Ukraine
-
- Board Warrior
- Posts: 1090
- Joined: 2020-05-31, 04:33
Re: https://civitai.com/videos page causes palemoon to eat constatly increasing amount of memory
Sounds awful, like malware, I don't even want to go to the site to try it out.Harkonnen wrote: ↑2025-04-20, 16:10https://civitai.com/videos causes palemoon to use constantly increasing amount of memory (~ +1GB every 10-15 seconds), while interface becomes barely responsive.
Videos only play for first 10-15 seconds after opening the page, after which they freeze and update maybe 1 frame in 20-30 seconds.
Error console is constantly spewing new lines about "unreachable code after return statement", faster then lagging interface can scroll them
-
- Board Warrior
- Posts: 1712
- Joined: 2018-06-08, 17:02
Re: https://civitai.com/videos page causes palemoon to eat constatly increasing amount of memory
(I'll just confirm the issue. High CPU & increasing RAM usage.
And, you may even need to physically kill PM [after you have "closed" it].
Time to use a different browser.
FF 115 also eats CPU.
Memory remains static. And at least you can actually interact with the site & watch the "vids".)
And, you may even need to physically kill PM [after you have "closed" it].
Time to use a different browser.
FF 115 also eats CPU.
Memory remains static. And at least you can actually interact with the site & watch the "vids".)
-
- Lunatic
- Posts: 398
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: https://civitai.com/videos page causes palemoon to eat constatly increasing amount of memory
It seems missing CSS container-type is causing it to use the wrong size, so it continuously loads images, rather than waiting for scrolling to reach the end; here's a userstyle to explicitly set the height.
And just for fun here's a Modify HTTP Response filter to remove the adblock image (may break on update).
Code: Select all
@-moz-document domain("civitai.com") {
.scroll-area {
max-height: 100vh
}
}
Code: Select all
[["civitai.com",["/_app.*\\.js$/",["if(!o)return null","return null"]]]]