mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Implement deleteRow and insertRow for <table> element
Continued from #6936
This commit is contained in:
parent
02d8894945
commit
3d383f21ae
8 changed files with 81 additions and 77 deletions
|
@ -6,8 +6,10 @@
|
|||
// https://html.spec.whatwg.org/multipage/#htmltablesectionelement
|
||||
interface HTMLTableSectionElement : HTMLElement {
|
||||
readonly attribute HTMLCollection rows;
|
||||
//HTMLElement insertRow(optional long index = -1);
|
||||
//void deleteRow(long index);
|
||||
[Throws]
|
||||
HTMLElement insertRow(optional long index = -1);
|
||||
[Throws]
|
||||
void deleteRow(long index);
|
||||
|
||||
// also has obsolete members
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue