1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-29 12:32:07 +00:00

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

@ -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;
};