diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-03-12 23:50:35 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-12 23:49:50 +0100 |
commit | 009588eb28a0ed86c2cc5140c36797cd789c059f (patch) | |
tree | 2f9b46533513b02bf9147957a11d82b7e7fdd1c1 /Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl | |
parent | 57090f75ae45c8980583b3eef420228e318d3d90 (diff) | |
download | serenity-009588eb28a0ed86c2cc5140c36797cd789c059f.zip |
LibWeb: Implement HTMLTableSectionElement::insertRow()
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl index 8c7325a338..2f74fa52b4 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLTableSectionElement.idl @@ -1,5 +1,6 @@ #import <DOM/HTMLCollection.idl> #import <HTML/HTMLElement.idl> +#import <HTML/HTMLTableRowElement.idl> interface HTMLTableSectionElement : HTMLElement { @@ -9,5 +10,6 @@ interface HTMLTableSectionElement : HTMLElement { [Reflect=valign] attribute DOMString vAlign; [SameObject] readonly attribute HTMLCollection rows; + HTMLTableRowElement insertRow(optional long index = -1); }; |