mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +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
|
@ -63,7 +63,7 @@ public:
|
|||
{
|
||||
return m_fill_or_stroke_style.visit(
|
||||
[&](Gfx::Color color) -> JsFillOrStrokeStyle {
|
||||
return color.to_string();
|
||||
return color.to_string(Gfx::Color::HTMLCompatibleSerialization::Yes);
|
||||
},
|
||||
[&](auto handle) -> JsFillOrStrokeStyle {
|
||||
return handle;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue