TableRowBox.cpp 586 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/TableRowBox.h>
  8. namespace Web::Layout {
  9. TableRowBox::TableRowBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
  10. : Box(document, element, move(style))
  11. {
  12. }
  13. TableRowBox::TableRowBox(DOM::Document& document, DOM::Element* element, CSS::ComputedValues computed_values)
  14. : Box(document, element, move(computed_values))
  15. {
  16. }
  17. TableRowBox::~TableRowBox() = default;
  18. }