1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:17:45 +00:00

LibWeb: Remove unused local in FormattingContext::layout_inside()

This commit is contained in:
Andreas Kling 2021-10-06 20:06:17 +02:00
parent c4826eae4f
commit fa45b905bf

View file

@ -76,8 +76,6 @@ bool FormattingContext::creates_block_formatting_context(const Box& box)
void FormattingContext::layout_inside(Box& child_box, LayoutMode layout_mode)
{
auto context_display = context_box().computed_values().display();
if (is<SVGSVGBox>(child_box)) {
SVGFormattingContext context(child_box, this);
context.run(child_box, layout_mode);