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

This commit is contained in:
Andreas Kling 2022-11-24 19:15:33 +01:00
commit 2157745093
Notes: sideshowbarker 2024-07-17 04:08:02 +09:00
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);