From bc640b72b1ce3c5c8344e0ff51b2e7cce8f65cc9 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Sun, 25 Feb 2024 10:58:46 +0100 Subject: [PATCH] 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. --- Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp b/Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp index 85b362e799..6e1598dc6d 100644 --- a/Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp +++ b/Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp @@ -80,7 +80,7 @@ RefPtr SVGGraphicsPaintable::calculate_mask(PaintContext& context, auto mask = graphics_element.mask(); VERIFY(mask); if (mask->mask_content_units() != SVG::MaskContentUnits::UserSpaceOnUse) { - dbgln("SVG: maskContentUnits=objectBoundingBox is not supported"); + // FIXME: Implement support for maskContentUnits=objectBoundingBox return {}; } auto mask_rect = context.enclosing_device_rect(masking_area);