mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +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:
parent
b3f7ea9914
commit
d2e3e98b6b
3 changed files with 56 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue