TableWrapper.cpp 609 B

12345678910111213141516171819202122232425
  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. JS_DEFINE_ALLOCATOR(TableWrapper);
  9. TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, CSS::StyleProperties style)
  10. : BlockContainer(document, node, move(style))
  11. {
  12. }
  13. TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullOwnPtr<CSS::ComputedValues> computed_values)
  14. : BlockContainer(document, node, move(computed_values))
  15. {
  16. }
  17. TableWrapper::~TableWrapper() = default;
  18. }