diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl index c6ef9dcc78..02987f1427 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl @@ -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); |