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
Notes: sideshowbarker 2024-07-17 16:59:37 +09:00
3 changed files with 59 additions and 0 deletions

View File

@@ -10,6 +10,9 @@ interface HTMLTableRowElement : HTMLElement {
[LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
readonly attribute long rowIndex;
readonly attribute long sectionRowIndex;
[SameObject] readonly attribute HTMLCollection cells;
};