Serenity Operating System
at master 23 lines 573 B view raw
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 9namespace Web::Layout { 10 11TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullRefPtr<CSS::StyleProperties> style) 12 : BlockContainer(document, node, move(style)) 13{ 14} 15 16TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, CSS::ComputedValues computed_values) 17 : BlockContainer(document, node, move(computed_values)) 18{ 19} 20 21TableWrapper::~TableWrapper() = default; 22 23}