LibWeb: Unbreak SVGFilterElement compilation

This was caused by an undetected merge conflict.
This commit is contained in:
Jelle Raaijmakers 2025-08-06 15:23:28 +02:00 committed by Jelle Raaijmakers
commit cd1cf75f7b
Notes: github-actions[bot] 2025-08-06 13:49:23 +00:00

View file

@ -117,8 +117,7 @@ Optional<Gfx::Filter> SVGFilterElement::gfx_filter()
} else if (auto* blend_primitive = as_if<SVGFEBlendElement>(node)) {
auto foreground = resolve_input_filter(blend_primitive->in1()->base_val());
auto background = resolve_input_filter(blend_primitive->in2()->base_val());
auto blend_mode = blend_primitive.mode();
auto blend_mode = blend_primitive->mode();
root_filter = Gfx::Filter::blend(background, foreground, blend_mode);
update_result_map(*blend_primitive);