TableRowGroupBox.h 429 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/Layout/BlockContainer.h>
  8. namespace Web::Layout {
  9. class TableRowGroupBox final : public BlockContainer {
  10. public:
  11. TableRowGroupBox(DOM::Document&, DOM::Element*, NonnullRefPtr<CSS::StyleProperties>);
  12. virtual ~TableRowGroupBox() override;
  13. size_t column_count() const;
  14. };
  15. }