Implement sectionRowIndex property on <tr>.

Fixes https://github.com/servo/servo/issues/10509.
This commit is contained in:
Corey Farwell 2016-04-12 22:49:32 -04:00
parent 9fb5703c6d
commit 0ee9521848
5 changed files with 29 additions and 76 deletions

View file

@ -6,7 +6,7 @@
// https://html.spec.whatwg.org/multipage/#htmltablerowelement
interface HTMLTableRowElement : HTMLElement {
readonly attribute long rowIndex;
//readonly attribute long sectionRowIndex;
readonly attribute long sectionRowIndex;
readonly attribute HTMLCollection cells;
[Throws]
HTMLElement insertCell(optional long index = -1);