1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 19:47:34 +00:00
serenity/Userland/Libraries/LibWeb/Layout/SVGBox.cpp

16 lines
333 B
C++

/*
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Layout/SVGBox.h>
namespace Web::Layout {
SVGBox::SVGBox(DOM::Document& document, SVG::SVGElement& element, NonnullRefPtr<CSS::StyleProperties> style)
: Box(document, &element, move(style))
{
}
}