Loading this site ends to a freeze (Welt.de) Topic is solved

For support with specific websites

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:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
florin
Newbie
Newbie
Posts: 4
Joined: 2024-08-12, 10:27

Loading this site ends to a freeze (Welt.de)

Unread post by florin » 2024-08-12, 10:31

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

vannilla
Moon Magic practitioner
Moon Magic practitioner
Posts: 2244
Joined: 2018-05-05, 13:29

Re: Loading this site ends to a freeze (Welt.de)

Unread post by vannilla » 2024-08-12, 12:07

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.

User avatar
florin
Newbie
Newbie
Posts: 4
Joined: 2024-08-12, 10:27

Re: Loading this site ends to a freeze (Welt.de)

Unread post by florin » 2024-08-13, 06:29

Thank you for your efforts. Needless to say: I can load the site with another browser.

User avatar
adoxa
Fanatic
Fanatic
Posts: 243
Joined: 2019-03-16, 13:26
Location: Qld, Aus.
Contact:

Re: Loading this site ends to a freeze (Welt.de)

Unread post by adoxa » 2024-08-13, 06:44

It seems something's gone awry with float:left; here's a Modify HTTP Response filter to remove it.

Code: Select all

[["/welt\\.de$/",["/^/",["/display:inline-block;float:left/g","display:inline-block"]]]]
There's also something in the Javascript that causes it to lose the page (didn't investigate that), so turn Javascript off, too.

User avatar
florin
Newbie
Newbie
Posts: 4
Joined: 2024-08-12, 10:27

Re: Loading this site ends to a freeze (Welt.de)

Unread post by florin » 2024-08-13, 08:41

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.

User avatar
adoxa
Fanatic
Fanatic
Posts: 243
Joined: 2019-03-16, 13:26
Location: Qld, Aus.
Contact:

Re: Loading this site ends to a freeze (Welt.de)

Unread post by adoxa » 2024-08-13, 09:22

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).

User avatar
florin
Newbie
Newbie
Posts: 4
Joined: 2024-08-12, 10:27

Re: Loading this site ends to a freeze (Welt.de)

Unread post by florin » 2024-09-02, 06:50

@adoxa thanks for your support, now I got it and it works well :-)

User avatar
CHris Hitarori
Moongazer
Moongazer
Posts: 14
Joined: 2024-01-31, 14:02

Re: Loading this site ends to a freeze (Welt.de)

Unread post by CHris Hitarori » 2024-09-06, 09:40

It's still freezing with the Modify HTTP Response filter given above.

If I modify the filter to

Code: Select all

["/welt\\.de$/",["/^/",["/display:inline-block;float:*/g","display:inline-block"]]]
…it works. Maybe there are other floats (right/left/wherever) that need to be covered, too?

Post Reply