2020-07-19 23:01:53 -07:00
|
|
|
/*
|
2021-04-22 16:53:07 -07:00
|
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
2020-07-19 23:01:53 -07:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-19 23:01:53 -07:00
|
|
|
*/
|
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/SVGBox.h>
|
2020-07-19 23:01:53 -07:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-07-19 23:01:53 -07:00
|
|
|
|
2024-12-20 16:35:12 +01:00
|
|
|
SVGBox::SVGBox(DOM::Document& document, SVG::SVGElement& element, GC::Ref<CSS::ComputedProperties> style)
|
2022-03-18 22:13:26 +01:00
|
|
|
: Box(document, &element, move(style))
|
2020-07-19 23:01:53 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|