/src/serenity/Userland/Libraries/LibWeb/Layout/TableWrapper.cpp
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> |
3 | | * |
4 | | * SPDX-License-Identifier: BSD-2-Clause |
5 | | */ |
6 | | |
7 | | #include <LibWeb/Layout/TableWrapper.h> |
8 | | |
9 | | namespace Web::Layout { |
10 | | |
11 | | JS_DEFINE_ALLOCATOR(TableWrapper); |
12 | | |
13 | | TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullRefPtr<CSS::StyleProperties> style) |
14 | 0 | : BlockContainer(document, node, move(style)) |
15 | 0 | { |
16 | 0 | } |
17 | | |
18 | | TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullOwnPtr<CSS::ComputedValues> computed_values) |
19 | 0 | : BlockContainer(document, node, move(computed_values)) |
20 | 0 | { |
21 | 0 | } |
22 | | |
23 | 0 | TableWrapper::~TableWrapper() = default; |
24 | | |
25 | | } |