Add DeleteRow method

This commit is contained in:
Guillaume Gomez 2016-07-25 23:10:15 +02:00
parent 2de3b119a9
commit cf9fd7eb46
8 changed files with 106 additions and 37 deletions

View file

@ -19,7 +19,7 @@ interface HTMLTableElement : HTMLElement {
HTMLTableSectionElement createTBody();
readonly attribute HTMLCollection rows;
[Throws] HTMLTableRowElement insertRow(optional long index = -1);
//void deleteRow(long index);
[Throws] void deleteRow(long index);
// also has obsolete members
};