TableRowGroupBox.cpp 526 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 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/TableCellBox.h>
  8. #include <LibWeb/Layout/TableRowBox.h>
  9. #include <LibWeb/Layout/TableRowGroupBox.h>
  10. namespace Web::Layout {
  11. TableRowGroupBox::TableRowGroupBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
  12. : Layout::Box(document, element, move(style))
  13. {
  14. }
  15. TableRowGroupBox::~TableRowGroupBox() = default;
  16. }