mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
Note that as of this commit, there aren't any such throwers, and the call site in Heap::allocate will drop exceptions on the floor. This commit only serves to change the declaration of the overrides, make sure they return an empty value, and to propagate OOM errors frm their base initialize invocations.
39 lines
1 KiB
C++
39 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/ARIARoles.h>
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class HTMLTableRowElement final : public HTMLElement {
|
|
WEB_PLATFORM_OBJECT(HTMLTableRowElement, HTMLElement);
|
|
|
|
public:
|
|
virtual ~HTMLTableRowElement() override;
|
|
|
|
JS::NonnullGCPtr<DOM::HTMLCollection> cells() const;
|
|
|
|
int row_index() const;
|
|
int section_row_index() const;
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<HTMLTableCellElement>> insert_cell(i32 index);
|
|
WebIDL::ExceptionOr<void> delete_cell(i32 index);
|
|
|
|
// https://www.w3.org/TR/html-aria/#el-tr
|
|
virtual Optional<DOM::ARIARoles::Role> default_role() const override { return DOM::ARIARoles::Role::row; }
|
|
|
|
private:
|
|
HTMLTableRowElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
JS::GCPtr<DOM::HTMLCollection> mutable m_cells;
|
|
};
|
|
|
|
}
|