mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 22:52:10 +02:00
LibWeb: Implement HTMLTableCellElement.cellIndex
See: - http://wpt.live/html/semantics/tabular-data/attributes-common-to-td-and-th-elements/cellIndex.html (cherry picked from commit fa5800ebc52a51ad66ddbf5a97ffb9fbb5424b70)
This commit is contained in:
committed by
Nico Weber
parent
adebc2a214
commit
38dc317291
@@ -7,6 +7,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/HTML/HTMLElement.h>
|
||||
#include <LibWeb/WebIDL/Types.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
@@ -23,6 +24,8 @@ public:
|
||||
WebIDL::ExceptionOr<void> set_col_span(unsigned);
|
||||
WebIDL::ExceptionOr<void> set_row_span(unsigned);
|
||||
|
||||
WebIDL::Long cell_index() const;
|
||||
|
||||
virtual Optional<ARIA::Role> default_role() const override;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user