diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-24 19:15:33 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-25 22:49:59 +0100 |
commit | 215774509324d4d83391fedcd08fed4792b97c31 (patch) | |
tree | 749652dfbe27720ba2abf9a33c1411a0716e1377 /Userland/Libraries/LibWeb/HTML | |
parent | 8540c4e574e269de667ed061908276895d8ebd8f (diff) | |
download | serenity-215774509324d4d83391fedcd08fed4792b97c31.zip |
LibWeb: Add missing [SameObject] extended attributes in IDL files
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML')
-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); |