mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 23:29:52 +00:00
LibWeb: Parse the shape-rendering
property
This commit is contained in:
parent
d94b33e205
commit
1d745884be
Notes:
github-actions[bot]
2025-08-19 08:48:57 +00:00
Author: https://github.com/tcl3
Commit: 1d745884be
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5899
Reviewed-by: https://github.com/AtkinsSJ ✅
20 changed files with 110 additions and 13 deletions
|
@ -1911,6 +1911,12 @@ ScrollbarWidth ComputedProperties::scrollbar_width() const
|
|||
return keyword_to_scrollbar_width(value.to_keyword()).release_value();
|
||||
}
|
||||
|
||||
ShapeRendering ComputedProperties::shape_rendering() const
|
||||
{
|
||||
auto const& value = property(PropertyID::ShapeRendering);
|
||||
return keyword_to_shape_rendering(value.to_keyword()).release_value();
|
||||
}
|
||||
|
||||
WillChange ComputedProperties::will_change() const
|
||||
{
|
||||
auto const& value = property(PropertyID::WillChange);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue