mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb+LibGfx: Serialize HTML canvas fill/strokeStyle colors correctly
Before this change we were serializing them in a bogus 8-digit hex color format that isn't actually recognized by HTML. This code will need more work when we start supporting color spaces other than sRGB.
This commit is contained in:
parent
f4648f7551
commit
4590c081c2
Notes:
github-actions[bot]
2024-10-04 18:02:27 +00:00
Author: https://github.com/awesomekling
Commit: 4590c081c2
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1629
7 changed files with 58 additions and 9 deletions
|
@ -2847,6 +2847,7 @@ RefPtr<CSSStyleValue> Parser::parse_rgb_color_value(TokenStream<ComponentValue>&
|
|||
inner_tokens.skip_whitespace();
|
||||
|
||||
alpha = parse_number_percentage_value(inner_tokens);
|
||||
|
||||
inner_tokens.skip_whitespace();
|
||||
|
||||
if (inner_tokens.has_next_token())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue