diff options
author | Corey Farwell <coreyf@rwell.org> | 2016-04-12 22:49:32 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2016-04-12 23:17:20 -0400 |
commit | 0ee95218481bc7105ac03237199b7584c1678356 (patch) | |
tree | b908afed7c9b6049994d1501ba99b7377ada0b69 /components/script/dom/webidls/HTMLTableRowElement.webidl | |
parent | 9fb5703c6dff0680aca32c50599f1782662d093c (diff) | |
download | servo-0ee95218481bc7105ac03237199b7584c1678356.tar.gz servo-0ee95218481bc7105ac03237199b7584c1678356.zip |
Implement `sectionRowIndex` property on `<tr>`.
Fixes https://github.com/servo/servo/issues/10509.
Diffstat (limited to 'components/script/dom/webidls/HTMLTableRowElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableRowElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTableRowElement.webidl b/components/script/dom/webidls/HTMLTableRowElement.webidl index 05d339aba3f..fe6c93e6be5 100644 --- a/components/script/dom/webidls/HTMLTableRowElement.webidl +++ b/components/script/dom/webidls/HTMLTableRowElement.webidl @@ -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); |