mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:07:35 +00:00
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:
parent
e3c75d7b6f
commit
bc640b72b1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue