/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::Layout { SVGFormattingContext::SVGFormattingContext(Box& box, FormattingContext* parent) : FormattingContext(box, parent) { } SVGFormattingContext::~SVGFormattingContext() { } void SVGFormattingContext::run(Box&, LayoutMode) { } }