mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
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
This commit is contained in:
parent
d2e3e98b6b
commit
37685b0181
Notes:
sideshowbarker
2024-07-18 18:25:19 +09:00
Author: https://github.com/ant1441
Commit: 37685b0181
Pull-request: https://github.com/SerenityOS/serenity/pull/6823
Reviewed-by: https://github.com/awesomekling
3 changed files with 38 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue