TableWrapper.cpp 573 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Layout/TableWrapper.h>
  7. namespace Web::Layout {
  8. TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullRefPtr<CSS::StyleProperties> style)
  9. : BlockContainer(document, node, move(style))
  10. {
  11. }
  12. TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, CSS::ComputedValues computed_values)
  13. : BlockContainer(document, node, move(computed_values))
  14. {
  15. }
  16. TableWrapper::~TableWrapper() = default;
  17. }