LibWeb/CSS: Parse the paint-order property

This commit is contained in:
Tim Ledbetter 2025-08-24 15:00:53 +01:00 committed by Sam Atkins
commit a87a9156d5
Notes: github-actions[bot] 2025-08-28 09:32:32 +00:00
25 changed files with 376 additions and 17 deletions

View file

@ -854,6 +854,7 @@ void NodeWithStyle::apply_style(CSS::ComputedProperties const& computed_style)
else if (stroke_width.is_percentage())
computed_values.set_stroke_width(CSS::LengthPercentage { stroke_width.as_percentage().percentage() });
computed_values.set_shape_rendering(computed_style.shape_rendering());
computed_values.set_paint_order(computed_style.paint_order());
auto const& mask_image = computed_style.property(CSS::PropertyID::MaskImage);
if (mask_image.is_url()) {