/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::HTML { class HTMLTableRowElement final : public HTMLElement { WEB_PLATFORM_OBJECT(HTMLTableRowElement, HTMLElement); public: virtual ~HTMLTableRowElement() override; JS::NonnullGCPtr cells() const; int row_index() const; int section_row_index() const; private: HTMLTableRowElement(DOM::Document&, DOM::QualifiedName); }; }