LibWeb: Implement HTMLTableRowElement.{rowIndex,sectionRowIndex}

Another point on Acid3. :^)
This commit is contained in:
Andreas Kling
2022-03-21 16:15:10 +01:00
parent 1206dd2215
commit c8bdac8736
3 changed files with 59 additions and 0 deletions

View File

@@ -18,6 +18,9 @@ public:
virtual ~HTMLTableRowElement() override;
NonnullRefPtr<DOM::HTMLCollection> cells() const;
int row_index() const;
int section_row_index() const;
};
}