mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
LibWeb: Implement HTMLTableRowElement.insertCell
This commit is contained in:
committed by
Andreas Kling
parent
f984c70b20
commit
6c9b3fb62e
Notes:
sideshowbarker
2024-07-17 04:42:00 +09:00
Author: https://github.com/Lubrsi Commit: https://github.com/SerenityOS/serenity/commit/6c9b3fb62e Pull-request: https://github.com/SerenityOS/serenity/pull/15964 Reviewed-by: https://github.com/awesomekling
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user