HTMLTableRowElement.h 543 B

1234567891011121314151617181920212223242526
  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/HTML/HTMLElement.h>
  8. namespace Web::HTML {
  9. class HTMLTableRowElement final : public HTMLElement {
  10. public:
  11. using WrapperType = Bindings::HTMLTableRowElementWrapper;
  12. HTMLTableRowElement(DOM::Document&, DOM::QualifiedName);
  13. virtual ~HTMLTableRowElement() override;
  14. NonnullRefPtr<DOM::HTMLCollection> cells() const;
  15. int row_index() const;
  16. int section_row_index() const;
  17. };
  18. }