Line | Count | Source |
1 | /* | |
2 | * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org> | |
3 | * | |
4 | * SPDX-License-Identifier: BSD-2-Clause | |
5 | */ | |
6 | ||
7 | #include <LibWeb/Layout/SVGBox.h> | |
8 | ||
9 | namespace Web::Layout { | |
10 | ||
11 | SVGBox::SVGBox(DOM::Document& document, SVG::SVGElement& element, NonnullRefPtr<CSS::StyleProperties> style) | |
12 | 0 | : Box(document, &element, move(style)) |
13 | 0 | { |
14 | 0 | } |
15 | ||
16 | } |