LibWeb: Remove spammy dbgln about unsupported SVG mask content units

This one was annoying because it was printed before each repaint on
pages where this FIXME is relevant.
This commit is contained in:
Aliaksandr Kalenik 2024-02-25 10:58:46 +01:00 committed by Andreas Kling
parent e3c75d7b6f
commit bc640b72b1
Notes: sideshowbarker 2024-07-17 01:06:10 +09:00

View file

@ -80,7 +80,7 @@ RefPtr<Gfx::Bitmap> SVGGraphicsPaintable::calculate_mask(PaintContext& context,
auto mask = graphics_element.mask(); auto mask = graphics_element.mask();
VERIFY(mask); VERIFY(mask);
if (mask->mask_content_units() != SVG::MaskContentUnits::UserSpaceOnUse) { if (mask->mask_content_units() != SVG::MaskContentUnits::UserSpaceOnUse) {
dbgln("SVG: maskContentUnits=objectBoundingBox is not supported"); // FIXME: Implement support for maskContentUnits=objectBoundingBox
return {}; return {};
} }
auto mask_rect = context.enclosing_device_rect(masking_area); auto mask_rect = context.enclosing_device_rect(masking_area);