LibWeb: Store fill-opacity in computed form in ComputedProperties

This commit is contained in:
Callum Law 2025-09-08 00:10:21 +12:00 committed by Tim Ledbetter
commit 9434b08bed
Notes: github-actions[bot] 2025-09-08 10:07:03 +00:00
3 changed files with 2 additions and 6 deletions

View file

@ -813,10 +813,6 @@ RefPtr<StyleValue const> CSSStyleProperties::style_value_for_computed_property(L
return get_computed_value(property_id);
}
case PropertyID::FillOpacity: {
auto opacity = layout_node.computed_values().fill_opacity();
return NumberStyleValue::create(opacity);
}
case PropertyID::StopOpacity: {
auto opacity = layout_node.computed_values().stop_opacity();
return NumberStyleValue::create(opacity);