mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
LibWeb: Implement HTMLTableRowElement.insertCell
This commit is contained in:
parent
f984c70b20
commit
6c9b3fb62e
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