summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/SVGBox.cpp
blob: d5d63b084d8cfd4704dc91e46c1aa54d615ae673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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))
{
}

}