We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While working on #300 I encountered what is likely to be a bug.
Minimal reproducible example:
<html> <head> <style> body {color: yellow;} body {color: blue;} </style> </head> <body> <p>text</p> </body> </html>
elinks test.html
The text should show up in blue out of all other browsers I've tested, but it shows up in yellow instead.
I haven't digged into how this happens or whether it can be fixed, but I saw this comment in css_parse_ruleset:
css_parse_ruleset
elinks/src/document/css/parser.c
Lines 591 to 601 in e136d66
It gives me reason to believe that repeated rules should already be overriding previous rules... but it isn't.
The text was updated successfully, but these errors were encountered:
When libcss is enabled it is blue.
Sorry, something went wrong.
[css] Add to the end of list. Refs #301
d86ce27
It needs more testing.
Please check this ^ commit.
No branches or pull requests
While working on #300 I encountered what is likely to be a bug.
Minimal reproducible example:
The text should show up in blue out of all other browsers I've tested, but it shows up in yellow instead.
I haven't digged into how this happens or whether it can be fixed, but I saw this comment in
css_parse_ruleset
:elinks/src/document/css/parser.c
Lines 591 to 601 in e136d66
It gives me reason to believe that repeated rules should already be overriding previous rules... but it isn't.
The text was updated successfully, but these errors were encountered: