LibWeb: Remove reference counting for CSS::StyleProperties

`AK::CopyOnWrite` already does reference counting, so there is no need
to do it again.
This commit is contained in:
Jonne Ransijn 2024-10-26 17:42:27 +02:00 committed by Andreas Kling
commit 07cd7d479f
Notes: github-actions[bot] 2024-10-27 12:27:19 +00:00
125 changed files with 207 additions and 216 deletions

View file

@ -48,14 +48,14 @@ void SVGStopElement::apply_presentational_hints(CSS::StyleProperties& style) con
Gfx::Color SVGStopElement::stop_color() const
{
if (auto css_values = computed_css_values())
if (auto css_values = computed_css_values(); css_values.has_value())
return css_values->stop_color();
return Color::Black;
}
float SVGStopElement::stop_opacity() const
{
if (auto css_values = computed_css_values())
if (auto css_values = computed_css_values(); css_values.has_value())
return css_values->stop_opacity();
return 1;
}