1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:58:12 +00:00

LibWeb: Add missing [SameObject] extended attributes in IDL files

This commit is contained in:
Andreas Kling 2022-11-24 19:15:33 +01:00
parent 8540c4e574
commit 2157745093
2 changed files with 10 additions and 10 deletions

View file

@ -20,10 +20,10 @@ interface HTMLTableElement : HTMLElement {
HTMLTableSectionElement createTFoot();
undefined deleteTFoot();
readonly attribute HTMLCollection tBodies;
[SameObject] readonly attribute HTMLCollection tBodies;
HTMLTableSectionElement createTBody();
readonly attribute HTMLCollection rows;
[SameObject] readonly attribute HTMLCollection rows;
HTMLTableRowElement insertRow(optional long index = -1);
undefined deleteRow(long index);