Browse Source

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.
Aliaksandr Kalenik 1 year ago
parent
commit
bc640b72b1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp

+ 1 - 1
Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.cpp

@@ -80,7 +80,7 @@ RefPtr<Gfx::Bitmap> 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);