diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLTableSectionElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableSectionElement.webidl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/script/dom/webidls/HTMLTableSectionElement.webidl b/components/script/dom/webidls/HTMLTableSectionElement.webidl index 3389912edcd..483fe197229 100644 --- a/components/script/dom/webidls/HTMLTableSectionElement.webidl +++ b/components/script/dom/webidls/HTMLTableSectionElement.webidl @@ -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 }; |