mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 05:08:56 +00:00
LibWeb: Implement HTMLTableElement tfoot attributes
* tFoot - Getter for the tfoot element The setter is not currently implemented * createTFoot - If necessary, creates a new tfoot element and add it to the table after any tbody elements * deleteTFoot - If a tfoot element exists in the table, delete it
This commit is contained in:
committed by
Andreas Kling
parent
b3f7ea9914
commit
d2e3e98b6b
@@ -8,6 +8,10 @@ interface HTMLTableElement : HTMLElement {
|
||||
HTMLTableSectionElement createTHead();
|
||||
undefined deleteTHead();
|
||||
|
||||
attribute HTMLTableSectionElement? tFoot;
|
||||
HTMLTableSectionElement createTFoot();
|
||||
undefined deleteTFoot();
|
||||
|
||||
readonly attribute HTMLCollection rows;
|
||||
HTMLTableRowElement insertRow(optional long index = -1);
|
||||
undefined deleteRow(long index);
|
||||
|
||||
Reference in New Issue
Block a user