summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl
diff options
context:
space:
mode:
authorAdam Hodgen <ant1441@gmail.com>2021-05-02 18:17:08 +0100
committerAndreas Kling <kling@serenityos.org>2021-05-09 18:38:34 +0200
commit37685b0181d2bcc6ce461b30d409b0bf1fb11c3f (patch)
tree18f0c0cdac33ab256ad2af84b701f45361c6fefc /Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl
parentd2e3e98b6b64a3af23e886c51dd0c317fe70e701 (diff)
downloadserenity-37685b0181d2bcc6ce461b30d409b0bf1fb11c3f.zip
LibWeb: Implement HTMLTableElement tbody attributes
* tBodies - returns a HTMLCollection of all tbody elements * createTBody - If necessary, creates a new tbody element and add it to the table after the last tbody element
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl
index eb5084eed8..b0813555f4 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl
+++ b/Userland/Libraries/LibWeb/HTML/HTMLTableElement.idl
@@ -12,6 +12,9 @@ interface HTMLTableElement : HTMLElement {
HTMLTableSectionElement createTFoot();
undefined deleteTFoot();
+ readonly attribute HTMLCollection tBodies;
+ HTMLTableSectionElement createTBody();
+
readonly attribute HTMLCollection rows;
HTMLTableRowElement insertRow(optional long index = -1);
undefined deleteRow(long index);