mirror of
https://github.com/servo/servo
synced 2026-04-27 18:07:52 +02:00
Implement deleteRow and insertRow for <table> element
Continued from #6936
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user