mirror of
https://github.com/RGBCube/serenity
synced 2025-07-06 14:17:36 +00:00
18 lines
406 B
C++
18 lines
406 B
C++
/*
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGfx/Painter.h>
|
|
#include <LibWeb/Layout/SVGBox.h>
|
|
#include <LibWeb/Painting/StackingContext.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
SVGBox::SVGBox(DOM::Document& document, SVG::SVGElement& element, NonnullRefPtr<CSS::StyleProperties> style)
|
|
: Box(document, &element, move(style))
|
|
{
|
|
}
|
|
|
|
}
|