Rendering
Moderator: Basilisk-Dev
Re: Rendering
Woah, is this site poorly written!
It breaks because the text is actually the alt-text of an img element without a source (the src attribute) and what's more each image is declared as display: inline-block , which breaks the alignment. It seems the actual image, whatever it is supposed to be, was meant to be given through CSS using content: url(...), but it doesn't work because the data: URI is broken.
You should get in touch with the people running this site and ask them to place the encoded SVG inside the src attribute, since they are already able to tell which cell gets which image as they provide the good and na classes.
It breaks because the text is actually the alt-text of an img element without a source (the src attribute) and what's more each image is declared as display: inline-block , which breaks the alignment. It seems the actual image, whatever it is supposed to be, was meant to be given through CSS using content: url(...), but it doesn't work because the data: URI is broken.
You should get in touch with the people running this site and ask them to place the encoded SVG inside the src attribute, since they are already able to tell which cell gets which image as they provide the good and na classes.
Re: Rendering
Maybe also ask them to add Pale Moon to the lineup while they're at it
{{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
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
Re: Rendering
Oh yes because doing actual work is so ridiculous.
{{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
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
Re: Rendering
Here's a Modify HTTP Response filter to replace the alt text with characters.
Code: Select all
[["privacytests.org",["/",["/alt=\"Passed\"/g","alt=\"✔\"","/alt=\"Failed\"/g","alt=\"❌\"","/alt=\"Unsupported\"/g","alt=\"-\""]]]]
- noellarkin
- Fanatic
- Posts: 118
- Joined: 2021-07-27, 04:20
Re: Rendering
@adoxa your HTTP replacements deserve to have their own repository, thanks a ton!