mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Implement HTMLTableRowElement insertCell and deleteCell
This commit is contained in:
parent
e31ad01103
commit
1f58169263
8 changed files with 108 additions and 106 deletions
|
@ -8,8 +8,10 @@ interface HTMLTableRowElement : HTMLElement {
|
|||
//readonly attribute long rowIndex;
|
||||
//readonly attribute long sectionRowIndex;
|
||||
readonly attribute HTMLCollection cells;
|
||||
//HTMLElement insertCell(optional long index = -1);
|
||||
//void deleteCell(long index);
|
||||
[Throws]
|
||||
HTMLElement insertCell(optional long index = -1);
|
||||
[Throws]
|
||||
void deleteCell(long index);
|
||||
|
||||
// also has obsolete members
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue