Loading this site ends to a freeze (Welt.de) Topic is solved
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.
Loading this site ends to a freeze (Welt.de)
Trying to open this site results in freezing palemoon (using the version 33.2.1 64-bit) but older versions behave equal.
https://www.welt.de/politik/deutschland ... r-FDP.html
https://www.welt.de/politik/deutschland ... r-FDP.html
Re: Loading this site ends to a freeze (Welt.de)
Fiddling with eMatrix says that the freezing is caused by the site's CSS.
If I enabled everything except the CSS there is no freezing, though the page is completely blank and unusable.
I don't have the means and knowledge to debug further, so I can't really provide more details.
If I enabled everything except the CSS there is no freezing, though the page is completely blank and unusable.
I don't have the means and knowledge to debug further, so I can't really provide more details.
Re: Loading this site ends to a freeze (Welt.de)
Thank you for your efforts. Needless to say: I can load the site with another browser.
Re: Loading this site ends to a freeze (Welt.de)
It seems something's gone awry with float:left; here's a Modify HTTP Response filter to remove it.
There's also something in the Javascript that causes it to lose the page (didn't investigate that), so turn Javascript off, too.
Code: Select all
[["/welt\\.de$/",["/^/",["/display:inline-block;float:left/g","display:inline-block"]]]]
Re: Loading this site ends to a freeze (Welt.de)
Do not think it has something to do with javascript!
If I select to: Palemoon-Menu-View-Page Style-No Style
The freeze is gone, and the page will be fully loaded but the Page Syle is ugly.
If I select to: Palemoon-Menu-View-Page Style-No Style
The freeze is gone, and the page will be fully loaded but the Page Syle is ugly.
Re: Loading this site ends to a freeze (Welt.de)
The freeze is because of the float, but then there's a Javascript issue that removes the scrollbar (or at least, that's what I experienced in Basilisk with my adblocker).
Re: Loading this site ends to a freeze (Welt.de)
@adoxa thanks for your support, now I got it and it works well
- CHris Hitarori
- Moongazer
- Posts: 14
- Joined: 2024-01-31, 14:02
Re: Loading this site ends to a freeze (Welt.de)
It's still freezing with the Modify HTTP Response filter given above.
If I modify the filter to
…it works. Maybe there are other floats (right/left/wherever) that need to be covered, too?
If I modify the filter to
Code: Select all
["/welt\\.de$/",["/^/",["/display:inline-block;float:*/g","display:inline-block"]]]