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:
- Clear any current output
- Navigate or refresh the page in question
- Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
-
Harkonnen
- Moonbather
- Posts: 74
- Joined: 2014-11-04, 12:27
- Location: Kiev, Ukraine
Unread post
by Harkonnen » 2024-10-02, 14:00
Any specific product product pages on luxoptica.ua show blank page instead of listing, f.e
https://luxoptica.ua/ua/contact-lenses-and-solutions/es_obshch_lineyka-is-air-optix/apply/
They work in chrome and firefox
This is the only lines that appear in console
Code: Select all
Timestamp: 02/10/24 16:46:27
Warning: Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help http://xhr.spec.whatwg.org/
Source File: https://luxoptica.ua/bitrix/cache/js/s1/main_v2/template_b21ff560a99619ed88f13e08ad3c12d9/template_b21ff560a99619ed88f13e08ad3c12d9_v1.js?1726732374179070
Line: 6
Timestamp: 02/10/24 16:46:28
Warning: Content Security Policy: Couldn’t parse invalid host 'report-sample'
Timestamp: 02/10/24 16:46:28
Warning: Content Security Policy: Ignoring “'unsafe-inline'” within script-src: ‘strict-dynamic’ specified
Timestamp: 02/10/24 16:46:28
Warning: Content Security Policy: Ignoring “https:” within script-src: ‘strict-dynamic’ specified
Timestamp: 02/10/24 16:46:28
Warning: Content Security Policy: Ignoring “http:” within script-src: ‘strict-dynamic’ specified
-
vannilla
- Moon Magic practitioner
- Posts: 2290
- Joined: 2018-05-05, 13:29
Unread post
by vannilla » 2024-10-02, 15:08
It's a CSS issue involving an element declared as float: left.
Most definitely a Chrome quirk taken as "the right way" to do whatever they want to do.
-
Moonchild
- Pale Moon guru
- Posts: 36597
- Joined: 2011-08-28, 17:27
- Location: Motala, SE
-
Contact:
Unread post
by Moonchild » 2024-10-02, 15:39
Definitely a quirk. it's a weird combination of using flex AND percent-width AND float:left on a whole class, and using ::before and ::after and juggling display: modes (assuming to try and fix clear: spacing). i.e. it's a mess and it's a surprise it works at all.
{{This headspace for lease}}
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
adoxa
- Lunatic
- Posts: 270
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
-
Contact:
Unread post
by adoxa » 2024-10-03, 00:41
Here's a userstyle to fix it.
Code: Select all
@-moz-document domain("luxoptica.ua") {
.row {
display: inherit !important;
}
}