TableBox.cpp 603 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/DOM/Element.h>
  7. #include <LibWeb/Layout/TableBox.h>
  8. namespace Web::Layout {
  9. TableBox::TableBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
  10. : Layout::BlockContainer(document, element, move(style))
  11. {
  12. }
  13. TableBox::TableBox(DOM::Document& document, DOM::Element* element, CSS::ComputedValues computed_values)
  14. : Layout::BlockContainer(document, element, move(computed_values))
  15. {
  16. }
  17. TableBox::~TableBox() = default;
  18. }