mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 08:39:22 +00:00
LibWeb: Implement HTMLTableRowElement.insertCell
This commit is contained in:
parent
f984c70b20
commit
6c9b3fb62e
Notes:
sideshowbarker
2024-07-17 04:42:00 +09:00
Author: https://github.com/Lubrsi
Commit: 6c9b3fb62e
Pull-request: https://github.com/SerenityOS/serenity/pull/15964
Reviewed-by: https://github.com/awesomekling
2 changed files with 29 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
#import <DOM/HTMLCollection.idl>
|
||||
#import <HTML/HTMLElement.idl>
|
||||
#import <HTML/HTMLTableCellElement.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/tables.html#htmltablerowelement
|
||||
[Exposed=Window]
|
||||
|
@ -16,5 +17,5 @@ interface HTMLTableRowElement : HTMLElement {
|
|||
readonly attribute long sectionRowIndex;
|
||||
|
||||
[SameObject] readonly attribute HTMLCollection cells;
|
||||
|
||||
HTMLTableCellElement insertCell(optional long index = -1);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue